Paste #116564: Unnamed Server Log Paste

Date: 2023/10/17 08:23:37 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


[10:31:10] [ServerMain/ERROR]: [DirectoryProviderSource] Error loading plugin: Directory 'plugins/citizens-v1_20_R2-2.0.33-SNAPSHOT.jar' failed to load!
java.lang.RuntimeException: Directory 'plugins/citizens-v1_20_R2-2.0.33-SNAPSHOT.jar' failed to load!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:59) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.lambda$registerProviders$1(DirectoryProviderSource.java:34) ~[paper-1.20.1.jar:git-Paper-196]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) ~[?:?]
    at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1845) ~[?:?]
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:32) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:14) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:14) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:100) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.Main.main(Main.java:137) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.Main.main(Main.java:324) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins/citizens-v1_20_R2-2.0.33-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:54) ~[paper-1.20.1.jar:git-Paper-196]
    ... 20 more
[10:31:11] [ServerMain/ERROR]: [DirectoryProviderSource] Error loading plugin: Directory 'plugins/citizensapi-2.0.33-SNAPSHOT.jar' failed to load!
java.lang.RuntimeException: Directory 'plugins/citizensapi-2.0.33-SNAPSHOT.jar' failed to load!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:59) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.lambda$registerProviders$1(DirectoryProviderSource.java:34) ~[paper-1.20.1.jar:git-Paper-196]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) ~[?:?]
    at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1845) ~[?:?]
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:32) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:14) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:14) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:100) ~[paper-1.20.1.jar:git-Paper-196]
    at net.minecraft.server.Main.main(Main.java:137) ~[paper-1.20.1.jar:git-Paper-196]
    at org.bukkit.craftbukkit.Main.main(Main.java:324) ~[paper-1.20.1.jar:git-Paper-196]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins/citizensapi-2.0.33-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:54) ~[paper-1.20.1.jar:git-Paper-196]
    ... 20 more
[10:31:14] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[10:31:15] [ServerMain/INFO]: Loaded 7 recipes
[10:31:16] [Server thread/INFO]: Starting minecraft server version 1.20.1
[10:31:16] [Server thread/INFO]: Loading properties
[10:31:16] [Server thread/INFO]: This server is running Paper version git-Paper-196 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 773dd72)
[10:31:16] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:31:16] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:31:16] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[10:31:16] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 3 worker threads, and gen parallelism of 3 threads
[10:31:16] [Server thread/INFO]: Default game type: SURVIVAL
[10:31:16] [Server thread/INFO]: Generating keypair
[10:31:16] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:4204
[10:31:16] [Server thread/INFO]: Using default channel type
[10:31:16] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[10:31:16] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[10:31:17] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_20_R1
[10:31:18] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 269 ms to scan 1 urls, producing 1266 keys and 4001 values
[10:31:18] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_20_R1
[10:31:18] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:31:20] [Server thread/WARN]: Legacy plugin HeroAction v4.0 does not specify an api-version.
[10:31:20] [Server thread/INFO]: [FastLogin] Initialize logging service
[10:31:20] [Server thread/WARN]: Legacy plugin Animotion v1.0_i_patch3 does not specify an api-version.
[10:31:20] [Server thread/WARN]: Legacy plugin AWD v2.6.5 does not specify an api-version.
[10:31:20] [Server thread/INFO]: [AngelChest] Hooked into WorldGuard 7.0.9+5934e49
[10:31:20] [Server thread/WARN]: [AngelChest] Could not hook into Lands 6.37.2
[10:31:20] [Server thread/WARN]: Legacy plugin EasyWhitelist v1.0.2 does not specify an api-version.
[10:31:20] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[10:31:20] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.14.8/byte-buddy-1.14.8.jar
[10:31:20] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.102
[10:31:21] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[10:31:21] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.2-SNAPSHOT-582;470c75d
[10:31:22] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@631fafe9]
[10:31:22] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.4
[10:31:22] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.1-SNAPSHOT-669
[10:31:22] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[10:31:22] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[10:31:22] [Server thread/INFO]: [HolographicDisplays] Loading server plugin HolographicDisplays v3.0.0
[10:31:22] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.38
[10:31:22] [Server thread/INFO]: [Chatty] Loading server plugin Chatty v2.19.14
[10:31:22] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v14.2.13
[10:31:22] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.4.0-${CI_COMMIT_SHORT_SHA}
[10:31:22] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[10:31:23] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[10:31:23] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.4
[10:31:23] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[10:31:23] [Server thread/INFO]: [dynmap] Loading server plugin dynmap v3.7-beta-2-923
[10:31:23] [Server thread/INFO]: [dynmap] version=git-Paper-196 (MC: 1.20.1)
[10:31:23] [Server thread/INFO]: [dynmap] Mod Support API available
[10:31:23] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3229)
[10:31:23] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.5.0
[10:31:23] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.6.1
[10:31:23] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-1.6.1.jar'
[10:31:23] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_20_R1
[10:31:23] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[10:31:23] [Server thread/INFO]: [AureliumSkills] Loading server plugin AureliumSkills vBeta 1.3.23
[10:31:23] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.18
[10:31:23] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.27
[10:31:23] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR3.1.9
[10:31:23] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.7.7
[10:31:23] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.4
[10:31:23] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.9.4.jar'
[10:31:23] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[10:31:23] [Server thread/INFO]: [RealisticSeasons] Loading server plugin RealisticSeasons v10.6.0
[10:31:23] [Server thread/INFO]: [Lands] Loading server plugin Lands v6.37.2
[10:31:23] [Server thread/WARN]: [me.angeschossen.lands.UhzX.RLHXh] Invalid player flag (option: 'player.flags.default_2_list' in config.yml): attack_player
[10:31:23] [Server thread/INFO]: [Lands] Using SQLite.
[10:31:24] [Server thread/INFO]: [Lands] Setting up tables...
[10:31:24] [Server thread/INFO]: [Lands] Your SQL DBMS version: 3.42.0 (SQLite) Wiki: https://github.com/Angeschossen/Lands/wiki/Database
[10:31:24] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[10:31:24] [Server thread/INFO]: [Lands] Using default item currency for economy. You can edit the currency item for each locale in the corresponding GUI language files. Strict mode: false
[10:31:24] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[10:31:24] [Server thread/INFO]: [WorldGuardEvents] Loading server plugin WorldGuardEvents v1.18.1
[10:31:24] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[10:31:24] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.1-beta-r2
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.16.12.1
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Generate Functional Recipes
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[10:31:24] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[10:31:24] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.3
[10:31:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[10:31:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[10:31:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[10:31:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'LuckPerms' to create a bStats instance!
[10:31:24] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.3
[10:31:24] [Server thread/INFO]: [AuthMe] Loading server plugin AuthMe v5.6.0-SNAPSHOT-b2604
[10:31:24] [Server thread/INFO]: [Magic] Loading server plugin Magic v10.8.11-cb6aa41
[10:31:24] [Server thread/INFO]: [Magic] Loading modern compatibility layer for server version 1.20.1
[10:31:24] [Thread-11/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[10:31:24] [Thread-11/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.3' Newest Version: 2.12.0'
[10:31:24] [Thread-11/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[10:31:24] [Server thread/INFO]: [Magic] Async chunk loading API found
[10:31:24] [Server thread/INFO]: [Magic] Chat component API found
[10:31:24] [Server thread/INFO]: [Magic] Found WorldGuard 7+
[10:31:24] [Server thread/INFO]: [Magic] Pre-check for WorldGuard custom flag registration
[10:31:24] [Server thread/INFO]: [Magic] Registered custom WorldGuard flags: allowed-spells, always-allowed-spells, blocked-spells, always-allowed-spell-categories, allowed-spell-categories, blocked-spell-categories, allowed-wands, always-allowed-wands, blocked-wands, spell-overrides, destructible, reflective, tags, portal-spell, portal-warp
[10:31:24] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[10:31:24] [Server thread/INFO]: [JSEngine] Loading server plugin JSEngine v3.2.2
[10:31:24] [Server thread/INFO]: [StratosNG] Loading server plugin StratosNG v1.2.6
[10:31:24] [Server thread/INFO]: [DeadlyDisasters] Loading server plugin DeadlyDisasters v10.5
[10:31:24] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.18.0
[10:31:24] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (241 ms).
[10:31:24] [Server thread/INFO]: [Shopkeepers] Loading config.
[10:31:24] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[10:31:24] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[10:31:24] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[10:31:24] [Server thread/INFO]: [DivineDrop] Loading server plugin DivineDrop v2.13
[10:31:24] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.19.1.5
[10:31:24] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.3.0
[10:31:24] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.1.0
[10:31:24] [Server thread/INFO]: [AdvancedAntiVPN] Loading server plugin AdvancedAntiVPN v2.21.5
[10:31:24] [Server thread/INFO]: [TheSearch] Loading server plugin TheSearch v1.25.4
[10:31:24] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.41.1
[10:31:24] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[10:31:24] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.8.3
[10:31:24] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.12.1
[10:31:24] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.8.3
[10:31:24] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[10:31:24] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[10:31:24] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[10:31:24] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[10:31:24] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[10:31:24] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[10:31:24] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[10:31:24] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[10:31:24] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[10:31:24] [Server thread/INFO]: [SimplePortals] Loading server plugin SimplePortals v1.7.4
[10:31:24] [Server thread/INFO]: [SlimeInABukkit] Loading server plugin SlimeInABukkit v1.3.1
[10:31:24] [Server thread/INFO]: [HeroAction] Loading server plugin HeroAction v4.0
[10:31:24] [Server thread/INFO]: [QuickShop] Loading server plugin QuickShop v5.1.2.5
[10:31:24] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Booting up
[10:31:25] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[10:31:25] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[10:31:25] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[10:31:25] [Server thread/INFO]: [QuickShop] Reading the configuration...
[10:31:25] [Server thread/INFO]: [QuickShop] Loading messages translation over-the-air (this may need take a while).
[10:31:25] [Server thread/INFO]: [QuickShop] Translation over-the-air platform selected: Crowdin
[10:31:25] [Server thread/INFO]: [QuickShop] Checking for translation updates, this may need a while...
[10:31:26] [Server thread/INFO]: [QuickShop] Loading up integration modules.
[10:31:26] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Complete
[10:31:26] [Server thread/INFO]: [PlayerKits2] Loading server plugin PlayerKits2 v1.7.1
[10:31:26] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[10:31:26] [Server thread/INFO]: [eGlow] Loading server plugin eGlow v3.2.6
[10:31:26] [Server thread/INFO]: [FastLogin] Loading server plugin FastLogin v1.12-SNAPSHOT-e15ea9c
[10:31:26] [Server thread/INFO]: [Animotion] Loading server plugin Animotion v1.0_i_patch3
[10:31:26] [Server thread/INFO]: [ComplexTurrets] Loading server plugin ComplexTurrets v3.9.1
[10:31:26] [Server thread/INFO]: [BungeeGuard] Loading server plugin BungeeGuard v1.3-SNAPSHOT
[10:31:26] [Server thread/INFO]: [Quests] Loading server plugin Quests v4.8.3-b423
[10:31:26] [Server thread/INFO]: [TigerReports] Loading server plugin TigerReports v5.2.2
[10:31:26] [Server thread/INFO]: [AWD] Loading server plugin AWD v2.6.5
[10:31:26] [Server thread/INFO]: [EpicCraftingsPlus] Loading server plugin EpicCraftingsPlus v7.23.2
[10:31:26] [Server thread/INFO]: [BetterRevive] Loading server plugin BetterRevive v0.9.1-BETA
[10:31:26] [Server thread/INFO]: [BetterRevive] Inventory title with support for more than 32 characters. Skipping..
[10:31:26] [Server thread/INFO]: [BetterRevive] Hex colors are available! Ready for RGB..
[10:31:26] [Server thread/INFO]: [BetterRevive] Old constructor for HoverEvent found! Using it..
[10:31:26] [Server thread/INFO]: [BetterRevive] New sendTitle method found! Using it..
[10:31:26] [Server thread/INFO]: [BetterRevive] New setUnbreakable method found! Using it..
[10:31:26] [Server thread/INFO]: [BetterRevive] New isUnbreakable method found! Using it..
[10:31:26] [Server thread/INFO]: [BetterRevive] WorldGuard found! Registering custom flag(s)..
[10:31:26] [Server thread/INFO]: [BetterRevive] WorldGuard v7.x or newer detected. Using new methods..
[10:31:26] [Server thread/INFO]: [BetterRevive] [WorldGuard] Successfully registered 'betterrevive-can-bleed' flag!
[10:31:26] [Server thread/INFO]: [SternalBoard] Loading server plugin SternalBoard v2.2.5
[10:31:26] [Server thread/INFO]: [BetterFood] Loading server plugin BetterFood v1.3.1
[10:31:26] [Server thread/INFO]: [DoorsReloaded] Loading server plugin DoorsReloaded v1.3.1
[10:31:26] [Server thread/INFO]: [Interactions] Loading server plugin Interactions v1.35.3
[10:31:26] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[10:31:26] [Server thread/INFO]: [ChestCommands] Loading server plugin ChestCommands v4.0.3
[10:31:26] [Server thread/INFO]: [CombatPlus] Loading server plugin CombatPlus v1.6.8
[10:31:26] [Server thread/INFO]: [NeoPerformance] Loading server plugin NeoPerformance v1.14.4
[10:31:26] [Server thread/INFO]: [AngelChest] Loading server plugin AngelChest v9.15.2
[10:31:26] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
[10:31:26] [Server thread/INFO]: [EasyWhitelist] Loading server plugin EasyWhitelist v1.0.2
[10:31:26] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart vBuild 54a
[10:31:26] [Server thread/INFO]: [AlonsoLevels] Loading server plugin AlonsoLevels v2.3.1-BETA
[10:31:26] [Server thread/INFO]: [MoneyFromMobs] Loading server plugin MoneyFromMobs v4.71
[10:31:26] [Server thread/INFO]: [TerraformGenerator] Loading server plugin TerraformGenerator v11.1.1
[10:31:26] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.48
[10:31:26] [Server thread/INFO]: [EasyCommandBlocker] Loading server plugin EasyCommandBlocker v1.8.1
[10:31:26] [Server thread/INFO]: [BugReport] Loading server plugin BugReport v0.6.2
[10:31:26] [Server thread/INFO]: [BetterInvisibility] Loading server plugin BetterInvisibility v3.1
[10:31:26] [Server thread/INFO]: [Stratos] Loading server plugin Stratos v1.15.10
[10:31:26] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.0.3
[10:31:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[10:31:26] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[10:31:26] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[10:31:26] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[10:31:26] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:31:26] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[10:31:26] [Server thread/INFO]:         __    
[10:31:26] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[10:31:26] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[10:31:26] [Server thread/INFO]: 
[10:31:26] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:31:27] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[10:31:27] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[10:31:27] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[10:31:28] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[10:31:29] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:31:29] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:31:31] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4853ms)
[10:31:31] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[10:31:31] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[10:31:31] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:31:31] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[10:31:31] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:31:31] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.2-SNAPSHOT-582;470c75d
[10:31:31] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[10:31:31] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[10:31:31] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:31:31] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:31:31] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[10:31:31] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.1-SNAPSHOT-669
[10:31:31] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.27
[10:31:31] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.12.1
[10:31:31] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.20.1
[10:31:31] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.12.1
[10:31:31] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[10:31:31] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[10:31:31] [Server thread/INFO]: [WolfyUtilities]  - MythicMobs
[10:31:31] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[10:31:31] [Server thread/INFO]: [WolfyUtilities]  - Magic
[10:31:31] [Server thread/INFO]: [WolfyUtilities]  - ItemsAdder
[10:31:31] [Server thread/INFO]: [WolfyUtilities]  - MMOItems
[10:31:31] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[10:31:31] [Server thread/INFO]: [WolfyUtilities] Register API references
[10:31:31] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[10:31:32] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[10:31:32] [Server thread/INFO]: [Magic] Enabling Magic v10.8.11-cb6aa41
[10:31:32] [Server thread/INFO]: [Magic] EffectLib initialized
[10:31:32] [Server thread/INFO]: [Magic] Loaded 0 attributes
[10:31:32] [Server thread/INFO]: [Magic] Wand crafting is enabled
[10:31:32] [Server thread/INFO]: [Magic] Skin-based spell icons disabled
[10:31:32] [Server thread/INFO]: [Magic] Registered attributes: [target_fall_distance, regeneration, respiration, projectile_protection, bowpower, degrees, seconds, channeling, target_pitch, humidity, pitch, sharpness, darkness, jump, health_max, efficiency, target_luck, target_light, blindness, absorption, target_armor, loyalty, slow_digging, silk_touch, fire_resistance, unluck, invisibility, target_health_max, moon, air_max, slow, light, mana_max, sweeping, bowpull, damage, weeks, swift_sneak, mending, epoch, protection, air, fast_digging, lure, punch, temperature, frost_walker, movement_speed_bps, power, riptide, health_boost, levitation, increase_damage, poison, health, target_temperature, binding_curse, yaw, mana, glowing, target_health, target_humidity, days, infinity, impaling, bad_omen, luck, thorns, hero_of_the_village, target_hunger, smite, location_x, unbreaking, location_y, target_mana, feather_falling, attack_damage, knockback, fire_aspect, luck_of_the_sea, knockback_resistance, saturation, conduit_power, location_z, target_air, bane_of_arthropods, soul_speed, night_vision, level, minutes, water_breathing, fall_distance, quick_charge, aqua_affinity, multishot, hunger, slow_falling, difficulty, armor, fulltime, blast_protection, glow, confusion, damage_dealt, harm, piercing, fire_protection, target_yaw, dolphins_grace, speed, damage_resistance, weakness, heal, target_mana_max, hours, fortune, looting, target_air_max, movement_speed, play_time, depth_strider, xp, target_location_x, pi, target_location_y, vanishing_curse, target_knockback_resistance, target_location_z, time, flame, wither]
[10:31:32] [Server thread/INFO]: [Magic] Loaded 182 icons
[10:31:32] [Server thread/INFO]: [Magic] Loaded 12 effect lists
[10:31:33] [Server thread/INFO]: [Magic] Loaded 1402 items
[10:31:33] [Server thread/INFO]: [Magic] Loaded 199 wands
[10:31:33] [Server thread/INFO]: [Magic] Loaded 2 kits
[10:31:33] [Server thread/INFO]: [Magic] Loaded 10 classes
[10:31:33] [Server thread/INFO]: [Magic] Loaded 5 classes
[10:31:33] [Server thread/INFO]: [Magic] Loaded 75 mob templates
[10:31:33] [Server thread/INFO]: [Magic] Loaded 8 automata templates
[10:31:33] [Server thread/INFO]: [Magic] Loaded 0 customized worlds
[10:31:33] [Server thread/INFO]: [Magic] Activated BStats
[10:31:33] [Server thread/INFO]: [Magic] MobArena not found
[10:31:33] [Server thread/INFO]: [Magic] LibsDisguises found, mob disguises and disguise_restricted features enabled
[10:31:33] [Server thread/INFO]: [Magic] ModelEngine integration disabled
[10:31:33] [Server thread/INFO]: [Magic] Found MythicMobs v5.4.0-${CI_COMMIT_SHORT_SHA} (5) will use modern integration layer
[10:31:33] [Server thread/INFO]: [Magic] MythicMobs integration enabled, mobs can be spawned in arenas, spells, actions, etc.
[10:31:33] [Server thread/INFO]: Resource pack in config.yml has been disabled, Magic skipping RP check
[10:31:33] [Server thread/INFO]: [JSEngine] Enabling JSEngine v3.2.2
[10:31:33] [Server thread/INFO]: [JSEngine] JSEngine version 3.2.2 is Enabled
[10:31:33] [Server thread/INFO]: [StratosNG] Enabling StratosNG v1.2.6
[10:31:33] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[10:31:33] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[10:31:33] [Server thread/INFO]: [TerraformGenerator] Enabling TerraformGenerator v11.1.1
[10:31:33] [Server thread/INFO]: [TerraformGenerator] Custom Logger Initialized
[10:31:33] [Server thread/INFO]: [TerraformGenerator] bStats Metrics enabled.
[10:31:33] [Server thread/INFO]: [TerraformGenerator] Detected version: v1_20_R1, number: 20.1
[10:31:33] [Server thread/INFO]: [Stratos] Enabling Stratos v1.15.10
[10:31:33] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[10:31:33] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[10:31:33] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[10:31:33] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[10:31:33] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[10:31:33] [Server thread/INFO]: Preparing level "rpg4"
[10:31:33] [Server thread/INFO]: [TerraformGenerator] Detected world: rpg4, commencing injection... 
[10:31:33] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[10:31:33] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:31:33] [Server thread/INFO]: Time elapsed: 251 ms
[10:31:33] [Server thread/INFO]: [TerraformGenerator] rpg4 loaded.
[10:31:33] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[10:31:33] [Server thread/INFO]: Time elapsed: 57 ms
[10:31:33] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[10:31:33] [Server thread/INFO]: Time elapsed: 27 ms
[10:31:33] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.4
[10:31:34] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:31:34] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[10:31:34] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4) TNT ignition is PERMITTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4) Lighters are PERMITTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4) Lava fire is PERMITTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4) Fire spread is UNRESTRICTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpg4'
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4_nether) TNT ignition is PERMITTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4_nether) Lighters are PERMITTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4_nether) Lava fire is PERMITTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4_nether) Fire spread is UNRESTRICTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpg4_nether'
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4_the_end) TNT ignition is PERMITTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4_the_end) Lighters are PERMITTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4_the_end) Lava fire is PERMITTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] (rpg4_the_end) Fire spread is UNRESTRICTED.
[10:31:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpg4_the_end'
[10:31:34] [Server thread/INFO]: [WorldGuard] Loading region data...
[10:31:34] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[10:31:34] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[10:31:34] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[10:31:34] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[10:31:34] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[10:31:34] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[10:31:34] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[10:31:34] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[10:31:34] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg6_nether
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: ilusion2
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg7_nether
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: ilusion3
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: ilusion6
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spaceX
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: ilusion
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg6_the_end
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: ilusion5
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg2_nether
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg1_nether
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: dragon
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: nave
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: caca
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: dimension263453x
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: em_adventurers_guild
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: agujero-negro-nave
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: em_adventurers_guild_the_end
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_nether
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: titan
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg2_the_end
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: NARUTO3
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: tierra-nave
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Human
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpgcopy
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: nether
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: test
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: cielo
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: em_sewer_maze
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Azkaban-Prison
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: dimension4
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: wither_arena
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: lol
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: prometeos
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: kaley10
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg-caca
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: test1
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: marte2
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg1_the_end
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world
[10:31:35] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:35] [Server thread/INFO]: Preparing start region for dimension minecraft:mazmora-b
[10:31:36] [Server thread/INFO]: Time elapsed: 1083 ms
[10:31:36] [Server thread/INFO]: [WorldGuard] (mazmora-B) TNT ignition is PERMITTED.
[10:31:36] [Server thread/INFO]: [WorldGuard] (mazmora-B) Lighters are PERMITTED.
[10:31:36] [Server thread/INFO]: [WorldGuard] (mazmora-B) Lava fire is PERMITTED.
[10:31:36] [Server thread/INFO]: [WorldGuard] (mazmora-B) Fire spread is UNRESTRICTED.
[10:31:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mazmora-B'
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Hogwarts-Castle
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: dimesionpower
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg6
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg8
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg7
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/INFO]: [TerraformGenerator] Detected world: rpg2, commencing injection... 
[10:31:36] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[10:31:36] [Server thread/INFO]: Preparing start region for dimension minecraft:rpg2
[10:31:36] [Server thread/INFO]: Time elapsed: 204 ms
[10:31:36] [Server thread/INFO]: [TerraformGenerator] rpg2 loaded.
[10:31:36] [Server thread/INFO]: [WorldGuard] (rpg2) TNT ignition is PERMITTED.
[10:31:36] [Server thread/INFO]: [WorldGuard] (rpg2) Lighters are PERMITTED.
[10:31:36] [Server thread/INFO]: [WorldGuard] (rpg2) Lava fire is PERMITTED.
[10:31:36] [Server thread/INFO]: [WorldGuard] (rpg2) Fire spread is UNRESTRICTED.
[10:31:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpg2'
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg1
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: em_adventurers_guild_nether
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg3
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: normal
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: marte
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: conciencia-power
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: d
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: NARUTO
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: h
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: agujero-negro
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: mundomar
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: backrooms
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: rpg-caca_nether
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_the_end
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Azkaban
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: casadiemsinal
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: humano
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: tp
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[10:31:36] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[10:31:36] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[10:31:36] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[10:31:36] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.0
[10:31:36] [Server thread/INFO]: [HolographicDisplays] Fatal error while enabling HolographicDisplays v3.0.0:

Holographic Displays only supports Spigot from 1.8 to 1.18.2.
The plugin has been disabled.

[10:31:36] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.38
[10:31:36] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.38-Free.jar
[10:31:36] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_20_R1 (v1_20_R1)
[10:31:36] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1253
[10:31:36] [Server thread/INFO]: [LibsDisguises] Build Date: 06/10/2023 01:50
[10:31:37] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[10:31:37] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise el-rey-ogro
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise zeus568
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise chasqueador
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise zeus568454
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise lobo
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise loboo
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise Death_Note
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise DeathNote
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise zeus
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise dementor
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaley
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise mago
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise diablo
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise h
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise humano
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise b
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise bebe
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise bebe1
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise enano
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise orco
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elfo
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaley2ojos
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaley1ojoizquierdo
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaley1ojoderecho
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaleyconelojooscuro
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaleyojos
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaleysinojos
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaleysequedosinojos
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaleysinojosnormales
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaleypa
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise dios
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise mt
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise sebasojo
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise repitl
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise desnuda
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaleydesnudo
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise robotmt1
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise mtrobot2
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise kaleymujer
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise mosturo-amatista
[10:31:42] [Server thread/INFO]: [LibsDisguises] Loaded 41 custom disguises
[10:31:42] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[10:31:42] [Server thread/INFO]: [Chatty] Enabling Chatty v2.19.14
[10:31:42] [Server thread/INFO]: [Chatty] Vault has successful hooked.
[10:31:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatty [2.19.14]
[10:31:42] [Server thread/INFO]: [Chatty] PlaceholderAPI has successful hooked.
[10:31:42] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.13
[10:31:42] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_20_R1, using MappingSpigotSkinRefresher.
[10:31:42] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[10:31:42] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[10:31:42] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[10:31:42] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[10:31:42] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[10:31:42] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[10:31:42] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.4.0-${CI_COMMIT_SHORT_SHA}
[10:31:42] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.1)...
[10:31:42] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[10:31:43] [Server thread/INFO]: [MythicMobs] Mythic HolographicDisplays Support has been enabled!
[10:31:43] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: MythicMobs
[10:31:43] [Server thread/INFO]: [Lands] Nag author(s) of plugin MythicMobs. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[10:31:43] [Server thread/INFO]: [MythicMobs] Mythic Lands Support has been enabled!
[10:31:43] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[10:31:43] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[10:31:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[10:31:43] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[10:31:43] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[10:31:43] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[10:31:43] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[10:31:43] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[10:31:43] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[10:31:44] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:31:44] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:31:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item monedaelite
[10:31:44] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Items/monedaelite.yml
[10:31:44] [Server thread/WARN]: [MythicMobs] --| Error Message: Couldn't get name/lore of ItemStack
[10:31:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item skinverde
[10:31:44] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Items/skinverde.yml
[10:31:44] [Server thread/WARN]: [MythicMobs] --| Error Message: Couldn't get name/lore of ItemStack
[10:31:44] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:31:44] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:31:45] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:31:45] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:31:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition inblock
[10:31:45] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[10:31:45] [Server thread/WARN]: [MythicMobs] --| Error Message: 'COBWEBE' is not a valid material.
[10:31:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: inblock{block=COBWEBE}
[10:31:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition inblock
[10:31:45] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[10:31:45] [Server thread/WARN]: [MythicMobs] --| Error Message: 'COBWEBE' is not a valid material.
[10:31:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: inblock{block=COBWEBE}
[10:31:45] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:31:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 113 mobs.
[10:31:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 19 vanilla mob overrides.
[10:31:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:31:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 486 skills.
[10:31:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:31:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 101 mythic items.
[10:31:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 drop tables.
[10:31:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 9 mob spawners.
[10:31:45] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[10:31:45] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[10:31:45] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.4.0 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
[10:31:45] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.4
[10:31:45] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[10:31:45] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[10:31:45] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[10:31:45] [Server thread/INFO]: [Essentials] No kits found to migrate.
[10:31:45] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[10:31:45] [Server thread/INFO]: [Essentials] Using locale es
[10:31:45] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[10:31:45] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[10:31:45] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[10:31:45] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[10:31:45] [Server thread/INFO]: [dynmap] Enabling dynmap v3.7-beta-2-923
[10:31:45] [Server thread/INFO]: [dynmap] Added 24 custom biome mappings
[10:31:45] [Server thread/INFO]: [dynmap] Using LuckPerms 5.4.102 for access control
[10:31:45] [Server thread/INFO]: [dynmap] Mod Support processing completed
[10:31:47] [Server thread/INFO]: [dynmap] Loaded 27 shaders.
[10:31:47] [Server thread/INFO]: [dynmap] Loaded 83 perspectives.
[10:31:47] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[10:31:47] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[10:31:47] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[10:31:47] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:40466
[10:31:47] [Server thread/INFO]: [dynmap] version 3.7-beta-2-923 is enabled - core version 3.7-beta-2-923
[10:31:47] [Server thread/INFO]: [dynmap] For support, visit our Discord at https://discord.gg/s3rd5qn
[10:31:47] [Server thread/INFO]: [dynmap] For news, visit https://reddit.com/r/Dynmap or follow https://universeodon.com/@dynmap
[10:31:47] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[10:31:47] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[10:31:47] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'rpg4'.
[10:31:47] [Server thread/INFO]: [dynmap] Loaded 119448 pending tile renders for world 'rpg4'
[10:31:47] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'rpg4_nether'.
[10:31:47] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'rpg4_the_end'.
[10:31:47] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'mazmora-B'.
[10:31:47] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'rpg2'.
[10:31:47] [Server thread/INFO]: [dynmap] Enabled
[10:31:47] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3229)
[10:31:47] [Server thread/INFO]: [Citizens] Loading external libraries
[10:31:48] [Server thread/ERROR]: [Citizens] v2.0.33-SNAPSHOT (build 3229) is not compatible with Minecraft vv1_20_R1 - try upgrading Minecraft or Citizens. Disabling...
[10:31:48] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3229)
[10:31:48] [Server thread/INFO]: [GSit] Enabling GSit v1.5.0
[10:31:48] [Server thread/INFO]: [GSit] El plugin ha sido habilitado con éxito.
[10:31:48] [Server thread/INFO]: [GSit] ¡Se ha enlazado con PlaceholderAPI exitosamente!
[10:31:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.5.0]
[10:31:48] [Server thread/INFO]: [GSit] ¡Se ha enlazado con WorldGuard exitosamente!
[10:31:48] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.6.1
[10:31:48] [Server thread/INFO]: [MythicLib] Hooked onto HolographicDisplays
[10:31:48] [Server thread/INFO]: [MythicLib] Hooked onto DecentHolograms
[10:31:48] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[10:31:48] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[10:31:48] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[10:31:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.6.1]
[10:31:48] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[10:31:48] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.23
[10:31:48] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[10:31:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [Beta 1.3.23]
[10:31:48] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[10:31:48] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[10:31:48] [Server thread/INFO]: [AureliumSkills] Loaded 194 config options in 6 ms
[10:31:48] [Server thread/INFO]: [AureliumSkills] Loaded 312 sources and 10 tags in 26ms
[10:31:48] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[10:31:48] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[10:31:48] [Server thread/INFO]: [AureliumSkills] Loading languages...
[10:31:50] [Server thread/INFO]: [AureliumSkills] Loaded 15 languages in 1996ms
[10:31:51] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[10:31:51] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 3ms
[10:31:51] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[10:31:51] [Server thread/INFO]: [AureliumSkills] Loaded 32 loot entries in 4 pools and 2 tables
[10:31:51] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[10:31:51] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[10:31:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[10:31:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[10:31:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AureliumSkills' to create a bStats instance!
[10:31:51] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.18
[10:31:51] [Server thread/INFO]: [SuperVanish] Hooked into PaperSpigot for server list ping support
[10:31:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.18]
[10:31:51] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[10:31:51] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[10:31:51] [Server thread/INFO]: [SuperVanish] Hooked into dynmap
[10:31:51] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.9
[10:31:51] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[10:31:51] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[10:31:51] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.7
[10:31:52] [Server thread/INFO]: [Vulcan] Server Version: 1.20.1 detected!
[10:31:52] [Server thread/INFO]: [Vulcan] LibsDisguises found. Enabling hook!
[10:31:52] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[10:31:52] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[10:31:52] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[10:31:52] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[10:31:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.7.7]
[10:31:52] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[10:31:52] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.4
[10:31:52] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[10:31:52] [Server thread/INFO]: [MMOItems] Hooked onto AureliumSkills
[10:31:52] [Server thread/INFO]: [MMOItems] Now using AureliumSkills as RPG core plugin
[10:31:52] [Server thread/INFO]: [MMOItems KATANA MASTER_KATANA] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[10:31:52] [Server thread/INFO]: [MMOItems THRUSTING_SWORD SKILLED_SWORD] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[10:31:52] [Server thread/INFO]: [MMOItems Item Templates] Loading template modifiers, please wait..
[10:31:52] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[10:31:52] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[10:31:52] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[10:31:52] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword-upgrade' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'two-handed-steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=SWORD,id=STEEL_SWORD,amount=1,display="Steel Sword"}': Could not find a template with ID 'STEEL_SWORD'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'katana' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-helmet' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=9,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=8,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=5,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-ingot' from crafting station 'steel-crafting-station': Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-dagger' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hardened-steel-claymore' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=15,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'stiff-greatstaff' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-pickaxe' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-shovel' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=2,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'soulstealer' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MISCELLANEOUS,id=HUMAN_SOUL,amount=8,display="Human Soul"}': Could not find a template with ID 'HUMAN_SOUL'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL FIRE_ESSENCE: No such MMOItem for Type MATERIAL. 
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-totem' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=8,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'blaze-soul' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=5,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hell-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=2,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-greatlance' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=4,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'molten-blade' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=13,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'wither-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL WITHER_ESSENCE: No such MMOItem for Type MATERIAL. 
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'marking-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'cursed-wither-skull' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'dead-pharaoh-helmet' from crafting station 'mythical-forge': Invalid MMOItem ARMOR DEAD_PHARAOH_HELMET: No such MMOItem for Type ARMOR. 
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'mossy-skeleton-skull' from crafting station 'mythical-forge': Invalid MMOItem ARMOR MOSSY_SKELETON_SKULL: No such MMOItem for Type ARMOR. 
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'magic-essence' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=3,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'arcane-helmet' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=6,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=9,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=8,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[10:31:52] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=5,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[10:31:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.9.4]
[10:31:52] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[10:31:52] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[10:31:52] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'WIND_WHIP' with stat 'TIER': Could not find item tier with ID 'RARE'
[10:31:52] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'SCROLL_OF_IDENTIFICATION' with stat 'TIER': Could not find item tier with ID 'UNCOMMON'
[10:31:52] [Server thread/INFO]: [RealisticSeasons] Enabling RealisticSeasons v10.6.0
[10:31:52] [Server thread/INFO]: [Lands] Enabling Lands v6.37.2
[10:31:52] [Server thread/WARN]: [Lands] [roles.yml] missing: tenant -> The tenant role 'tenant' is not configured, but is needed. Please configure a role named 'tenant' in your roles.yml config. Default roles.yml: https://github.com/Angeschossen/Lands/blob/master/roles.yml
[10:31:52] [Server thread/INFO]: [Lands]  _                        _      
[10:31:52] [Server thread/INFO]: [Lands] | |                      | |     
[10:31:52] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[10:31:52] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[10:31:52] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[10:31:52] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[10:31:52] [Server thread/INFO]: [Lands] Version: 6.37.2 Previous: 6.37.2
[10:31:52] [Server thread/INFO]: [Lands] Server: 1.20.x running Paper
[10:31:52] [Server thread/INFO]: [Lands] Licensed to: 1045435
[10:31:52] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[10:31:52] [Server thread/INFO]: [Lands] Discord: https://discord.gg/B4MAJVk
[10:31:52] [Server thread/INFO]: [Lands] Wiki: https://github.com/Angeschossen/Lands/wiki
[10:31:52] [Server thread/INFO]: [Lands]  
[10:31:52] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated DecentHolograms as hologram manager.
[10:31:52] [Server thread/INFO]: [Lands] Performing initial data load.
[10:31:52] [Server thread/INFO]: [Lands] There are currently 0 created land(s).
[10:31:52] [Server thread/INFO]: [Lands] Initial data load took 29 ms.
[10:31:52] [Server thread/WARN]: [Lands] [roles.yml] The FLY flag is in the 'display' list in roles.yml, but flight control is disabled in config.yml. This flag won't have any effect as long as it's disabled in config.yml.
[10:31:52] [Server thread/WARN]: [Lands] Invalid land flag (option: 'default_list' in config.yml): pvp
[10:31:53] [Server thread/INFO]: [WorldGuardEvents] Enabling WorldGuardEvents v1.18.1
[10:31:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.raidstone.wgevents.Entry
[10:31:53] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[10:31:53] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.1-beta-r2
[10:31:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[10:31:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[10:31:53] [Server thread/INFO]: [superelite] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.1-beta-r2
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.27
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-196 (MC: 1.20.1)
                                               
[10:31:53] [Server thread/INFO]: [superelite] [Host] Starting self-host webserver on port: 4114
[10:31:54] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.3
[10:31:54] [Server thread/INFO]: [NBTAPI] Adding listeners...
[10:31:54] [Server thread/INFO]: [NBTAPI] Gson:
[10:31:54] [Server thread/INFO]: [NBTAPI] Checking bindings...
[10:31:54] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[10:31:54] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[10:31:54] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[10:31:54] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[10:31:54] [Server thread/INFO]: [TAB] Enabling TAB v4.0.3
[10:31:54] [Server thread/INFO]: [TAB] Server version: 1.20.1 (v1_20_R1)
[10:31:54] [Server thread/INFO]: [TAB] Loaded NMS hook in 32ms
[10:31:54] [pool-80-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[10:31:54] [Server thread/INFO]: [TAB] Enabled in 335ms
[10:31:54] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-SNAPSHOT-b2604
[10:31:54] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[10:31:55] [Server thread/INFO]: [AuthMe] Connection arguments loaded, Hikari ConnectionPool ready!
[10:31:55] [Server thread/ERROR]: [AuthMe] [STDERR] [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Starting...
[10:31:55] [Server thread/WARN]: Nag author(s): '[sgdc3, ljacqu, games647, Hex3l, krusic22]' of 'AuthMe v5.6.0-SNAPSHOT-b2604' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[10:31:55] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[10:31:55] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:🎃superelite network🎃(1005058948728094801)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:canal-verificacion(1127673074905530528)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠📡ip-global(1029450814374281317)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠🍁temporada(1071407012224704552)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╔═👋bienvenida(1036055023416774677)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠👮reglas(1015009597452472340)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠📢anuncios(1022993990989123734)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠⚠aviso-rp(1125515505319542915)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠👥redes-sociales(1020738417576910899)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠💰donaciones(1143169060775940096)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╚═🛡alianza(1099774794490192035)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╔═-🎮minijuegos(1099788312060895324)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╚═🏆badges(1127691434208788592)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╔💬chat-general(1130926635969953813)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠💬memes(1127323292253036545)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠🎨multimedia(1036081504507416658)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠😻mascotas(1038917295331885076)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╠🤖bump(1036083580931166228)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╔═🎫tickets🎫(1033366195170201690)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:tickets-ayudantes(1035543636571586570)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:notas(1035535780485005372)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-mine(1150059806355370026)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs-todo(1038899148864372816)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderator-only(1015009597452472341)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs-tickets(1036010202543165601)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs-kigo(1036028767182782574)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:los-cactusfire(1159418872768774154)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs-beemo(1036052495283265606)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:anti-vpn(1122331984853737612)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:grimac-alertas-bedwars(1139978469124624476)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:grimac-alertas-mmorpg(1139976914128351293)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:grimac-alertas-lobby(1139976586792271994)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:vulcan-alertas-lobby(1068884503067631716)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:vulcan-bans-lobby(1068884436550164480)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:vulcan-alerts-rpg(1028277152011006003)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:vulcan-bans-rpg(1028277660415164486)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs-automod(1036063851038384238)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:info-compras-tebex(1037655795950690304)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:console-mine(1150059806355370026)
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Chatty hook
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling dynmap hook
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[10:31:55] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[10:31:56] [Server thread/ERROR]: [AuthMe] [STDERR] [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Start completed.
[10:32:03] [Server thread/INFO]: [AuthMe] MySQL setup finished
[10:32:03] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
[10:32:03] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[10:32:03] [Server thread/INFO]: [AuthMe] Hooked successfully into Multiverse-Core
[10:32:03] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0-SNAPSHOT build n.2604 successfully enabled!
[10:32:03] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[10:32:04] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[10:32:04] [Server thread/INFO]: [spark] Starting background profiler...
[10:32:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.34]
[10:32:04] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[10:32:04] [Server thread/INFO]: [DeadlyDisasters] Enabling DeadlyDisasters v10.5
[10:32:04] [Server thread/INFO]: [DeadlyDisasters] Successfully hooked into RealisticSeasons
[10:32:04] [Server thread/INFO]: [DeadlyDisasters] Successfully hooked into World Guard
[10:32:04] [Server thread/INFO]: [DeadlyDisasters] Successfully hooked into Lands
[10:32:04] [Server thread/INFO]: [DeadlyDisasters] Checking for update...
[10:32:04] [Server thread/INFO]: [DeadlyDisasters]: Enjoying the plugin? Try the pro version which has many new features such as new new disasters, new custom mobs, new custom items, regenerating worlds, block stability for bases, and much more upgrade now to pro here https://www.spigotmc.org/resources/deadlydisasters-pro.100918/
[10:32:05] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.18.0
[10:32:05] [Server thread/INFO]: [Shopkeepers] Loading the data of 22 shopkeepers ...
[10:32:05] [Server thread/WARN]: [Shopkeepers] Shopkeeper 28: Object type 'citizen' is disabled! Consider changing the object type.
[10:32:05] [Server thread/WARN]: [Shopkeepers] Shopkeeper 29: Object type 'citizen' is disabled! Consider changing the object type.
[10:32:05] [Server thread/WARN]: [Shopkeepers] Shopkeeper 31: Object type 'citizen' is disabled! Consider changing the object type.
[10:32:05] [Server thread/WARN]: [Shopkeepers] Shopkeeper 32: Object type 'citizen' is disabled! Consider changing the object type.
[10:32:05] [Server thread/WARN]: [Shopkeepers] Shopkeeper 36: Object type 'citizen' is disabled! Consider changing the object type.
[10:32:05] [Server thread/WARN]: [Shopkeepers] Shopkeeper 39: Object type 'citizen' is disabled! Consider changing the object type.
[10:32:05] [Server thread/INFO]: [DivineDrop] Enabling DivineDrop v2.13
[10:32:05] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.19.1.5
[10:32:05] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.5 Plugin Loading...
[10:32:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [1.0.0]
[10:32:05] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.5 Plugin Loaded!
[10:32:05] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.3.0
[10:32:06] [Server thread/INFO]: Hooked to SuperVanish
[10:32:06] [Server thread/INFO]: Hooked to PlaceholderAPI
[10:32:06] [Server thread/INFO]: Hooked to GSit
[10:32:06] [Server thread/INFO]: Hooked to Essentials
[10:32:06] [Server thread/INFO]: [sleep-most] Hooked to GSit!
[10:32:06] [Server thread/INFO]: [sleep-most] Hooked to PAPI!
[10:32:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sleepmost [5.3.0]
[10:32:06] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.1.0
[10:32:06] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[10:32:06] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[10:32:06] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[10:32:06] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[10:32:06] [Server thread/INFO]: [ItemEdit] placeholders:
[10:32:06] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[10:32:06] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[10:32:06] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[10:32:06] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[10:32:06] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[10:32:06] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[10:32:06] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[10:32:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[10:32:06] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[10:32:06] [Server thread/INFO]: [ItemEdit] # Enabled (took 377 ms)
[10:32:06] [Server thread/INFO]: [AdvancedAntiVPN] Enabling AdvancedAntiVPN v2.21.5
[10:32:06] [Server thread/INFO]: [AdvancedAntiVPN] Initializing managers...
[10:32:06] [Server thread/INFO]: [AdvancedAntiVPN] VaultManager initialized!
[10:32:06] [Server thread/INFO]: [AdvancedAntiVPN] Using MySQL...
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] DataManager initialized!
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] ServiceManager initialized!
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] ActionManager initialized!
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] GeoLite2Manager initialized!
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] Registering commands...
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] Registering listeners...
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] Loading data...
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] Starting tasks...
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] Starting metrics...
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] Plugin registered to 1045435 | -1832838622
[10:32:08] [Server thread/INFO]: [AdvancedAntiVPN] Done and enabled in 1830.10ms
[10:32:08] [Server thread/INFO]: [TheSearch] Enabling TheSearch v1.25.4
[10:32:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: thesearch [1.25.4]
[10:32:08] [Server thread/INFO]: [TheSearch] Has been enabled! Version: 1.25.4
[10:32:08] [Server thread/INFO]: [TheSearch] Thanks for using my plugin!  ~Ajneb97
[10:32:08] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.41.1
[10:32:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.41.1]
[10:32:08] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.41.1
[10:32:08] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[10:32:08] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[10:32:08] [Server thread/INFO]: [BuycraftX] Validating your server key...
[10:32:09] [Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[10:32:09] [Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[10:32:09] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[10:32:09] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.8.3
[10:32:10] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[10:32:10] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[10:32:10] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[10:32:10] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[10:32:10] [Server thread/INFO]: [CustomCrafting]     Version      | v4.16.8.3
[10:32:10] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.16.12.1
[10:32:10] [Server thread/INFO]: [CustomCrafting]     Bukkit       | git-Paper-196 (MC: 1.20.1)(API: 1.20.1-R0.1-SNAPSHOT)
[10:32:10] [Server thread/WARN]: [CustomCrafting]     Print Errors | false (Required for Support! Enable `data.print_stacktrace` in config.yml!)
[10:32:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[10:32:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[10:32:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[10:32:10] [Server thread/INFO]: [CustomCrafting] 
[10:32:10] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[10:32:10] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Junye Zhou, PwassonDoDouce, Mithran, Teddy
[10:32:10] [Server thread/INFO]: [CustomCrafting] 霜神CreamGod, Invictus_Vulpes , JorshStark, lonemmart, ccp920, Luuk Musch
[10:32:10] [Server thread/INFO]: [CustomCrafting] Esteban, WizardOfWit
[10:32:10] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[10:32:10] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[10:32:10] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[10:32:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrafting [4.16.8.3]
[10:32:10] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[10:32:10] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[10:32:10] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[10:32:10] [Server thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[10:32:12] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[10:32:12] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.4
[10:32:12] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 1ms)
[10:32:12] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_20_R1!
[10:32:12] [Server thread/INFO]: [SimplePortals] Everything looks like it is up to date!
[10:32:12] [Server thread/INFO]: [SlimeInABukkit] Enabling SlimeInABukkit v1.3.1
[10:32:12] [Server thread/INFO]: [HeroAction] Enabling HeroAction v4.0*
[10:32:12] [Server thread/INFO]: [HeroAction] Checking for Updates...
[10:32:12] [Server thread/INFO]: [QuickShop] Enabling QuickShop v5.1.2.5
[10:32:12] [Server thread/INFO]: [QuickShop] QuickShop Reremake
[10:32:12] [Server thread/INFO]: [QuickShop] Starting plugin self-test, please wait...
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] Java Runtime Environment Version Test
[10:32:13] [Server thread/INFO]: [QuickShop] Running QuickShop-Reremake on NMS version v1_20_R1 For Minecraft version 1.20.1
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] Spigot Based Server Test
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] Old QuickShop Test
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] ModdedServer Based Test
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] CoreSupport Test
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] Virtual DisplayItem Support Test
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] GameVersion supporting Test
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] PacketListenerAPI Conflict Test
[10:32:13] [Server thread/INFO]: [QuickShop] [OK] End of life Test
[10:32:13] [Server thread/INFO]: [QuickShop] Reading the configuration...
[10:32:13] [Server thread/INFO]: [QuickShop] Developers: PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), jho5245, Ghost_chu, cakoyo, Ectabro, portlek, log4b0at, Andre601, deadman96385, Vlvxingze, DoctaEnkoda, Mgazul, TiaraRinne, sandtechnology, Starmism, Chris6ix, Rean Schwarzer, mart-r, raphtaliapt, Tim269, creatorfromhell, LoneDev6, judgetread, confuxeon, ibmibmibm, yannicklamprecht, PyvesB, PaulBGD, ORelio, JoschuaSchneider, Starmium, harry0198, efekurbann, tdiant
[10:32:13] [Server thread/INFO]: [QuickShop] Original author: Netherfoam, Timtower, KaiNoMood
[10:32:13] [Server thread/INFO]: [QuickShop] Let's start loading the plugin
[10:32:13] [Server thread/INFO]: [QuickShop] Chat processor selected: Hardcoded BungeeChat Lib
[10:32:13] [Server thread/INFO]: [QuickShop] Loading plugin translations files...
[10:32:13] [Server thread/INFO]: [QuickShop] Game assets server selected: Mojang API
[10:32:13] [Server thread/INFO]: [QuickShop] Loading items translations...
[10:32:13] [Server thread/INFO]: [QuickShop] Loading enchantments translations...
[10:32:13] [Server thread/INFO]: [QuickShop] Loading potions translations...
[10:32:14] [Server thread/INFO]: [QuickShop] Successfully loaded PlaceHolderAPI support!
[10:32:14] [Server thread/INFO]: [QuickShop] Successfully loaded WorldEdit support!
[10:32:14] [Server thread/INFO]: [QuickShop] Using Virtual Item display, loading ProtocolLib support...
[10:32:14] [Server thread/INFO]: [QuickShop] Successfully loaded ProtocolLib support!
[10:32:14] [Server thread/INFO]: [QuickShop] Setting up database...
[10:32:14] [Server thread/INFO]: [QuickShop] Checking and updating database columns, it may take a while...
[10:32:14] [Server thread/INFO]: [QuickShop] Finished!
[10:32:14] [Server thread/INFO]: [QuickShop] Selected permission provider: Bukkit
[10:32:14] [Server thread/INFO]: [QuickShop] Registering commands...
[10:32:14] [Server thread/INFO]: [QuickShop] Loaded 1 rules for listener blacklist.
[10:32:14] [Server thread/INFO]: [QuickShop] EventManager selected: QSEventManager
[10:32:14] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
[10:32:14] [Server thread/INFO]: [QuickShop] Loading shops from the database...
[10:32:14] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
[10:32:14] [Server thread/INFO]: [QuickShop] Total           shops: 26
[10:32:14] [Server thread/INFO]: [QuickShop] Valid           shops: 26
[10:32:14] [Server thread/INFO]: [QuickShop] Pending              : 12
[10:32:14] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
[10:32:14] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 14
[10:32:14] [Server thread/INFO]: [QuickShop] Done! Used 79ms to loaded shops in database.
[10:32:14] [Server thread/INFO]: [QuickShop] Registering listeners...
[10:32:14] [Server thread/INFO]: [QuickShop] Cleaning MsgUtils...
[10:32:14] [Server thread/INFO]: [QuickShop] Cleaning purchase messages from the database that are over a week old...
[10:32:14] [Server thread/INFO]: [QuickShop] Log actions is enabled, actions will log in the qs.log file!
[10:32:14] [Server thread/INFO]: [QuickShop] [Shop Purger] Purge not enabled!
[10:32:14] [Server thread/INFO]: [QuickShop] QuickShop Loaded! 1664 ms.
[10:32:14] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.7.1
[10:32:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.7.1]
[10:32:14] [Server thread/INFO]: [PlayerKits²] Has been enabled! Version: 1.7.1
[10:32:14] [Server thread/INFO]: [PlayerKits²] Thanks for using my plugin!   ~Ajneb97
[10:32:14] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[10:32:14] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[10:32:15] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[10:32:16] [Server thread/INFO]: 
 
[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: MySQL (external)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]
 
[10:32:16] [Server thread/INFO]: [eGlow] Enabling eGlow v3.2.6
[10:32:16] [Server thread/INFO]: [eGlow]: Loading main config.
[10:32:16] [Server thread/INFO]: [eGlow]: Loading messages config.
[10:32:16] [Server thread/INFO]: [eGlow]: Loading customeffects config.
[10:32:16] [Server thread/INFO]: eGlow Successfully loaded Playerdata database.
[10:32:16] [Server thread/INFO]: [FastLogin] Enabling FastLogin v1.12-SNAPSHOT-e15ea9c
[10:32:16] [Server thread/INFO]: [FastLogin] Found enabled proxy configuration
[10:32:16] [Server thread/INFO]: [FastLogin] Remember to follow the proxy guide to complete your setup
[10:32:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: FastLogin [1.12-SNAPSHOT-e15ea9c]
[10:32:16] [Server thread/INFO]: [Animotion] Enabling Animotion v1.0_i_patch3*
[10:32:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: animotion [1a]
[10:32:16] [Server thread/INFO]: Animotion PlaceholderAPI expansion has been enabled.
[10:32:16] [Server thread/INFO]: Animotion WorldGuard extension has been enabled.
[10:32:16] [Server thread/INFO]: Animotion Animotion is ready to use !
[10:32:17] [Server thread/INFO]: Animotion An update is available.
[10:32:17] [Server thread/INFO]: [ComplexTurrets] Enabling ComplexTurrets v3.9.1
[10:32:17] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: ComplexTurrets
[10:32:17] [Server thread/INFO]: [Lands] Nag author(s) of plugin ComplexTurrets. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[10:32:17] [Server thread/INFO]: [ComplexTurret] Has been enabled! Version: 3.9.1
[10:32:17] [Server thread/INFO]: [ComplexTurret] Thanks for using my plugin!  ~Ajneb97
[10:32:17] [Server thread/INFO]: [Quests] Enabling Quests v4.8.3-b423
[10:32:17] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:32:17] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:32:17] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:32:17] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:32:17] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:32:17] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:32:17] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[10:32:17] [Server thread/INFO]: [Quests] Loaded language es-ES. Translations via Crowdin
[10:32:17] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:17] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[10:32:17] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:17] [Server thread/INFO]: [TigerReports] Enabling TigerReports v5.2.2
[10:32:18] [Server thread/INFO]: [AWD] Enabling AWD v2.6.5*
[10:32:18] [Server thread/INFO]: [AntiWorldDownloader] AWD has been enabled! (Version: 2.6.5)
[10:32:18] [Server thread/INFO]: [EpicCraftingsPlus] Enabling EpicCraftingsPlus v7.23.2
[10:32:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: epiccraftings [7.23.2]
[10:32:18] [Server thread/INFO]: [EpicCraftings+] Has been enabled! Version: 7.23.2
[10:32:18] [Server thread/INFO]: [EpicCraftings+] Thanks for using my plugin!  ~Ajneb97
[10:32:18] [Server thread/INFO]: [BetterRevive] Enabling BetterRevive v0.9.1-BETA
[10:32:18] [Server thread/INFO]:   ___      _   _           ___         _         
[10:32:18] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ \_____ _(_)_ _____ 
[10:32:18] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_|   / -_) V / \ V / -_)
[10:32:18] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |_|_\___|\_/|_|\_/\___|
[10:32:18] [Server thread/INFO]: 
[10:32:18] [Server thread/INFO]:    Running plugin BetterRevive v0.9.1-BETA (v2_0)
[10:32:18] [Server thread/INFO]:    Server running Paper version git-Paper-196 (MC: 1.20.1)
[10:32:18] [Server thread/INFO]:    (Implementing API version git-Paper-196 (MC: 1.20.1))
[10:32:18] [Server thread/INFO]:    (Developed by  AlonsoAliaga - Thanks for using my plugin ❤)
[10:32:18] [Server thread/INFO]:    If you loved the plugin consider leaving a review and mentioning your server IP in it!
[10:32:18] [Server thread/INFO]: 
[10:32:18] [Server thread/INFO]: ==============================================================================================
[10:32:18] [Server thread/INFO]: [BetterRevive] This is not a error! This is just a warning to keep in mind if you have issues!
[10:32:18] [Server thread/INFO]: [BetterRevive] You are using a Paper fork (Paper). This plugin was made for Spigot
[10:32:18] [Server thread/INFO]: [BetterRevive] but was (in most cases) tested with different builds of Paper and Purpur.
[10:32:18] [Server thread/INFO]: [BetterRevive] Spigot and forks API are really similar and should be compatible, however there are
[10:32:18] [Server thread/INFO]: [BetterRevive] some cases in which they aren't compatible. If you have issues report them to the
[10:32:18] [Server thread/INFO]: [BetterRevive] developer instead of reviewing 1 star. Thanks in advanced!
[10:32:18] [Server thread/INFO]: [BetterRevive] Join us in our official support server on alonsoaliaga.com/discord
[10:32:18] [Server thread/INFO]: ==============================================================================================
[10:32:18] [Server thread/INFO]: 
[10:32:18] [Server thread/INFO]: [BetterRevive] BungeeCord action bar available. Hooking..
[10:32:18] [Server thread/INFO]: [BetterRevive] ProtocolLib found! Checking..
[10:32:18] [Server thread/INFO]: [Auto-update] Configuration config.yml is up-to-date!
[10:32:18] [Server thread/INFO]: [BetterRevive] Factions hook is enabled but couldn't find any supported faction plugin were found. Disabling hook..
[10:32:18] [Server thread/INFO]: [BetterRevive] Finish off feature has been enabled! Players can finish off other player!
[10:32:18] [Server thread/INFO]: [BetterRevive] Finish off health: 20 | Finish off damage multiplier: 0.5
[10:32:18] [Server thread/INFO]: [BetterRevive] DamageCause for finish off is empty! All damage cause will be allowed to finish off players. (Includes DROWING, FIRE, LAVA, etc)
[10:32:18] [Server thread/INFO]: [BetterRevive] Bleeding mode is 0! Plugin will select the best option for your server!
[10:32:18] [Server thread/INFO]: [BetterRevive] Server version is v2_0. Players will look like swimming while bleeding! (Mode 2)
[10:32:18] [Server thread/INFO]: [BetterRevive] Loaded 1 bleeding effects.
[10:32:18] [Server thread/INFO]: [BetterRevive] Loaded 1 revived effect.
[10:32:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrevive [0.9.1-BETA]
[10:32:18] [Server thread/INFO]: [SternalBoard] Enabling SternalBoard v2.2.5
[10:32:18] [Server thread/INFO]: [BetterFood] Enabling BetterFood v1.3.1
[10:32:18] [Server thread/INFO]: [DoorsReloaded] Enabling DoorsReloaded v1.3.1
[10:32:18] [Server thread/INFO]: [Interactions] Enabling Interactions v1.35.3
[10:32:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactions [1.35.3]
[10:32:18] [Server thread/INFO]: [Interactions] Has been enabled! Version: 1.35.3
[10:32:18] [Server thread/INFO]: [Interactions] Thanks for using my plugin!  ~Ajneb97
[10:32:18] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[10:32:18] [Server thread/INFO]: [ChestCommands] Enabling ChestCommands v4.0.3
[10:32:18] [Server thread/INFO]: [ChestCommands] Hooked Vault
[10:32:18] [Server thread/INFO]: [ChestCommands] Hooked PlaceholderAPI
[10:32:19] [Server thread/INFO]: [CombatPlus] Enabling CombatPlus v1.6.8
[10:32:19] [Server thread/INFO]:  
[10:32:19] [Server thread/INFO]: Combat Plus v1.6.8
[10:32:19] [Server thread/INFO]:  
[10:32:19] [Server thread/INFO]:   Author: Nik
[10:32:19] [Server thread/INFO]:  
[10:32:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: combatplus [1.6.8]
[10:32:19] [Server thread/INFO]: [NeoPerformance] Enabling NeoPerformance v1.14.4
[10:32:19] [Server thread/INFO]: [AngelChest] Enabling AngelChest v9.15.2
[10:32:19] [Server thread/INFO]: [AngelChest] groups.yml does not exist, skipping custom group settings.
[10:32:19] [Server thread/INFO]: [AngelChest] blacklist.yml does not exist, disabling item blacklist.
[10:32:19] [Server thread/INFO]: [AngelChest] Not using premium version, disabling Graveyards feature
[10:32:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: angelchest [GENERIC]
[10:32:20] [Server thread/INFO]: [AngelChest] Successfully hooked into Vault and the EconomyProvider, enabling economy functions.
[10:32:20] [Server thread/INFO]: [AngelChest] [ACF] Enabled Asynchronous Tab Completion Support!
[10:32:20] [Server thread/INFO]: [AngelChest] Successfully enabled AngelChest v9.15.2 (Premium: false)
[10:32:20] [Server thread/INFO]: [EasyWhitelist] Enabling EasyWhitelist v1.0.2*
[10:32:20] [Server thread/INFO]: EasyWhitelist > Config reloaded.
[10:32:20] [Server thread/INFO]: E-Whitelist > Loaded!
[10:32:20] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 54a
[10:32:20] [Server thread/INFO]: [UltimateAutoRestart] Build 54a, a free resource by Norska - Thanks for downloading!
[10:32:20] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[10:32:20] [Server thread/WARN]: java.io.FileNotFoundException: https://discord.com/api/webhooks/1037100338357993533/6jNn-efH7967EwvYeo2B-YjjA1Mj5lHJcMmsjnjaqIEfO5Ea20SURI2wAYMP53N3gRis
[10:32:20] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1993)
[10:32:20] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589)
[10:32:20] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224)
[10:32:20] [Server thread/WARN]:     at UltimateAutoRestart Build 54a.jar//dev.norska.uar.utils.DiscordWebhook.execute(DiscordWebhook.java:153)
[10:32:20] [Server thread/WARN]:     at UltimateAutoRestart Build 54a.jar//dev.norska.uar.utils.WebhookSender.sendWebhook(WebhookSender.java:79)
[10:32:20] [Server thread/WARN]:     at UltimateAutoRestart Build 54a.jar//dev.norska.uar.UltimateAutoRestart.onEnable(UltimateAutoRestart.java:79)
[10:32:20] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[10:32:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[10:32:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[10:32:20] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[10:32:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:642)
[10:32:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:553)
[10:32:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[10:32:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[10:32:20] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[10:32:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1100)
[10:32:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317)
[10:32:20] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[10:32:20] [Server thread/INFO]: [AlonsoLevels] Enabling AlonsoLevels v2.3.1-BETA
[10:32:20] [Server thread/INFO]: [AlonsoLevels] Max health Attribute check found. Using it..
[10:32:20] [Server thread/INFO]: [AlonsoLevels] Inventory title with support for more than 32 characters. Skipping..
[10:32:20] [Server thread/INFO]: [AlonsoLevels] Hex colors are available! Ready for RGB..
[10:32:20] [Server thread/INFO]: [AlonsoLevels] Old constructor for HoverEvent found! Using it..
[10:32:20] [Server thread/INFO]: [AlonsoLevels] New sendTitle method found! Using it..
[10:32:20] [Server thread/INFO]: [AlonsoLevels] New setUnbreakable method found! Using it..
[10:32:20] [Server thread/INFO]: [AlonsoLevels] New isUnbreakable method found! Using it..
[10:32:20] [Server thread/INFO]:     _   _                  _                _     Running v2.3.1-BETA (v1_20)
[10:32:20] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___| |   _____ _____| |___ Server Paper vgit-Paper-196 (MC: 1.20.1)
[10:32:20] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \ |__/ -_) V / -_) (_-< Discord for support: https://alonsoaliaga.com/discord
[10:32:20] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/____\___|\_/\___|_/__/ Thanks for purchasing my plugin ❤!
[10:32:20] [Server thread/INFO]:                  Developed by AlonsoAliaga
[10:32:20] [Server thread/INFO]: 
[10:32:20] [Server thread/INFO]: ==============================================================================================
[10:32:20] [Server thread/INFO]: [AlonsoLevels] You are using a Paper fork (Paper), plugin should work fine!
[10:32:20] [Server thread/INFO]: [AlonsoLevels] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[10:32:20] [Server thread/INFO]: ==============================================================================================
[10:32:20] [Server thread/INFO]: 
[10:32:20] [Server thread/INFO]: [AlonsoLevels] BungeeCord action bar available. Hooking..
[10:32:20] [Server thread/INFO]: [AlonsoLevels] ProtocolLib found! Checking..
[10:32:20] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[10:32:20] [Server thread/INFO]: [AlonsoLevels] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[10:32:20] [Server thread/INFO]: [AlonsoLevels] [MySQL] Attempting to create 'AlonsoLevels' table..
[10:32:20] [Server thread/INFO]: [AlonsoLevels] [MySQL] Attempting to connect to database..
[10:32:21] [Server thread/INFO]: [MySQL] Driver available: MySQL Connector/J | 5.5.5-10.3.38-MariaDB-0ubuntu0.20.04.1
[10:32:21] [Server thread/INFO]: [AlonsoLevels] [MySQL] Successfully connected to database!
[10:32:21] [Server thread/INFO]: [AlonsoLevels] [MySQL] Table 'AlonsoLevels' has been created if didn't exist.
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Database found! Everything is working as expected.
[10:32:21] [Server thread/INFO]: [AlonsoLevels] GameProfile field is available for heads. Hooking..
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Server name has been selected as 'Survival'
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Config files are (re)loading.. Timestamp: Negative | Negative
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Formula for experience is enabled! Loading..
[10:32:21] [Server thread/INFO]: ===========================================================================================
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Failed to load 'JavaScript' (1).
[10:32:21] [Server thread/INFO]: ===========================================================================================
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Failed to load 'JavaScript' (2).
[10:32:21] [Server thread/INFO]: ===========================================================================================
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Failed to load 'graal.js' (1).
[10:32:21] [Server thread/INFO]: ===========================================================================================
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Failed to load 'graal.js' (2).
[10:32:21] [Server thread/INFO]: ===========================================================================================
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Failed to load 'js' (1).
[10:32:21] [Server thread/INFO]: ===========================================================================================
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Failed to load 'js' (2).
[10:32:21] [Server thread/INFO]: ===========================================================================================
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Failed to load 'nashorn' (1).
[10:32:21] [Server thread/INFO]: ===========================================================================================
[10:32:21] [Server thread/INFO]: [AlonsoLevels] Failed to load 'nashorn' (2).
[10:32:21] [Server thread/INFO]: ===========================================================================================
[10:32:21] [Server thread/INFO]: JSEngine found! Getting and assigning JavaScript engine..
[10:32:22] [Server thread/INFO]: [AlonsoLevels] Successfully loaded 100 levels!
[10:32:23] [Server thread/INFO]: [AlonsoLevels] Loaded 57 normal rewards in 3 pages.
[10:32:23] [Server thread/INFO]: [AlonsoLevels] Veteran section is not enabled in configuration. Skipping veteran rewards..
[10:32:23] [Server thread/INFO]: [AlonsoLevels] Section for 'Normal multipliers' called 'Normal' in multipliers.yml is invalid. Skipping..
[10:32:23] [Server thread/INFO]: [AlonsoLevels] Loaded 0 normal multipliers.
[10:32:23] [Server thread/INFO]: [AlonsoLevels] Veteran section is not enabled in configuration. Skipping veteran multipliers..
[10:32:23] [Server thread/INFO]: [AlonsoLevels] PlaceholderAPI found! Hooking..
[10:32:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsolevels [2.3.1-BETA]
[10:32:23] [Server thread/INFO]: [AlonsoLevels] VaultMultiplier wasn't found! Skipping..
[10:32:23] [Server thread/INFO]: [MoneyFromMobs] Enabling MoneyFromMobs v4.71
[10:32:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: moneyfrommobs [4.71]
[10:32:23] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.48
[10:32:23] [Server thread/INFO]: [BigDoors] Power Block Types:
[10:32:23] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[10:32:23] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[10:32:23] [Server thread/INFO]: [BigDoors]  - BEDROCK
[10:32:23] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[10:32:23] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[10:32:23] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[10:32:23] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[10:32:23] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[10:32:23] [Server thread/INFO]: [BigDoors]  - LAVA
[10:32:23] [Server thread/INFO]: [BigDoors]  - WATER
[10:32:23] [Server thread/INFO]: [BigDoors]  - SNOW
[10:32:23] [Server thread/INFO]: [BigDoors]  - FERN
[10:32:23] [Server thread/INFO]: [BigDoors]  - GRASS
[10:32:23] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[10:32:23] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[10:32:23] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[10:32:23] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[10:32:23] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[10:32:23] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: BigDoors
[10:32:23] [Server thread/INFO]: [Lands] Nag author(s) of plugin BigDoors. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[10:32:23] [Server thread/INFO]: [BigDoors] Successfully hooked into "Lands"!
[10:32:24] [Server thread/INFO]: [EasyCommandBlocker] Enabling EasyCommandBlocker v1.8.1
[10:32:24] [Server thread/INFO]: [EasyCommandBlocker] Has been enabled! Version: 1.8.1
[10:32:24] [Server thread/INFO]: [EasyCommandBlocker] Thanks for using my plugin!   ~Ajneb97
[10:32:24] [Server thread/INFO]: [BugReport] Enabling BugReport v0.6.2
[10:32:24] [Server thread/INFO]: [BugReport] [STDOUT] Connecting to local database
[10:32:24] [Server thread/WARN]: Nag author(s): '[]' of 'BugReport v0.6.2' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[10:32:24] [Server thread/INFO]: [BugReport] [STDOUT] Connected to local database
[10:32:24] [Server thread/ERROR]: [BugReport] Failed to add missing columns.
[10:32:24] [Server thread/ERROR]: [BugReport] [SQLITE_ERROR] SQL error or missing database (no such table: INFORMATION_SCHEMA.COLUMNS)
[10:32:24] [Server thread/WARN]: @EventHandler method com.leon.bugreport.BugReportSettings$BugReportSettingsListener#onInventoryClick returns non-void type java.lang.Object. This is unsupported behavior and will no longer work in a future version of Paper. This should be reported to the developers of BugReport v0.6.2 ()
[10:32:24] [Server thread/INFO]: [BetterInvisibility] Enabling BetterInvisibility v3.1
[10:32:24] [Server thread/INFO]: [BetterInvisibility] Plugin Version 3.1
[10:32:24] [Server thread/INFO]: [BetterInvisibility] File 'config.yml' loaded!
[10:32:24] [Server thread/INFO]: [MCPets] Enabling MCPets v4.0.3
[10:32:24] [Server thread/INFO]: [MCPets] : Language file reloaded.
[10:32:24] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[10:32:24] [Server thread/INFO]: Loading pets... 
[10:32:24] [Server thread/INFO]:   - dragon_no_muerto loaded succesfully.
[10:32:24] [Server thread/INFO]:   - Panda loaded succesfully.
[10:32:24] [Server thread/INFO]:   - Sabertooth_Savanna loaded succesfully.
[10:32:24] [Server thread/INFO]:   - Manticore_Venom loaded succesfully.
[10:32:24] [Server thread/INFO]:   - Lizard_Aqua loaded succesfully.
[10:32:24] [Server thread/INFO]:   - Dragon_Sculk loaded succesfully.
[10:32:24] [Server thread/INFO]: [MCPets] : 6 pets registered successfully !
[10:32:24] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[10:32:24] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[10:32:24] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[10:32:24] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[10:32:24] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[10:32:24] [Server thread/INFO]:       Plugin made by Nocsy
[10:32:24] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[10:32:24] [Server thread/INFO]: -=- Launching Flags -=-
[10:32:24] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[10:32:24] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[10:32:24] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[10:32:24] [Server thread/INFO]: 3 flags launched.
[10:32:24] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[10:32:27] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:32:27] [Server thread/INFO]: Running delayed init tasks
[10:32:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[10:32:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[10:32:27] [Craft Scheduler Thread - 9 - Essentials/INFO]: [Essentials] Obteniendo información de versión...
[10:32:27] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:27] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[10:32:27] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:27] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing Gargoyle.bbmodel.
[10:32:28] [Craft Scheduler Thread - 14 - AuthMe/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
[10:32:28] [Craft Scheduler Thread - 14 - AuthMe/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
[10:32:28] [Craft Scheduler Thread - 14 - AuthMe/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
[10:32:28] [Craft Scheduler Thread - 14 - AuthMe/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins/AuthMe/GeoLite2-Country.mmdb (No such file or directory)
[10:32:28] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 14.2.13
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[10:32:28] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[10:32:28] [Craft Scheduler Thread - 15 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[10:32:28] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [superelite]  
[10:32:28] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [superelite] UPDATE available: https://www.spigotmc.org/resources/73355/
[10:32:28] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [superelite] Current version: 3.6.1-beta-r2 | Online version: 3.6.1-beta
[10:32:28] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [superelite]  
[10:32:28] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [superelite] [License] Spigot product licensed to: KALEY10555 (1045435)
[10:32:28] [Craft Scheduler Thread - 16 - HeroAction/INFO]: [HeroAction] Your server is running the latest version of HeroAction.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing Gargoyle_spawner.bbmodel.
[10:32:28] [Craft Scheduler Thread - 13 - Quests/INFO]: [Quests] Actualizar a 5.0.0-rc.1: https://github.com/PikaMug/Quests
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing Rocky.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_desert.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_glacial.bbmodel.
[10:32:28] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] Checking for Updates ... 
[10:32:28] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] No new version available
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_nether.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_sculk.bbmodel.
[10:32:28] [Craft Scheduler Thread - 14 - CombatPlus/INFO]: [Combat+]: There is a new version available, Your version 1.6.8 new version 1.7.0
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing forester.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing gargoyle_spike.bbmodel.
[10:32:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rs [1.0.0]
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing guardian_shield.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing herobrine.bbmodel.
[10:32:28] [Server thread/INFO]: [RealisticSeasons] Total biomes registered on server: 285
[10:32:28] [Server thread/INFO]: [superelite] [Pack] Extracting internal contents from .jar
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing herobrine_alex.bbmodel.
[10:32:28] [Server thread/ERROR]: [superelite] [Pack] Failed to update old 'contents/_iainternal' files. Consider deleting the folder and regenerate your pack.
[10:32:28] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "com.google.gson.JsonObject.get(String)" because "<local6>" is null
[10:32:28] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.jc.cA(SourceFile:192)
[10:32:28] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.G.b(SourceFile:578)
[10:32:28] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.G.c(SourceFile:551)
[10:32:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
[10:32:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[10:32:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1111)
[10:32:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317)
[10:32:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[10:32:28] [Server thread/INFO]: [superelite] [Pack] DONE extracting internal contents from .jar
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing herobrine_alex_bits.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing herobrine_axe.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing herobrine_bits.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing herobrine_bobber.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing herobrine_steve.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing herobrine_zombie.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing herobrine_zombie_bits.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing lizard_aqua.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing lizard_lava.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_healthbar.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing magical_blade.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing magical_blades.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing manticore_aether.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing manticore_dusk.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing manticore_soul.bbmodel.
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:28] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing manticore_venom.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing panda_normal.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing phoenix.bbmodel.
[10:32:29] [Craft Scheduler Thread - 21 - TigerReports/INFO]: [TigerReports] Le plugin utilise une base de donnees MySQL.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing sabertooth_arctic.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing sabertooth_midnight.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing sabertooth_savanna.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing spirit_guardian.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing spirit_horse.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_ender_dragon.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone chest is translated too far away from the pivot. Maximum translation is 80x80x80. [ 0.0, 3.728227138519287, -102.40000915527344 ]
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone left_wingtip_one is translated too far away from the pivot. Maximum translation is 80x80x80. [ -120.69267272949219, -6.400000095367432, 87.73777770996094 ]
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone right_wingtip_one is translated too far away from the pivot. Maximum translation is 80x80x80. [ 120.69267272949219, -6.400000095367432, 87.73777770996094 ]
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_pool.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_skull.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_skull_2ndphase.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_still.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_terror.bbmodel.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] [Generating assets]
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating gargoyle.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating gargoyle_spawner.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating rocky.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_desert.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_glacial.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_nether.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_sculk.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating forester.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating gargoyle_spike.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating guardian_shield.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating herobrine.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating herobrine_alex.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating herobrine_alex_bits.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating herobrine_axe.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating herobrine_bits.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating herobrine_bobber.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating herobrine_steve.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating herobrine_zombie.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating herobrine_zombie_bits.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating lizard_aqua.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating lizard_lava.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating lr_healthbar.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating magical_blade.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating magical_blades.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating manticore_aether.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating manticore_dusk.
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:29] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating manticore_soul.
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating manticore_venom.
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating panda_normal.
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating phoenix.
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating sabertooth_arctic.
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating sabertooth_midnight.
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating sabertooth_savanna.
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating spirit_guardian.
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating spirit_horse.
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:30] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_ender_dragon.
[10:32:31] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:31] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither.
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:painting_burst' not found in crafting recipe 'painting_burst'. File /contents/iadeco/configs/recipes/recipes_paintings.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:painting_courbet' not found in crafting recipe 'painting_courbet'. File /contents/iadeco/configs/recipes/recipes_paintings.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:painting_graham' not found in crafting recipe 'painting_graham'. File /contents/iadeco/configs/recipes/recipes_paintings.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:painting_match' not found in crafting recipe 'painting_match'. File /contents/iadeco/configs/recipes/recipes_paintings.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:painting_pool' not found in crafting recipe 'painting_pool'. File /contents/iadeco/configs/recipes/recipes_paintings.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:painting_skull_and_roses' not found in crafting recipe 'painting_skull_and_roses'. File /contents/iadeco/configs/recipes/recipes_paintings.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:painting_stage' not found in crafting recipe 'painting_stage'. File /contents/iadeco/configs/recipes/recipes_paintings.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:painting_void' not found in crafting recipe 'painting_void'. File /contents/iadeco/configs/recipes/recipes_paintings.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:painting_wanderer' not found in crafting recipe 'painting_wanderer'. File /contents/iadeco/configs/recipes/recipes_paintings.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'gardenplus:adoquín_de_planta_de_hoja_de_goteo' not found in crafting recipe 'dreapleafplante_cobble'. File /contents/Garden_plus_ia_addon1.2/items_packs/gardenplus/plantes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:old_clock' not found in crafting recipe 'old_clock'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:opened_chest' not found in crafting recipe 'opened_chest'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:computer_desk' not found in crafting recipe 'computer_desk'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:table' not found in crafting recipe 'table'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:lamp' not found in crafting recipe 'lamp'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:lava_lamp' not found in crafting recipe 'lava_lamp'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:glass_table' not found in crafting recipe 'glass_table'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:monitor' not found in crafting recipe 'monitor'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:tv' not found in crafting recipe 'tv'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:mini_fridge' not found in crafting recipe 'mini_fridge'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:vending_machine' not found in crafting recipe 'vending_machine'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:coffee_machine' not found in crafting recipe 'coffee_machine'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:white_chandeliers' not found in crafting recipe 'white_chandeliers'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:small_fountain' not found in crafting recipe 'small_fountain'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/INFO]: [superelite] Result item 'iadeco:lit_campfire' not found in crafting recipe 'lit_campfire'. File /contents/iadeco/configs/recipes/recipes.yml
[10:32:31] [Server thread/ERROR]: [superelite] Tree populator mangrove_tree failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /contents/data2/item_packs/warden/trees_populators.yml
[10:32:31] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:31] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_pool.
[10:32:31] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:31] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_skull.
[10:32:32] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:32] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_skull_2ndphase.
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:sculk_block' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:mud' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:packed_mud' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:mud_bricks' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:mangrove_roots' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:muddy_mangrove_roots' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:verdant_froglight' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:ochre_froglight' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:pearlescent_froglight' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:mangrove_planks' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:mangrove_log' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Invalid break_particles_material 'ITEM' for item 'warden:stripped_mangrove_log' please make sure it's a vanilla material or a custom item. File: /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Server thread/ERROR]: [superelite] Cannot create sapling 'warden:mangrove_propagule_sapling'. tree_populator 'mangrove_tree' doesn't exist. File /contents/data2/item_packs/warden/warden.yml
[10:32:32] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:32] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_still.
[10:32:32] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:32] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_terror.
[10:32:32] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:32:32] [Craft Scheduler Thread - 10 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[10:32:33] [Server thread/INFO]: [superelite] Loaded 640 items
[10:32:33] [Server thread/INFO]: [superelite] Used 3/188 REAL block IDs
[10:32:33] [Server thread/INFO]: [superelite] Used 42/750 REAL_NOTE block IDs
[10:32:33] [Server thread/INFO]: [superelite] Used 6/63 REAL_TRANSPARENT block IDs
[10:32:33] [Server thread/INFO]: [superelite] Used 3/127 REAL_WIRE block IDs
[10:32:33] [Server thread/INFO]: [superelite] Used 5/14 FIRE block IDs
[10:32:33] [Server thread/INFO]: [superelite] Used 599/6608 font_images
[10:32:33] [Server thread/ERROR]: [superelite] Error loading the plugin, something is not configured right or an exception occured. More detail:
[10:32:33] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.Material.isBlock()" because "<parameter1>" is null
[10:32:33] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.kf.g(SourceFile:969)
[10:32:33] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.iD.bZ(SourceFile:239)
[10:32:33] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.iD.<init>(SourceFile:64)
[10:32:33] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.iz.<init>(SourceFile:95)
[10:32:33] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.G.a(SourceFile:863)
[10:32:33] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.G.a(SourceFile:565)
[10:32:33] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.G.b(SourceFile:789)
[10:32:33] [Server thread/WARN]:     at ItemsAdder_3.6.1-beta-r2.jar//ia.m.G.c(SourceFile:551)
[10:32:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101)
[10:32:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[10:32:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1111)
[10:32:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317)
[10:32:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[10:32:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.26.2]
[10:32:33] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
[10:32:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eglow [3.2.6]
[10:32:33] [Server thread/INFO]: [NeoPerformance] NeoPerformance (By KyTDK) is enabled and using bStats!
[10:32:33] [Server thread/INFO]: [BigDoors] Checking for updates...
[10:32:33] [Server thread/INFO]: [Magic] Vault found, 'currency' cost types available
[10:32:33] [Server thread/INFO]: [Magic] AureliumSkills found, will integrate for skill/stat attributes,xp currencies
[10:32:33] [Server thread/INFO]: [Magic]   If you want Magic spells to use AureliumSkills mana, use &7/mconfig configure config aurelium_skills.use_mana true
[10:32:33] [Server thread/INFO]: [Magic] Registered AureliumSkills XP as currencies: FARMING,FORAGING,MINING,FISHING,EXCAVATION,ARCHERY,DEFENSE,FIGHTING,ENDURANCE,AGILITY,ALCHEMY,ENCHANTING,SORCERY,HEALING,FORGING
[10:32:33] [Server thread/INFO]: [Magic] Registered currencies: AGILITY,EXCAVATION,DEFENSE,item,ARCHERY,FORGING,ENDURANCE,SORCERY,health,FARMING,HEALING,FIGHTING,hunger,FORAGING,FISHING,mana,ALCHEMY,xp,currency,ENCHANTING,sp,levels,MINING
[10:32:33] [ForkJoinPool.commonPool-worker-5/INFO]: [BigDoors] No new updates available.
[10:32:35] [Server thread/INFO]: [Magic] Loaded 558 spells
[10:32:35] [Server thread/INFO]: [Magic] Loaded 12 progression paths
[10:32:35] [Server thread/INFO]: [Magic] Loaded 16 crafting recipes
[10:32:35] [Server thread/INFO]: [Magic] LogBlock not found
[10:32:35] [Server thread/INFO]: [Magic] Integrating with Essentials for vanish detection
[10:32:35] [Server thread/INFO]: [Magic] Integrating with Essentials for Recall warps
[10:32:35] [Server thread/INFO]: [Magic] Essentials found, hooked up custom item handler
[10:32:35] [Server thread/INFO]: [Magic] Factions not found
[10:32:35] [Server thread/INFO]: [Magic] WorldGuard found, will respect build permissions for construction spells
[10:32:35] [Server thread/INFO]: [Magic] Multiverse-Core found, will respect PVP settings
[10:32:35] [Server thread/INFO]: [Magic] Towny not found, region protection and pvp checks will not be used.
[10:32:35] [Server thread/INFO]: [Magic] Lockette nor LockettePro found, will not integrate.
[10:32:35] [Server thread/INFO]: [Magic] GriefPrevention not found, claim protection will not be used.
[10:32:35] [Server thread/INFO]: [Magic] NoCheatPlus not found, will not integrate.
[10:32:35] [Server thread/INFO]: [Magic] dynmap found, integrating.
[10:32:35] [Server thread/INFO]: [Magic] Citizens not found, Magic trait unavailable.
[10:32:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: magic [10.8.11-cb6aa41]
[10:32:35] [Server thread/INFO]: [Magic] PlaceholderAPI integration enabled. Available placeholders:
[10:32:35] [Server thread/INFO]: [Magic] magic_path, magic_class, magic_wand, magic_spell, magic_mana, magic_mana_max, magic_sp, magic_spell_count
[10:32:35] [Server thread/INFO]: [Magic] All magic attributes also available with a magic_ prefix
[10:32:35] [Server thread/INFO]: [Magic] Add to messages/placeholders to add custom placeholders
[10:32:35] [Server thread/INFO]: [Magic] LightAPI not found, Light action will not work
[10:32:35] [Server thread/INFO]: [Magic] Loaded 0 arenas
[10:32:35] [Server thread/INFO]: [Magic] Registered additional attributes: [WISDOM, AGILITY, EXCAVATION, DEFENSE, ARCHERY, FORGING, ENDURANCE, REGENERATION, SORCERY, STRENGTH, FARMING, HEALING, FIGHTING, LUCK, FORAGING, FISHING, TOUGHNESS, ALCHEMY, HEALTH, ENCHANTING, MINING]
[10:32:35] [Server thread/INFO]: [Magic] Integrating with Lands using fake break/build events
[10:32:35] [Server thread/INFO]: [Magic] Finished loading configuration
[10:32:35] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'selff': Failed to load custom targeter SELFF
[10:32:35] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[10:32:35] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[10:32:35] [Server thread/INFO]: [Lands] Successfully added region provider: WorldGuard Type: SERVER
[10:32:35] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: DeadlyDisasters
[10:32:35] [Server thread/INFO]: [Lands] Nag author(s) of plugin DeadlyDisasters. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[10:32:35] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
[10:32:36] [Server thread/INFO]: Animotion Loading up all animotions...
[10:32:36] [Server thread/INFO]: Animotion All animotions have been loaded.
[10:32:36] [Server thread/INFO]: [ChestCommands] Found a new version: v4.0.4 (yours: v4.0.3)
[10:32:36] [Server thread/INFO]: [ChestCommands] Download the update on Bukkit Dev:
[10:32:36] [Server thread/INFO]: [ChestCommands] https://dev.bukkit.org/projects/chest-commands
[10:32:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[10:32:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[10:32:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: quests [1.6]
[10:32:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.6.5]
[10:32:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.3]
[10:32:36] [Server thread/INFO]: 5 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[10:32:36] [Server thread/INFO]: [TigerReports] Le plugin n'utilise pas BungeeCord.
[10:32:36] [Server thread/INFO]: Done (80.052s)! For help, type "help"
[10:32:36] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8370ms or 167 ticks behind
[10:32:36] [Server thread/INFO]: Timings Reset
[10:32:36] [Server thread/INFO]: [Magic] Finished loading data.
[10:32:36] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[10:32:36] [Server thread/INFO]: [FastLogin] Hooking into auth plugin: AuthMeHook
[10:32:36] [Server thread/INFO]: [FastLogin] BungeeCord setting detected. No auth plugin is required
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:36] [Server thread/INFO]: [Quests] Loaded 17 Quest(s), 7 Action(s), 1 Condition(s) and 818 Phrase(s)
[10:32:36] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[10:32:37] [Server thread/INFO]: [HolographicDisplays] Fatal error while enabling the plugin. Check previous logs for more information.
[10:32:37] [Craft Scheduler Thread - 7 - AlonsoLevels/INFO]: [AlonsoLevels] Checking for updates...
[10:32:37] [Craft Scheduler Thread - 7 - AlonsoLevels/INFO]: [AlonsoLevels] Plugin up-to-date! You have the latest version!
[10:32:37] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:32:37] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:32:37] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item escudoBRONCE
[10:32:37] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Items/escudoBRONCE.yml
[10:32:37] [Server thread/WARN]: [MythicMobs] --| Error Message: The shield color is configured incorrectly, must use a color from the Bukkit DyeColor ENUM.
[10:32:37] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item escudoMADERA
[10:32:37] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Items/escudoMADERA.yml
[10:32:37] [Server thread/WARN]: [MythicMobs] --| Error Message: The shield color is configured incorrectly, must use a color from the Bukkit DyeColor ENUM.
[10:32:37] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Vault economy into economy system. Name: EssentialsX Economy Banks: true
[10:32:37] [Server thread/INFO]: [Lands] [Integrations] Preventing Mythicmobs to spawn in areas where monster spawning is disabled.
[10:32:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lands [6.37.2]
[10:32:37] [Server thread/INFO]: [Lands] [Integrations] Successfully registered placeholders at PlaceholderAPI. More info: https://github.com/Angeschossen/Lands/wiki/PlaceholderAPI-Placeholders#placeholders
[10:32:37] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Dynmap into web-map system.
[10:32:37] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated FastAsyncWorldEdit. 
[10:32:37] [Server thread/INFO]: [Lands] [Integrations] Successfully loaded LuckPerms contexts. More information: https://github.com/Angeschossen/Lands/wiki/Luckperms-Context
[10:32:37] [Server thread/INFO]: [Lands] [Economy] Next economic tasks (taxes, upkeep, nations upkeep) execution is in 9 hora(s), 27 minuto(s). Interval: 1 día(s), 0 hora(s)
[10:32:37] [Craft Scheduler Thread - 8 - BetterRevive/INFO]: [BetterRevive] Checking for updates...
[10:32:37] [Craft Scheduler Thread - 8 - BetterRevive/INFO]: [BetterRevive] Plugin up-to-date! You have the latest version!
[10:32:39] [Server thread/INFO]: [AngelChest] ========================================================
[10:32:39] [Server thread/INFO]: [AngelChest] You are using the free version of AngelChest. There is
[10:32:39] [Server thread/INFO]: [AngelChest] also a premium version available, called AngelChestPlus.
[10:32:39] [Server thread/INFO]: [AngelChest] It includes TONS of new features and exclusive Discord
[10:32:39] [Server thread/INFO]: [AngelChest] support. The free version will still receive bugfixes,
[10:32:39] [Server thread/INFO]: [AngelChest] but there won't be ANY new features!
[10:32:39] [Server thread/INFO]: [AngelChest] If you like AngelChest, you will LOVE AngelChestPlus, so
[10:32:39] [Server thread/INFO]: [AngelChest] please consider upgrading! Thank you for using AngelChest.
[10:32:39] [Server thread/INFO]: [AngelChest] 
[10:32:39] [Server thread/INFO]: [AngelChest] https://www.spigotmc.org/resources/88214
[10:32:39] [Server thread/INFO]: [AngelChest] ========================================================
[10:32:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [Build 54a]
[10:32:39] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[10:32:39] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[10:32:41] [ForkJoinPool.commonPool-worker-5/INFO]: [Lands] You're using the latest version.
[10:33:06] [Server thread/INFO]: [AlonsoLevels] Leaderboard is disabled! Skipping..
[10:33:10] [Server thread/INFO]: Server Plugins (84):
[10:33:10] [Server thread/INFO]: Paper Plugins:
[10:33:10] [Server thread/INFO]:  - WolfyUtilities
[10:33:10] [Server thread/INFO]: Bukkit Plugins:
[10:33:10] [Server thread/INFO]:  - AdvancedAntiVPN, AdvancedBan, AlonsoLevels, AngelChest, *Animotion, AureliumSkills, AuthMe, *AWD, BetterFood, BetterInvisibility
[10:33:10] [Server thread/INFO]:  BetterRevive, BigDoors, BugReport, BungeeGuard, BuycraftX, Chatty, ChestCommands, Chunky, Citizens, CombatPlus
[10:33:10] [Server thread/INFO]:  CommandPanels, ComplexTurrets, ConditionalEvents, CustomCrafting, DeadlyDisasters, DecentHolograms, DiscordSRV, DivineDrop, DoorsReloaded, dynmap
[10:33:10] [Server thread/INFO]:  EasyCommandBlocker, *EasyWhitelist, eGlow, EpicCraftingsPlus, Essentials, FastAsyncWorldEdit, FastLogin, GSit, *HeroAction, HolographicDisplays
[10:33:10] [Server thread/INFO]:  Interactions, ItemEdit, ItemsAdder, JSEngine, Lands, LibsDisguises, LoneLibs, LuckPerms, Magic, MCPets
[10:33:10] [Server thread/INFO]:  MMOItems, ModelEngine, MoneyFromMobs, Multiverse-Core, MythicLib, MythicMobs, NBTAPI, NeoPerformance, PlaceholderAPI, PlayerKits2
[10:33:10] [Server thread/INFO]:  ProtocolLib, Quests, QuickShop, RealisticSeasons, Shopkeepers, SimplePortals, SkinsRestorer, sleep-most, SlimeInABukkit, spark
[10:33:10] [Server thread/INFO]:  SternalBoard, Stratos, StratosNG, SuperVanish, TAB, TerraformGenerator, TheSearch, TigerReports, UltimateAutoRestart, Vault
[10:33:10] [Server thread/INFO]:  Vulcan, WorldGuard, WorldGuardEvents
[10:34:37] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:34:37] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:36:37] [Craft Scheduler Thread - 36 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:36:37] [Craft Scheduler Thread - 36 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:37:24] [Server thread/INFO]: [BuycraftX] Command execution took 13.24ms to complete. This may indicate an issue with one of your server's plugins, which can cause lag.
[10:38:37] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:38:37] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:40:37] [Craft Scheduler Thread - 52 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:40:37] [Craft Scheduler Thread - 52 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:42:37] [Craft Scheduler Thread - 36 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:42:37] [Craft Scheduler Thread - 36 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:44:37] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:44:37] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:45:59] [Server thread/INFO]: [Magic] Server is shutting down, closing all wand inventories
[10:45:59] [Server thread/INFO]: Stopping the server
[10:45:59] [Server thread/INFO]: Stopping server
[10:45:59] [Server thread/INFO]: [MCPets] Disabling MCPets v4.0.3
[10:45:59] [Server thread/INFO]: -=-=-=-= MCPets disable =-=-=-=-
[10:45:59] [Server thread/INFO]:           See you soon
[10:45:59] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[10:45:59] [Server thread/INFO]: [Stratos] Disabling Stratos v1.15.10
[10:45:59] [Server thread/INFO]: [BetterInvisibility] Disabling BetterInvisibility v3.1
[10:45:59] [Server thread/INFO]: [BugReport] Disabling BugReport v0.6.2
[10:45:59] [Server thread/INFO]: [EasyCommandBlocker] Disabling EasyCommandBlocker v1.8.1
[10:45:59] [Server thread/INFO]: [EasyCommandBlocker] Has been disabled! Version: 1.8.1
[10:45:59] [Server thread/INFO]: [BigDoors] Disabling BigDoors vAlpha 0.1.8.48 (b1151)
[10:45:59] [Server thread/INFO]: [TerraformGenerator] Disabling TerraformGenerator v11.1.1
[10:45:59] [Server thread/INFO]: [MoneyFromMobs] Disabling MoneyFromMobs v4.71
[10:45:59] [Server thread/INFO]: [AlonsoLevels] Disabling AlonsoLevels v2.3.1-BETA
[10:45:59] [Server thread/INFO]: [AlonsoLevels] [MySQL] Forcing connection close..
[10:45:59] [Server thread/INFO]:  
[10:45:59] [Server thread/INFO]: [AlonsoLevels] Plugin has been disabled!
[10:45:59] [Server thread/INFO]: [AlonsoLevels] Thank you for using my plugin!
[10:45:59] [Server thread/INFO]:  
[10:45:59] [Server thread/INFO]: [UltimateAutoRestart] Disabling UltimateAutoRestart vBuild 54a
[10:45:59] [Server thread/INFO]: [EasyWhitelist] Disabling EasyWhitelist v1.0.2
[10:45:59] [Server thread/INFO]: [AngelChest] Disabling AngelChest v9.15.2
[10:45:59] [Server thread/INFO]: [NeoPerformance] Disabling NeoPerformance v1.14.4
[10:45:59] [Server thread/INFO]: [CombatPlus] Disabling CombatPlus v1.6.8
[10:45:59] [Server thread/INFO]: [ChestCommands] Disabling ChestCommands v4.0.3
[10:45:59] [Server thread/INFO]: [Chunky] Disabling Chunky v1.3.92
[10:45:59] [Server thread/INFO]: [Interactions] Disabling Interactions v1.35.3
[10:46:00] [Server thread/INFO]: [Interactions] Has been disabled! Version: 1.35.3
[10:46:00] [Server thread/INFO]: [DoorsReloaded] Disabling DoorsReloaded v1.3.1
[10:46:00] [Server thread/INFO]: [BetterFood] Disabling BetterFood v1.3.1
[10:46:00] [Server thread/INFO]: [SternalBoard] Disabling SternalBoard v2.2.5
[10:46:00] [Server thread/INFO]: [BetterRevive] Disabling BetterRevive v0.9.1-BETA
[10:46:00] [Server thread/INFO]:  
[10:46:00] [Server thread/INFO]: [BetterRevive] Plugin has been disabled!
[10:46:00] [Server thread/INFO]: [BetterRevive] Thank you for using my plugin!
[10:46:00] [Server thread/INFO]:  
[10:46:00] [Server thread/INFO]: [EpicCraftingsPlus] Disabling EpicCraftingsPlus v7.23.2
[10:46:00] [Server thread/INFO]: [EpicCraftings+] Has been disabled! Version: 7.23.2
[10:46:00] [Server thread/INFO]: [AWD] Disabling AWD v2.6.5
[10:46:00] [Server thread/INFO]: [AntiWorldDownloader] AWD has been disabled! (Version: 2.6.5)
[10:46:00] [Server thread/INFO]: [TigerReports] Disabling TigerReports v5.2.2
[10:46:00] [Server thread/INFO]: [Quests] Disabling Quests v4.8.3-b423
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion quests
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Quests was disabled.
[10:46:00] [Server thread/INFO]: [Quests] Saving Quester data...
[10:46:00] [Server thread/INFO]: [Quests] Closing storage...
[10:46:00] [Server thread/INFO]: [BungeeGuard] Disabling BungeeGuard v1.3-SNAPSHOT
[10:46:00] [Server thread/INFO]: [ComplexTurrets] Disabling ComplexTurrets v3.9.1
[10:46:00] [Server thread/INFO]: [ComplexTurret] Has been disabled! Version: 3.9.1
[10:46:00] [Server thread/INFO]: [Animotion] Disabling Animotion v1.0_i_patch3
[10:46:00] [Server thread/INFO]: [FastLogin] Disabling FastLogin v1.12-SNAPSHOT-e15ea9c
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion FastLogin
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin FastLogin was disabled.
[10:46:00] [Server thread/INFO]: [FastLogin] Safely shutting down scheduler. This could take up to one minute.
[10:46:00] [Server thread/INFO]: [eGlow] Disabling eGlow v3.2.6
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion eglow
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin eGlow was disabled.
[10:46:00] [Server thread/INFO]: [AdvancedBan] Disabling AdvancedBan v2.3.0
[10:46:00] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[10:46:00] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[10:46:00] [Server thread/INFO]: 
 
[]=====[Disabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: MySQL (external)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
[]================================[]
 
[10:46:00] [Server thread/INFO]: [PlayerKits2] Disabling PlayerKits2 v1.7.1
[10:46:00] [Server thread/INFO]: [PlayerKits²] Has been disabled! Version: 1.7.1
[10:46:00] [Server thread/INFO]: [QuickShop] Disabling QuickShop v5.1.2.5
[10:46:00] [Server thread/INFO]: [QuickShop] QuickShop is finishing remaining work, this may need a while...
[10:46:00] [Server thread/INFO]: [QuickShop] Please wait for the data to flush its data...
[10:46:00] [Server thread/INFO]: [HeroAction] Disabling HeroAction v4.0
[10:46:00] [Server thread/INFO]: [SlimeInABukkit] Disabling SlimeInABukkit v1.3.1
[10:46:00] [Server thread/INFO]: [SimplePortals] Disabling SimplePortals v1.7.4
[10:46:00] [Server thread/INFO]: [CustomCrafting] Disabling CustomCrafting v4.16.8.3
[10:46:00] [Server thread/INFO]: [BuycraftX] Disabling BuycraftX v12.0.8
[10:46:00] [Server thread/INFO]: [ConditionalEvents] Disabling ConditionalEvents v4.41.1
[10:46:00] [Server thread/INFO]: [ConditionalEvents] Has been disabled! Version: 4.41.1
[10:46:00] [Server thread/INFO]: [TheSearch] Disabling TheSearch v1.25.4
[10:46:00] [Server thread/INFO]: [TheSearch] Has been disabled! Version: 1.25.4
[10:46:00] [Server thread/INFO]: [AdvancedAntiVPN] Disabling AdvancedAntiVPN v2.21.5
[10:46:00] [Server thread/INFO]: [AdvancedAntiVPN] Closing any database connections...
[10:46:00] [Server thread/INFO]: [AdvancedAntiVPN] Done and disabled in 26.67ms
[10:46:00] [Server thread/INFO]: [AdvancedAntiVPN] If you liked the plugin, don't forget to give a ★★★★★ rating!
[10:46:00] [Server thread/INFO]: [AdvancedAntiVPN] Thank you and have a great day!
[10:46:00] [Server thread/INFO]: [ItemEdit] Disabling ItemEdit v3.1.0
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion itemedit
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin ItemEdit was disabled.
[10:46:00] [Server thread/INFO]: [sleep-most] Disabling sleep-most v5.3.0
[10:46:00] [Server thread/INFO]: [CommandPanels] Disabling CommandPanels v3.19.1.5
[10:46:00] [Server thread/INFO]: RockyHawk's CommandPanels Plugin Disabled, aww man.
[10:46:00] [Server thread/INFO]: [DivineDrop] Disabling DivineDrop v2.13
[10:46:00] [Server thread/INFO]: [Shopkeepers] Disabling Shopkeepers v2.18.0
[10:46:00] [Server thread/INFO]: [DeadlyDisasters] Disabling DeadlyDisasters v10.5
[10:46:00] [Server thread/INFO]: [StratosNG] Disabling StratosNG v1.2.6
[10:46:00] [Server thread/INFO]: [JSEngine] Disabling JSEngine v3.2.2
[10:46:00] [Server thread/INFO]: [spark] Disabling spark v1.10.34
[10:46:00] [Server thread/INFO]: [Magic] Disabling Magic v10.8.11-cb6aa41
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion magic
[10:46:00] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Magic was disabled.
[10:46:00] [Server thread/INFO]: [AuthMe] Disabling AuthMe v5.6.0-SNAPSHOT-b2604
[10:46:00] [Server thread/INFO]: [AuthMe] Waiting for 0 tasks to finish
[10:46:00] [Server thread/ERROR]: [AuthMe] [STDERR] [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Shutdown initiated...
[10:46:00] [Server thread/WARN]: Nag author(s): '[sgdc3, ljacqu, games647, Hex3l, krusic22]' of 'AuthMe v5.6.0-SNAPSHOT-b2604' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[10:46:00] [Server thread/ERROR]: [AuthMe] [STDERR] [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Shutdown completed.
[10:46:00] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0-SNAPSHOT-b2604 disabled!
[10:46:00] [Server thread/INFO]: [TAB] Disabling TAB v4.0.3
[10:46:00] [Server thread/INFO]: [TAB] Disabled in 0ms
[10:46:00] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.11.3
[10:46:00] [Server thread/INFO]: [WolfyUtilities] Disabling WolfyUtilities v4.16.12.1
[10:46:00] [Server thread/INFO]: [WolfyUtilities] Save stored Custom Items
[10:46:00] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v3.6.1-beta-r2
[10:46:00] [pool-78-thread-1/INFO]: [superelite] [Host] Stopped self-host webserver on port: 4114
[10:46:00] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.2
[10:46:00] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Saved linked accounts in 4ms
[10:46:00] [DiscordSRV - JDA Rate Limit/ERROR]: [DiscordSRV] [JDA] There was an I/O error while executing a REST request: null
[10:46:00] [pool-84-thread-1/WARN]: github.scarsz.discordsrv.dependencies.jda.api.exceptions.ErrorResponseException: -1: java.io.InterruptedIOException
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.RestActionImpl.complete(RestActionImpl.java:227)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.requests.RestAction.complete(RestAction.java:633)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.updateMessage(ChannelLoggingHandler.java:249)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.dumpStack(ChannelLoggingHandler.java:157)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.flush(ChannelLoggingHandler.java:136)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.lambda$schedule$0(ChannelLoggingHandler.java:55)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[10:46:00] [pool-84-thread-1/WARN]: Caused by: java.io.InterruptedIOException
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http2.Http2Stream.waitForIo(Http2Stream.java:641)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http2.Http2Stream.takeHeaders(Http2Stream.java:148)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http2.Http2Codec.readResponseHeaders(Http2Codec.java:137)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.java:101)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:45)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:94)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:125)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:264)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.RealCall.execute(RealCall.java:93)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.Requester.execute(Requester.java:201)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.Requester.execute(Requester.java:141)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.Requester.execute(Requester.java:124)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.ratelimit.BotRateLimiter$Bucket.run(BotRateLimiter.java:478)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
[10:46:00] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Shutdown completed in 249ms
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
[10:46:00] [pool-84-thread-1/WARN]:     ... 3 more
[10:46:00] [pool-84-thread-1/WARN]: Caused by: github.scarsz.discordsrv.dependencies.jda.api.exceptions.ContextException
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.exceptions.ContextException.here(ContextException.java:54)
[10:46:00] [Server thread/INFO]: [WorldGuardEvents] Disabling WorldGuardEvents v1.18.1
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.requests.Request.<init>(Request.java:71)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.requests.RestFuture.<init>(RestFuture.java:36)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.RestActionImpl.submit(RestActionImpl.java:209)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.RestActionImpl.complete(RestActionImpl.java:219)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.requests.RestAction.complete(RestAction.java:633)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.updateMessage(ChannelLoggingHandler.java:249)
[10:46:00] [Server thread/INFO]: [Lands] Disabling Lands v6.37.2
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.dumpStack(ChannelLoggingHandler.java:157)
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.flush(ChannelLoggingHandler.java:136)
[10:46:00] [Server thread/INFO]: [Lands] Closing storage.
[10:46:00] [pool-84-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.lambda$schedule$0(ChannelLoggingHandler.java:55)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305)
[10:46:00] [pool-84-thread-1/WARN]:     at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305)
[10:46:00] [pool-84-thread-1/WARN]:     ... 3 more
[10:46:00] [Server thread/INFO]: [RealisticSeasons] Disabling RealisticSeasons v10.6.0
[10:46:00] [Server thread/INFO]: [MMOItems] Disabling MMOItems v6.9.4
[10:46:00] [Server thread/INFO]: [Vulcan] Disabling Vulcan v2.7.7
[10:46:00] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR3.1.9
[10:46:00] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.27
[10:46:00] [Server thread/INFO]: [SuperVanish] Disabling SuperVanish v6.2.18
[10:46:00] [Server thread/INFO]: [AureliumSkills] Disabling AureliumSkills vBeta 1.3.23
[10:46:00] [Server thread/INFO]: [MythicLib] Disabling MythicLib v1.6.1
[10:46:00] [Server thread/INFO]: [GSit] Disabling GSit v1.5.0
[10:46:00] [Server thread/INFO]: [GSit] El plugin ha sido deshabilitado con éxito.
[10:46:00] [Server thread/INFO]: [dynmap] Disabling dynmap v3.7-beta-2-923
[10:46:00] [Server thread/INFO]: [dynmap] Unloaded 11 components.
[10:46:00] [Server thread/INFO]: [dynmap] Stopping map renderer...
[10:46:01] [Server thread/INFO]: [dynmap] Saved 104051 pending tile renders in world 'rpg4'
[10:46:01] [Server thread/INFO]: [dynmap] Disabled
[10:46:01] [Server thread/INFO]: [Essentials] Disabling Essentials v2.20.1
[10:46:01] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[10:46:01] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.4
[10:46:01] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.4.0-${CI_COMMIT_SHORT_SHA}
[10:46:01] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[10:46:01] [Server thread/INFO]: [MythicMobs] - 
[10:46:01] [Server thread/INFO]: [MythicMobs] - Unloading Mythic...
[10:46:01] [Server thread/INFO]: [MythicMobs] - 
[10:46:01] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[10:46:01] [Server thread/INFO]: [MythicMobs] - Spawners saved and unloaded...
[10:46:01] [Server thread/INFO]: [MythicMobs] - Mobs saved and unloaded...
[10:46:01] [Server thread/INFO]: [MythicMobs] - Variables saved...
[10:46:01] [Server thread/INFO]: [MythicMobs] - All active settings have been saved!
[10:46:01] [Server thread/INFO]: [MythicMobs] - Mythic has been unloaded!
[10:46:01] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[10:46:01] [Server thread/INFO]: [SkinsRestorer] Disabling SkinsRestorer v14.2.13
[10:46:01] [Server thread/INFO]: [Chatty] Disabling Chatty v2.19.14
[10:46:01] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.38
[10:46:01] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.1-b861
[10:46:01] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.9+5934e49
[10:46:01] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[10:46:01] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.1.1-SNAPSHOT-669
[10:46:01] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.4
[10:46:01] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.8.2-SNAPSHOT-582;470c75d
[10:46:01] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[10:46:01] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[10:46:01] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.102
[10:46:01] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[10:46:01] [Server thread/INFO]: [LuckPerms] Closing messaging service...
[10:46:01] [Server thread/INFO]: [LuckPerms] Closing storage...
[10:46:01] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Shutdown initiated...
[10:46:01] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Shutdown completed.
[10:46:01] [Server thread/INFO]: [LuckPerms] Goodbye!
[10:46:01] [Server thread/INFO]: Saving players
[10:46:02] [Server thread/INFO]: Saving worlds
[10:46:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[rpg4]'/minecraft:overworld
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'rpg4'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'rpg4'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'rpg4'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 73 entity chunks, 0 poi chunks in world 'rpg4' in 0.01s
[10:46:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (rpg4): All chunks are saved
[10:46:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[rpg4_nether]'/minecraft:the_nether
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'rpg4_nether'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'rpg4_nether'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'rpg4_nether'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 15 entity chunks, 0 poi chunks in world 'rpg4_nether' in 0.00s
[10:46:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[10:46:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[rpg4_the_end]'/minecraft:the_end
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'rpg4_the_end'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'rpg4_the_end'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'rpg4_the_end'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saved 35 block chunks, 10 entity chunks, 0 poi chunks in world 'rpg4_the_end' in 0.01s
[10:46:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[10:46:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[mazmora-B]'/minecraft:mazmora-b
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'mazmora-B'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'mazmora-B'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'mazmora-B'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 11 entity chunks, 0 poi chunks in world 'mazmora-B' in 0.00s
[10:46:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (mazmora-B): All chunks are saved
[10:46:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[rpg2]'/minecraft:rpg2
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'rpg2'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'rpg2'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'rpg2'
[10:46:02] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 44 entity chunks, 0 poi chunks in world 'rpg2' in 0.00s
[10:46:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (rpg2): All chunks are saved
[10:46:02] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[10:46:02] [Server thread/INFO]: Flushing Chunk IO
[10:46:02] [Server thread/INFO]: Closing Thread Pool
[10:46:02] [Server thread/INFO]: Closing Server