Paste #121274: DenizenMetaBot Auto-Repaste Of log From ffworn

Date: 2024/03/24 19:49:52 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


[19:40:11] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[19:40:13] [ServerMain/INFO]: Loaded 1174 recipes
[19:40:14] [ServerMain/INFO]: Loaded 1271 advancements
[19:40:14] [Server thread/INFO]: Starting minecraft server version 1.20.4
[19:40:14] [Server thread/INFO]: Loading properties
[19:40:14] [Server thread/INFO]: This server is running Paper version git-Paper-461 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: b600140)
[19:40:15] [Server thread/INFO]: Server Ping Player Sample Count: 12
[19:40:15] [Server thread/INFO]: Using 4 threads for Netty based IO
[19:40:15] [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
[19:40:15] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[19:40:15] [Server thread/INFO]: Default game type: SURVIVAL
[19:40:15] [Server thread/INFO]: Generating keypair
[19:40:15] [Server thread/INFO]: Starting Minecraft server on 80.208.221.225:17654
[19:40:15] [Server thread/INFO]: Using default channel type
[19:40:15] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[19:40:15] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[19:40:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\net\kyori\adventure-api\4.14.0\adventure-api-4.14.0.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\net\kyori\adventure-key\4.14.0\adventure-key-4.14.0.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\net\kyori\adventure-text-serializer-gson\4.14.0\adventure-text-serializer-gson-4.14.0.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\net\kyori\adventure-text-serializer-json\4.14.0\adventure-text-serializer-json-4.14.0.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.0\adventure-text-serializer-bungeecord-4.3.0.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\net\kyori\adventure-text-serializer-legacy\4.13.0\adventure-text-serializer-legacy-4.13.0.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 1 libraries... please wait
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\org\apache\httpcomponents\httpmime\4.5.14\httpmime-4.5.14.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\org\apache\httpcomponents\httpclient\4.5.14\httpclient-4.5.14.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\commons-logging\commons-logging\1.2\commons-logging-1.2.jar
[19:40:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\libraries\commons-codec\commons-codec\1.11\commons-codec-1.11.jar
[19:40:17] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[19:40:19] [Server thread/WARN]: Legacy plugin MineResetLite v0.4.7 does not specify an api-version.
[19:40:19] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[19:40:19] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[19:40:20] [Server thread/INFO]: [STDOUT] [me.JayMar921.CustomEnchantment.Feature.VersionChecker] [Custom Enchantments] Features from 1.17 was disabled for compatibility
[19:40:20] [Server thread/INFO]: [STDOUT] [me.JayMar921.CustomEnchantment.Feature.VersionChecker] [Custom Enchantments] Features from 1.18 was disabled for compatibility
[19:40:20] [Server thread/WARN]: Legacy plugin BeautyIndicator v1.11 does not specify an api-version.
[19:40:20] [Server thread/WARN]: Legacy plugin AlphaChest v1.17.0 does not specify an api-version.
[19:40:20] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.2
[19:40:21] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@1453125d]
[19:40:21] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[19:40:21] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[19:40:21] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[19:40:21] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.5.1-9aedaa15
[19:40:21] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[19:40:21] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[19:40:21] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0
[19:40:21] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.20.4) has not yet been tested! Proceed with caution.
[19:40:23] [Server thread/ERROR]:   [ProtocolLib] INTERNAL ERROR: Cannot load ProtocolLib.
  If this problem hasn't already been reported, please open a ticket
  at https://github.com/dmulloy2/ProtocolLib/issues with the following data:
  Stack Trace:
  java.lang.IllegalArgumentException: Unable to find a field that matches {modifiers=[required: 10000, banned: 1000], type={ type input instanceof interface java.util.Map }}
      at ProtocolLib.jar//com.comphenix.protocol.reflect.FuzzyReflection.getField(FuzzyReflection.java:352)
      at ProtocolLib.jar//com.comphenix.protocol.injector.packet.PacketRegistry.createNewRegister(PacketRegistry.java:188)
      at ProtocolLib.jar//com.comphenix.protocol.injector.packet.PacketRegistry.initialize(PacketRegistry.java:292)
      at ProtocolLib.jar//com.comphenix.protocol.injector.packet.PacketRegistry.getClientPacketTypes(PacketRegistry.java:327)
      at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.<init>(PacketFilterManager.java:120)
      at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterBuilder.build(PacketFilterBuilder.java:121)
      at ProtocolLib.jar//com.comphenix.protocol.ProtocolLib.onLoad(ProtocolLib.java:183)
      at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59)
      at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18)
      at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39)
      at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36)
      at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:507)
      at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:274)
      at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
      at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
      at java.base/java.lang.Thread.run(Thread.java:1623)
  Dump:
  Parameters: 
    [NULL]
  Sender:
    com.comphenix.protocol.ProtocolLib@66c38fb3[
      statistics=<null>
      packetTask=<null>
      tickCounter=0
      configExpectedMod=-1
      updater=com.comphenix.protocol.updater.SpigotUpdater@7393a758
      redirectHandler=<null>
      scheduler=com.comphenix.protocol.scheduler.DefaultScheduler@2b0f19fc
      commandProtocol=<null>
      commandPacket=<null>
      commandFilter=<null>
      packetLogging=<null>
      skipDisable=false
      isEnabled=false
      loader=io.papermc.paper.plugin.manager.DummyBukkitPluginLoader@1b972766
      server=CraftServer{serverName=Paper,serverVersion=git-Paper-461,minecraftVersion=1.20.4}
      file=plugins\ProtocolLib.jar
      description=org.bukkit.plugin.PluginDescriptionFile@3bd40276
      pluginMeta=org.bukkit.plugin.PluginDescriptionFile@3bd40276
      dataFolder=plugins\ProtocolLib
      classLoader=PluginClassLoader{plugin=ProtocolLib v5.1.0, pluginEnabled=false, url=plugins\ProtocolLib.jar}
      naggable=true
      newConfig=YamlConfiguration[path='', root='YamlConfiguration']
      configFile=plugins\ProtocolLib\config.yml
      logger=com.destroystokyo.paper.utils.PaperPluginLogger@78b813b5
      lifecycleEventManager=io.papermc.paper.plugin.lifecycle.event.PaperLifecycleEventManager@63647966
      allowsLifecycleRegistration=true
    ]
  Version:
    ProtocolLib v5.1.0
  Java Version:
    20.0.2
  Server:
    git-Paper-461 (MC: 1.20.4)

[19:40:23] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.6.1
[19:40:23] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-1.6.1.jar'
[19:40:23] [Server thread/INFO]: [MythicLib] Your server version is not compatible.
[19:40:23] [Server thread/WARN]: java.lang.ClassNotFoundException: io.lumine.mythic.lib.version.wrapper.VersionWrapper_1_20_R3
[19:40:23] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[19:40:23] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[19:40:23] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
[19:40:23] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[19:40:23] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:391)
[19:40:23] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:382)
[19:40:23] [Server thread/WARN]:     at MythicLib-1.6.1.jar//io.lumine.mythic.lib.version.ServerVersion.<init>(ServerVersion.java:15)
[19:40:23] [Server thread/WARN]:     at MythicLib-1.6.1.jar//io.lumine.mythic.lib.MythicLib.onLoad(MythicLib.java:97)
[19:40:23] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59)
[19:40:23] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18)
[19:40:23] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39)
[19:40:23] [Server thread/WARN]:     at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36)
[19:40:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:507)
[19:40:23] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:274)
[19:40:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[19:40:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[19:40:23] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1623)
[19:40:23] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3373)
[19:40:23] [Server thread/INFO]: [MMOCore] Loading server plugin MMOCore v1.12.1-SNAPSHOT
[19:40:23] [Server thread/INFO]: [MMOCore] Plugin file is called 'MMOCore-1.12.1-26.jar'
[19:40:23] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.45
[19:40:23] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+67-622c814
[19:40:23] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.4
[19:40:23] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.4
[19:40:23] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.9.4.jar'
[19:40:23] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[19:40:23] [Server thread/ERROR]: [MMOItems] Error initializing plugin 'MMOItems-6.9.4.jar' in folder 'plugins' (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at net.Indyuce.mmoitems.api.item.util.ConfigItems.<clinit>(ConfigItems.java:9) ~[MMOItems-6.9.4.jar:?]
    at net.Indyuce.mmoitems.manager.ConfigManager.loadTranslations(ConfigManager.java:107) ~[MMOItems-6.9.4.jar:?]
    at net.Indyuce.mmoitems.manager.ConfigManager.reload(ConfigManager.java:160) ~[MMOItems-6.9.4.jar:?]
    at net.Indyuce.mmoitems.manager.ConfigManager.<init>(ConfigManager.java:93) ~[MMOItems-6.9.4.jar:?]
    at net.Indyuce.mmoitems.MMOItems.onLoad(MMOItems.java:121) ~[MMOItems-6.9.4.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:507) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1623) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.lib.version.ServerVersion.isStrictlyHigher(int[])" because the return value of "io.lumine.mythic.lib.MythicLib.getVersion()" is null
    at io.lumine.mythic.lib.version.VersionMaterial.<init>(VersionMaterial.java:83) ~[MythicLib-1.6.1.jar:?]
    at io.lumine.mythic.lib.version.VersionMaterial.<init>(VersionMaterial.java:68) ~[MythicLib-1.6.1.jar:?]
    at io.lumine.mythic.lib.version.VersionMaterial.<clinit>(VersionMaterial.java:8) ~[MythicLib-1.6.1.jar:?]
    ... 14 more
[19:40:23] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.3-beta-13
[19:40:23] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.18.4
[19:40:23] [Server thread/INFO]: [SetHomes] Loading server plugin SetHomes v1.3.0
[19:40:23] [Server thread/INFO]: [PluginManager] Loading server plugin PluginManager v2.8.1
[19:40:23] [Server thread/INFO]: [Notepad] Loading server plugin Notepad v1.2
[19:40:23] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.0.0-SNAPSHOT
[19:40:23] [Server thread/INFO]: [MobsManager] Loading server plugin MobsManager v5.4.1
[19:40:23] [Server thread/INFO]: [MineResetLite] Loading server plugin MineResetLite v0.4.7
[19:40:23] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.2
[19:40:23] [Server thread/WARN]: [MCPets] : LuckPerms could not be found. Some features relating to giving permissions won't be available.
[19:40:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[19:40:23] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[19:40:23] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[19:40:23] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[19:40:23] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[19:40:23] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.228-SNAPSHOT
[19:40:23] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[19:40:23] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.2
[19:40:23] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[19:40:23] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[19:40:23] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[19:40:23] [Server thread/INFO]: [goBrush] Loading server plugin goBrush v3.8.0-70
[19:40:23] [Server thread/INFO]: [FastAsyncVoxelSniper] Loading server plugin FastAsyncVoxelSniper v3.0.0
[19:40:23] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+67-622c814
[19:40:23] [Server thread/INFO]: [EssentialsProtect] Loading server plugin EssentialsProtect v2.21.0-dev+67-622c814
[19:40:23] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+67-622c814
[19:40:23] [Server thread/INFO]: [EssentialsAntiBuild] Loading server plugin EssentialsAntiBuild v2.21.0-dev+67-622c814
[19:40:23] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12
[19:40:23] [Server thread/INFO]: [EpicBackpacks] Loading server plugin EpicBackpacks v1.3.16-r3
[19:40:23] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.5.3
[19:40:23] [Server thread/INFO]: [dynmap] Loading server plugin dynmap v3.7-beta-4-935
[19:40:23] [Server thread/INFO]: [dynmap] version=git-Paper-461 (MC: 1.20.4)
[19:40:23] [Server thread/INFO]: [dynmap] Mod Support API available
[19:40:23] [Server thread/INFO]: [DropEdit2] Loading server plugin DropEdit2 v1.1.70-SNAPSHOT
[19:40:23] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[19:40:23] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[19:40:23] [Server thread/INFO]: [DamageIndicator] Loading server plugin DamageIndicator v2.0.0
[19:40:23] [Server thread/INFO]: [CustomEnchantments] Loading server plugin CustomEnchantments v2.1.7e
[19:40:23] [Server thread/INFO]: [BeautyIndicator] Loading server plugin BeautyIndicator v1.11
[19:40:23] [Server thread/INFO]: [AutoPickup] Loading server plugin AutoPickup v5.4.0
[19:40:23] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.4
[19:40:23] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[19:40:23] [Server thread/INFO]: [Arceon] Loading server plugin Arceon v0.4.4_1.16+
[19:40:23] [Server thread/INFO]: [AlphaChest] Loading server plugin AlphaChest v1.17.0
[19:40:23] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[19:40:23] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.2
[19:40:23] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[19:40:23] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[19:40:23] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[19:40:23] [Thread-5/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[19:40:23] [Thread-5/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.12.2' Newest Version: 2.12.3'
[19:40:23] [Thread-5/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)!
[19:40:23] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[19:40:24] [Server thread/WARN]: 
**********************************************
** This FastAsyncWorldEdit version does not fully support your version of Bukkit.
** You can fix this by:
** - Updating your server version (Check /version to see how many versions you are behind)
** - Updating FAWE
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**********************************************

[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=0]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=1]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=2]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=3]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=4]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=5]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=6]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=7]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=8]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=9]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=10]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=11]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=12]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=13]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=14]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=15]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=north]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=south]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=west]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=east]. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown block: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this block.
[19:40:24] [Server thread/ERROR]: Unknown item: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this item.
[19:40:24] [Server thread/ERROR]: Unknown item: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this item.
[19:40:24] [Server thread/ERROR]: Unknown item: minecraft:sign. Neither the DataFixer nor defaulting worked to recognize this item.
[19:40:24] [Server thread/ERROR]: Unknown item: minecraft:rose_red. Neither the DataFixer nor defaulting worked to recognize this item.
[19:40:24] [Server thread/ERROR]: Unknown item: minecraft:cactus_green. Neither the DataFixer nor defaulting worked to recognize this item.
[19:40:24] [Server thread/ERROR]: Unknown item: minecraft:dandelion_yellow. Neither the DataFixer nor defaulting worked to recognize this item.
[19:40:24] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[19:40:24] [Server thread/ERROR]: ******************************************************
[19:40:24] [Server thread/ERROR]: *** ProtocolLib does not support plugin reloaders! ***
[19:40:24] [Server thread/ERROR]: *** Please use the built-in reload command!        ***
[19:40:24] [Server thread/ERROR]: ******************************************************
[19:40:24] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.1.0
[19:40:24] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.45
[19:40:24] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.4
[19:40:25] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[19:40:25] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[19:40:25] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[19:40:25] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[19:40:25] [Server thread/INFO]: Preparing level "world"
[19:40:25] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] You are using a snapshot or a custom version of FAWE. This is not an official build distributed via https://www.spigotmc.org/resources/13932/
[19:40:25] [Server thread/WARN]: Failed to load biomes via adapter (not present). Will load via bukkit
[19:40:25] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[19:40:25] [Server thread/INFO]: Time elapsed: 155 ms
[19:40:25] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[19:40:25] [Server thread/INFO]: Time elapsed: 28 ms
[19:40:25] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[19:40:25] [Server thread/INFO]: Time elapsed: 26 ms
[19:40:25] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[19:40:26] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[19:40:26] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[19:40:26] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[19:40:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[19:40:26] [Server thread/INFO]: [WorldGuard] Loading region data...
[19:40:27] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[19:40:27] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[19:40:27] [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.
[19:40:27] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[19:40:27] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[19:40:27] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[19:40:27] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[19:40:27] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: evv2
[19:40:27] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:27] [Server thread/INFO]: Preparing start region for dimension minecraft:best31
[19:40:29] [Server thread/INFO]: Time elapsed: 1986 ms
[19:40:29] [Server thread/INFO]: [WorldGuard] (best31) TNT ignition is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (best31) Lighters are PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (best31) Lava fire is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (best31) Fire spread is UNRESTRICTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'best31'
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Barn
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/INFO]: Preparing start region for dimension minecraft:project5
[19:40:29] [Server thread/INFO]: Time elapsed: 30 ms
[19:40:29] [Server thread/INFO]: [WorldGuard] (project5) TNT ignition is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (project5) Lighters are PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (project5) Lava fire is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (project5) Fire spread is UNRESTRICTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'project5'
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: sipi2
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: hikayeci
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Elven
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/INFO]: Preparing start region for dimension minecraft:best
[19:40:29] [Server thread/INFO]: Time elapsed: 21 ms
[19:40:29] [Server thread/INFO]: [WorldGuard] (best) TNT ignition is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (best) Lighters are PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (best) Lava fire is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (best) Fire spread is UNRESTRICTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'best'
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Northern
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/INFO]: Preparing start region for dimension minecraft:flat1
[19:40:29] [Server thread/INFO]: Time elapsed: 20 ms
[19:40:29] [Server thread/INFO]: [WorldGuard] (flat1) TNT ignition is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (flat1) Lighters are PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (flat1) Lava fire is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (flat1) Fire spread is UNRESTRICTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flat1'
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: houses
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: sakuraspawn
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: insan
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/INFO]: Preparing start region for dimension minecraft:flatroom
[19:40:29] [Server thread/INFO]: Time elapsed: 14 ms
[19:40:29] [Server thread/INFO]: [WorldGuard] (flatroom) TNT ignition is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (flatroom) Lighters are PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (flatroom) Lava fire is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (flatroom) Fire spread is UNRESTRICTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flatroom'
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: evv
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/INFO]: Preparing start region for dimension minecraft:deneme1
[19:40:29] [Server thread/INFO]: Time elapsed: 44 ms
[19:40:29] [Server thread/INFO]: [WorldGuard] (deneme1) TNT ignition is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (deneme1) Lighters are PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (deneme1) Lava fire is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (deneme1) Fire spread is UNRESTRICTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'deneme1'
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: elven_mansion
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: glass_fish
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: es
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: iland
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Okyanus
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: digsite
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: snow
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: ElvenHouse1
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: medihewal
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: SOT
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Jade
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Desert
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: hypixel_net
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/INFO]: Preparing start region for dimension minecraft:blankmap
[19:40:29] [Server thread/INFO]: Time elapsed: 34 ms
[19:40:29] [Server thread/INFO]: [WorldGuard] (BlankMap) TNT ignition is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (BlankMap) Lighters are PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (BlankMap) Lava fire is PERMITTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] (BlankMap) Fire spread is UNRESTRICTED.
[19:40:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'BlankMap'
[19:40:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Greek
[19:40:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:40:29] [Server thread/INFO]: [Multiverse-Core] 10 - World(s) loaded.
[19:40:30] [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.
[19:40:30] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[19:40:30] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[19:40:30] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[19:40:30] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.5.1-9aedaa15
[19:40:31] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.4)...
[19:40:31] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[19:40:32] [Server thread/INFO]: [MythicMobs] Mythic mcMMO Support has been enabled!
[19:40:32] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[19:40:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[19:40:32] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[19:40:32] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[19:40:32] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[19:40:32] [Server thread/INFO]: [MythicMobs] Base directory C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\SavedData
[19:40:32] [Server thread/INFO]: [MythicMobs] Module directory C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\SavedData\worlds
[19:40:35] [Server thread/INFO]: [MythicMobs] Loading Packs...
[19:40:36] [Server thread/INFO]: [MythicMobs] Loading Items...
[19:40:36] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[19:40:36] [Server thread/INFO]: [MythicMobs] Loading Skills...
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:36] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:37] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\stats.yml
[19:40:38] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[19:40:38] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[19:40:38] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[19:40:38] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Skill: demon_reaper_c_jump_slash_start | File: C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\Skills\demon_reaper_skills.yml
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill demon_reaper_c_right_upper
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{s=demon_reaper_c_right_slash,demon_reaper_c_right_upper}
[19:40:38] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Skill: demon_reaper_c_left_slash_spin | File: C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\Skills\demon_reaper_skills.yml
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill demon_reaper_c_left_slash_spin0.2
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{s=demon_reaper_c_right_slash<&csp>0.3,demon_reaper_c_right_updder<&csp>0.2,demon_reaper_c_right_slash_end<&csp>0.3,demon_reaper_c_left_slash_spin0.2}
[19:40:38] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow' is not supported by this version of MythicMobs.
[19:40:38] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[19:40:38] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{amount=1;radius=1}
[19:40:38] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[19:40:38] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{amount=1;radius=0}
[19:40:38] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Mob: Desert_Guardian | File: C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\Mobs\Desert_Guardian_Mobs.yml
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill CancelDamageEvent
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=CancelDamageEvent;sync=true}
[19:40:38] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Mob: ice_bruiser | File: C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\Mobs\ice_bruiser_mob.yml
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill ice_bruiser_death
[19:40:38] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=ice_bruiser_death}
[19:40:38] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=64}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[19:40:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 244 mobs.
[19:40:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[19:40:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[19:40:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1269 skills.
[19:40:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[19:40:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 205 mythic items.
[19:40:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 drop tables.
[19:40:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 48 mob spawners.
[19:40:38] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[19:40:38] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[19:40:38] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.5.1 ( build 9aedaa15 ) has been successfully loaded!
[19:40:38] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[19:40:38] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[19:40:38] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.6.1
[19:40:38] [Server thread/ERROR]: Error occurred while enabling MythicLib v1.6.1 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at io.lumine.mythic.lib.MythicLib.onEnable(MythicLib.java:129) ~[MythicLib-1.6.1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1623) ~[?:?]
Caused by: java.lang.RuntimeException: [LightInjector] Cannot find field! (1st net.minecraft.network.NetworkManager in net.minecraft.server.network.PlayerConnection)
    at io.lumine.mythic.lib.util.network.LightInjector.getField(LightInjector.java:572) ~[MythicLib-1.6.1.jar:?]
    at io.lumine.mythic.lib.util.network.LightInjector.<clinit>(LightInjector.java:78) ~[MythicLib-1.6.1.jar:?]
    ... 13 more
[19:40:38] [Server thread/INFO]: [MythicLib] Disabling MythicLib v1.6.1
[19:40:38] [Server thread/ERROR]: Error occurred while disabling MythicLib v1.6.1
java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.lib.glow.GlowModule.disable()" because "this.glowModule" is null
    at io.lumine.mythic.lib.MythicLib.onDisable(MythicLib.java:284) ~[MythicLib-1.6.1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:290) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:223) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1623) ~[?:?]
[19:40:38] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3373)
[19:40:38] [Server thread/INFO]: [Citizens] Loading external libraries
[19:40:39] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[19:40:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[19:40:39] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[19:40:39] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.12.1-SNAPSHOT
[19:40:39] [Server thread/ERROR]: Error occurred while enabling MMOCore v1.12.1-SNAPSHOT (Is it up to date?)
java.lang.NoClassDefFoundError: io/lumine/mythic/lib/version/SpigotPlugin
    at net.Indyuce.mmocore.MMOCore.onEnable(MMOCore.java:143) ~[MMOCore-1.12.1-26.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1623) ~[?:?]
Caused by: java.lang.ClassNotFoundException: io.lumine.mythic.lib.version.SpigotPlugin
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 13 more
[19:40:39] [Server thread/INFO]: [MMOCore] Disabling MMOCore v1.12.1-SNAPSHOT
[19:40:39] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+67-622c814
[19:40:40] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[19:40:40] [Server thread/INFO]: [Essentials] No kits found to migrate.
[19:40:40] [Server thread/INFO]: [Essentials] Loaded 39095 items from items.json.
[19:40:40] [Server thread/INFO]: [Essentials] Using locale en_US
[19:40:40] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[19:40:40] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[19:40:40] [Server thread/INFO]: [Essentials] Using superperms-based permissions.
[19:40:40] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.4
[19:40:41] [Server thread/ERROR]: Error occurred while enabling MMOItems v6.9.4 (Is it up to date?)
java.lang.NoClassDefFoundError: io/lumine/mythic/lib/version/SpigotPlugin
    at net.Indyuce.mmoitems.MMOItems.onEnable(MMOItems.java:139) ~[MMOItems-6.9.4.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1623) ~[?:?]
Caused by: java.lang.ClassNotFoundException: io.lumine.mythic.lib.version.SpigotPlugin
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 13 more
[19:40:41] [Server thread/INFO]: [MMOItems] Disabling MMOItems v6.9.4
[19:40:41] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.3-beta-13
[19:40:41] [Server thread/ERROR]: Error occurred while enabling ItemsAdder v3.6.3-beta-13 (Is it up to date?)
java.lang.NoClassDefFoundError: com/comphenix/protocol/ProtocolLibrary
    at ia.m.iW.P(SourceFile:697) ~[ItemsAdder_3.6.3-beta-13.jar:?]
    at ia.m.iZ.b(SourceFile:199) ~[ItemsAdder_3.6.3-beta-13.jar:?]
    at dev.lone.itemsadder.Main.onEnable(SourceFile:216) ~[ItemsAdder_3.6.3-beta-13.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1623) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.comphenix.protocol.ProtocolLibrary
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 15 more
[19:40:41] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v3.6.3-beta-13
[19:40:41] [Server thread/ERROR]: Error occurred while disabling ItemsAdder v3.6.3-beta-13
java.lang.NoClassDefFoundError: com/comphenix/protocol/ProtocolLibrary
    at dev.lone.itemsadder.Main.onDisable(SourceFile:678) ~[ItemsAdder_3.6.3-beta-13.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:290) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:223) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1623) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.comphenix.protocol.ProtocolLibrary
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 16 more
[19:40:41] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.18.4
[19:40:41] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[19:40:41] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[19:40:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.18.4]
[19:40:41] [Server thread/INFO]: [SetHomes] Enabling SetHomes v1.3.0
[19:40:41] [Server thread/INFO]: [SetHomes] Luck perms was not found! Reverting to vault...
[19:40:41] [Server thread/INFO]: [SetHomes] Vault was not found.
[19:40:41] [Server thread/WARN]: [SetHomes] Could not connect to a permissions plugin! Config setting "max-homes" will be ignored!
[19:40:41] [Server thread/INFO]: [PluginManager] Enabling PluginManager v2.8.1
[19:40:41] [Server thread/INFO]: [Notepad] Enabling Notepad v1.2
[19:40:41] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.0.0-SNAPSHOT
[19:40:41] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[19:40:41] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[19:40:41] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[19:40:41] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[19:40:43] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 67202 heads!
[19:40:43] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[19:40:43] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] You are using an outdated version!
[19:40:43] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] Latest version: 4.19.3. You are on version: 4.18.4.
[19:40:43] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] Update here: https://www.spigotmc.org/resources/head-database.14280/
[19:40:46] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[19:40:46] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[19:40:46] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[19:40:46] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.0.0 has been successfully loaded!
[19:40:46] [Server thread/INFO]: [MobsManager] Enabling MobsManager v5.4.1
[19:40:47] [Server thread/INFO]: [MineResetLite] Enabling MineResetLite v0.4.7*
[19:40:47] [Server thread/INFO]: [MineResetLite] MRL is managed and developed by Boomclaw under the Apache 2.0 license.
[19:40:47] [Server thread/INFO]: [MineResetLite] For any issues or suggestions, use the Spigot discussion thread. Do not PM any of the developers.
[19:40:47] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.2
[19:40:47] [Server thread/INFO]: [MCPets] : Language file reloaded.
[19:40:47] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[19:40:47] [Server thread/INFO]: Loading pets... 
[19:40:47] [Server thread/INFO]:   - AC_Pet_Elder_Ent loaded succesfully.
[19:40:47] [Server thread/INFO]:   - AA_Pet_Ent loaded succesfully.
[19:40:47] [Server thread/INFO]:   - BD_Pet_Nether_And_Ender loaded succesfully.
[19:40:47] [Server thread/INFO]:   - BA_Pet_Sun_And_Moon loaded succesfully.
[19:40:47] [Server thread/INFO]:   - AB_Pet_Undead_Ent loaded succesfully.
[19:40:47] [Server thread/INFO]:   - BB_Pet_Water_And_Fire loaded succesfully.
[19:40:47] [Server thread/INFO]:   - BC_Pet_Yin_And_Yang loaded succesfully.
[19:40:47] [Server thread/INFO]:   - CB_Pet_Angel_Slime loaded succesfully.
[19:40:47] [Server thread/INFO]:   - CC_Pet_Archangel_Slime loaded succesfully.
[19:40:47] [Server thread/INFO]:   - CF_Pet_Ice_Emperor_Penguin loaded succesfully.
[19:40:47] [Server thread/INFO]:   - CE_Pet_Ice_Penguin loaded succesfully.
[19:40:47] [Server thread/INFO]:   - CD_Pet_Penguin loaded succesfully.
[19:40:47] [Server thread/INFO]:   - CA_Pet_Slime loaded succesfully.
[19:40:47] [Server thread/INFO]:   - DE_Pet_Assassin loaded succesfully.
[19:40:47] [Server thread/INFO]:   - DB_Pet_Dark_Knight loaded succesfully.
[19:40:47] [Server thread/INFO]:   - DD_Pet_Dragon_Warrior loaded succesfully.
[19:40:47] [Server thread/INFO]:   - DF_Pet_Martial_Artist loaded succesfully.
[19:40:47] [Server thread/INFO]:   - DG_Pet_Ninja_Samurai loaded succesfully.
[19:40:47] [Server thread/INFO]:   - DC_Pet_Paladin loaded succesfully.
[19:40:47] [Server thread/INFO]:   - DH_Pet_Reaper loaded succesfully.
[19:40:47] [Server thread/INFO]:   - DA_Pet_Warrior loaded succesfully.
[19:40:47] [Server thread/INFO]:   - bs_vm_armadillo loaded succesfully.
[19:40:47] [Server thread/INFO]:   - bs_vm_crab loaded succesfully.
[19:40:47] [Server thread/INFO]:   - bs_vm_penguin loaded succesfully.
[19:40:47] [Server thread/INFO]:   - Celestial_Thunderlord_Mount loaded succesfully.
[19:40:47] [Server thread/INFO]:   - Flarewing_Dragon_Mount loaded succesfully.
[19:40:47] [Server thread/INFO]:   - Skywhisper_Wyvern_Mount loaded succesfully.
[19:40:47] [Server thread/INFO]:   - Terravore_Drake_Mount loaded succesfully.
[19:40:47] [Server thread/INFO]:   - Gift_Pet loaded succesfully.
[19:40:47] [Server thread/INFO]:   - lrd_floppy_bunny loaded succesfully.
[19:40:47] [Server thread/INFO]:   - lrd_fluffy_sheep loaded succesfully.
[19:40:47] [Server thread/INFO]:   - lrd_fuzzy_bat loaded succesfully.
[19:40:47] [Server thread/INFO]:   - lrd_happy_cow loaded succesfully.
[19:40:47] [Server thread/INFO]:   - lrd_king_jelly loaded succesfully.
[19:40:47] [Server thread/INFO]:   - lrd_miner_mole loaded succesfully.
[19:40:47] [Server thread/INFO]:   - lrd_sleepy_froggie loaded succesfully.
[19:40:47] [Server thread/INFO]:   - nm_cassowary_baby loaded succesfully.
[19:40:47] [Server thread/INFO]:   - Nocsy_Drakonin-Fairy loaded succesfully.
[19:40:47] [Server thread/INFO]:   - Nocsy_Drakonin-Fairy_Baby loaded succesfully.
[19:40:47] [Server thread/INFO]:   - Otter loaded succesfully.
[19:40:47] [Server thread/INFO]:   * nm_cassowary_baby could not be loaded: another pet with the same ID already exists.
[19:40:47] [Server thread/INFO]:   - Orc_Boar loaded succesfully.
[19:40:47] [Server thread/INFO]:   - Toffy_Fall_Dragon_Adult loaded succesfully.
[19:40:47] [Server thread/INFO]: [MCPets] : 42 pets registered successfully !
[19:40:47] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[19:40:48] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[19:40:48] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[19:40:48] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[19:40:48] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[19:40:48] [Server thread/INFO]:       Plugin made by Nocsy
[19:40:48] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[19:40:48] [Server thread/INFO]: -=- Launching Flags -=-
[19:40:48] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[19:40:48] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[19:40:48] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[19:40:48] [Server thread/INFO]: 3 flags launched.
[19:40:48] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.228-SNAPSHOT
[19:40:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[19:40:49] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.2
[19:40:49] [Server thread/INFO]: [NBTAPI] Adding listeners...
[19:40:49] [Server thread/INFO]: [NBTAPI] Checking bindings...
[19:40:49] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[19:40:49] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[19:40:49] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[19:40:50] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[19:40:50] [Server thread/INFO]: [goBrush] Enabling goBrush v3.8.0-70
[19:40:50] [Server thread/INFO]: [FastAsyncVoxelSniper] Enabling FastAsyncVoxelSniper v3.0.0
[19:40:51] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+67-622c814
[19:40:51] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[19:40:51] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.21.0-dev+67-622c814
[19:40:51] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[19:40:51] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[19:40:51] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+67-622c814
[19:40:51] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[19:40:51] [Server thread/INFO]: [EssentialsAntiBuild] Enabling EssentialsAntiBuild v2.21.0-dev+67-622c814
[19:40:51] [Server thread/INFO]: [EssentialsAntiBuild] Starting Metrics. Opt-out using the global bStats config.
[19:40:51] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12
[19:40:51] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[19:40:51] [Server thread/INFO]: [EpicRename] Version: 3.12 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[19:40:51] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[19:40:51] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[19:40:51] [Server thread/INFO]: [EpicRename] Vault not found! If you would like to use economy features download Vault at: http://dev.bukkit.org/bukkit-plugins/vault/
[19:40:51] [Server thread/INFO]: [EpicRename] Disabling support for economy features.
[19:40:51] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[19:40:51] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Enabling EpicBackpacks v1.3.16-r3
[19:40:51] [Server thread/INFO]: [EpicBackpacks] [STDOUT] [Spigotunlocked.com] - COSMO
[19:40:51] [Server thread/WARN]: Nag author(s): '[LoneDev]' of 'EpicBackpacks v1.3.16-r3' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[19:40:51] [Server thread/INFO]: 
[19:40:51] [Server thread/INFO]: -=[ EpicBackPacks ]=-
[19:40:51] [Server thread/INFO]: 
[19:40:51] [Server thread/INFO]: Version: 1.3.16-r3
[19:40:51] [Server thread/INFO]: Server version: v1_20_R3
[19:40:51] [Server thread/INFO]: 
[19:40:51] [Server thread/INFO]: 
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: example_1
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: example_2
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: example_3
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: ender
[19:40:51] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: brown
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: red
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: yellow
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: purple
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: pink
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: orange
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: green
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: blue
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: strange
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: chest
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: wood
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: stone
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: redstone
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpack: minerals
[19:40:51] [Server thread/INFO]: [EpicBackpacks] Loaded backpacks correctly
[19:40:51] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.5.3
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file.
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 section configs from /sections/
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 shop configs from /shops/
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Updating Shop settings...
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.20.4...
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Failed to load default economy provider with reason 'Could not find Vault', trying to automatically find supported economy provider
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Failed to find economy plugin, using exp points as default economy, initializing...
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully enabled EXP points economy
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 17 shop sections.
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider set to AUTO in config
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Failed to automatically find compatible spawner provider, using default...
[19:40:52] [Server thread/ERROR]: [EconomyShopGUI-Premium] Failed to register events for class me.gypopo.economyshopgui.providers.items.ItemsAdderHook because dev/lone/itemsadder/api/Events/ItemsAdderFirstLoadEvent does not exist.
[19:40:52] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Providers not enabled yet, waiting...
[19:40:52] [Server thread/INFO]: [dynmap] Enabling dynmap v3.7-beta-4-935
[19:40:52] [Server thread/INFO]: [dynmap] Added 20 custom biome mappings
[19:40:52] [Server thread/INFO]: [dynmap] Using Bukkit Permissions (superperms) for access control
[19:40:52] [Server thread/INFO]: [dynmap] Web interface permissions only available for online users
[19:40:52] [Server thread/INFO]: [dynmap] Mod Support processing completed
[19:40:54] [Server thread/INFO]: [dynmap] Loaded 27 shaders.
[19:40:54] [Server thread/INFO]: [dynmap] Loaded 83 perspectives.
[19:40:54] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[19:40:54] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[19:40:54] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[19:40:55] [Server thread/INFO]: [dynmap] Web server started on address 80.208.221.225:17544
[19:40:55] [Server thread/INFO]: [dynmap] version 3.7-beta-4-935 is enabled - core version 3.7-beta-4-935
[19:40:55] [Server thread/INFO]: [dynmap] For support, visit our Discord at https://discord.gg/s3rd5qn
[19:40:55] [Server thread/INFO]: [dynmap] For news, visit https://reddit.com/r/Dynmap or follow https://universeodon.com/@dynmap
[19:40:55] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[19:40:55] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'world'.
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_nether'.
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_the_end'.
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'best31'.
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'project5'.
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'best'.
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'flat1'.
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'flatroom'.
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'deneme1'.
[19:40:55] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'BlankMap'.
[19:40:55] [Server thread/INFO]: [dynmap] Enabled
[19:40:55] [Server thread/INFO]: [DropEdit2] Enabling DropEdit2 v1.1.70-SNAPSHOT
[19:40:55] [Server thread/INFO]: [DropEdit2] Using language file en.yml!
[19:40:55] [Server thread/INFO]: [DropEdit2] - 4 Mob configurations
[19:40:55] [Server thread/INFO]: [DropEdit2] - 2 Block configurations
[19:40:55] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[19:40:55] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[19:40:55] [Server thread/INFO]: [DeluxeMenus] 3 GUI menus loaded!
[19:40:55] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[19:40:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.13.7-Release]
[19:40:55] [Server thread/INFO]: [DamageIndicator] Enabling DamageIndicator v2.0.0
[19:40:55] [Server thread/INFO]: [DamageIndicator] Using server version accessor for v1_20_R3
[19:40:55] [Server thread/INFO]: [CustomEnchantments] Enabling CustomEnchantments v2.1.7e
[19:40:55] [Server thread/INFO]: [CustomEnchantments]  Supports PvPManager Plugin
[19:40:55] [Server thread/INFO]: [CustomEnchantments] World Guard Implemented
[19:40:55] [Server thread/INFO]: [CustomEnchantments] WorldGuard hooked
[19:40:55] [Server thread/INFO]: [CustomEnchantments] Loading language pack [ENGLISH]
[19:40:55] [Server thread/INFO]: [CustomEnchantments] Loading Runnables
[19:40:55] [Server thread/ERROR]: Error occurred while enabling CustomEnchantments v2.1.7e (Is it up to date?)
java.lang.NoSuchMethodError: 'void org.bukkit.enchantments.Enchantment.<init>(org.bukkit.NamespacedKey)'
    at me.JayMar921.CustomEnchantment.wrapper.Enchant_wrapper.<init>(Enchant_wrapper.java:15) ~[CustomEnchants.jar:?]
    at me.JayMar921.CustomEnchantment.enchantments.Grimoire.<clinit>(Grimoire.java:14) ~[CustomEnchants.jar:?]
    at me.JayMar921.CustomEnchantment.CustomCrafting.ultimateGrimoire(CustomCrafting.java:34) ~[CustomEnchants.jar:?]
    at me.JayMar921.CustomEnchantment.CustomEnchantmentMain.registerCustomCrafting(CustomEnchantmentMain.java:519) ~[CustomEnchants.jar:?]
    at me.JayMar921.CustomEnchantment.CustomEnchantmentMain.onEnable(CustomEnchantmentMain.java:365) ~[CustomEnchants.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1623) ~[?:?]
[19:40:55] [Server thread/INFO]: [CustomEnchantments] Disabling CustomEnchantments v2.1.7e
[19:40:55] [Server thread/ERROR]: Error occurred while disabling CustomEnchantments v2.1.7e
java.lang.NullPointerException: Cannot invoke "me.JayMar921.CustomEnchantment.CustomEnchants.unRegister()" because "this.CE" is null
    at me.JayMar921.CustomEnchantment.CustomEnchantmentMain.onDisable(CustomEnchantmentMain.java:508) ~[CustomEnchants.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:290) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:223) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1623) ~[?:?]
[19:40:55] [Server thread/INFO]: [BeautyIndicator] Enabling BeautyIndicator v1.11*
[19:40:55] [Server thread/INFO]: [BeautyIndicator] Plugin successfully enabled!
[19:40:55] [Server thread/INFO]: [BeautyIndicator] Spigot page: https://www.spigotmc.org/resources/.57546/
[19:40:55] [Server thread/INFO]: [BeautyIndicator] Author: Rixafy [https://rixafy.pro]
[19:40:55] [Server thread/INFO]: [AutoPickup] Enabling AutoPickup v5.4.0
[19:40:55] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[19:40:55] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[19:40:55] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[19:40:55] [Server thread/INFO]: [Arceon] Enabling Arceon v0.4.4_1.16+
[19:40:55] [Server thread/INFO]: [Arceon] Arceon loading...
[19:40:55] [Server thread/INFO]: [Arceon] Loading config...
[19:40:56] [Server thread/INFO]: [Arceon] Loaded 11 fonts!
[19:40:56] [Server thread/INFO]: [AlphaChest] Enabling AlphaChest v1.17.0*
[19:40:56] [Server thread/WARN]: [AlphaChest] Couldn't load chest file: 54536412-a9ae-3c1a-b2de-4e535ed1a156.chest.yml
[19:40:56] [Server thread/INFO]: [AlphaChest] loaded 2 chests
[19:40:56] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[19:40:56] [Server thread/INFO]: 0 placeholder hook(s) registered!
[19:40:56] [Server thread/INFO]: Running delayed init tasks
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[19:40:56] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[19:40:56] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing bs_vm_armadillo.bbmodel.
[19:40:56] [Craft Scheduler Thread - 14 - FastAsyncVoxelSniper/INFO]: [com.thevoxelbox.voxelsniper.VoxelSniperPlugin] Your version is up to date.
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Skill: Desert_Guardian_Die | File: C:\Users\minecraft\Desktop\Son hali 6 .3. 2024Sunucu\plugins\MythicMobs\Skills\Desert_Guardian_Skills.yml
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SWAPMODEL
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: swapmodel{m=desert_guardian;nid=desert_guardian_lifeless}
[19:40:56] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Fetching version information...
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[19:40:56] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[19:40:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing bs_vm_crab.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing bs_vm_penguin.bbmodel.
[19:40:56] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'selflocation_y=1.5}': Failed to load custom targeter SELFLOCATION_Y=1.5}
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing buzul_domuzcuk.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone kanat has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 17.5 ]
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone kanat is rotated in multiple axis. Choosing one axis.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone kanat has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -25.0 ]
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone vcut has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -10.0 ]
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone vcut has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 10.0 ]
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper.bbmodel.
[19:40:56] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[19:40:56] [Server thread/INFO]: Done (42.684s)! For help, type "help"
[19:40:56] [Server thread/INFO]: Timings Reset
[19:40:56] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled HeadDatabase hook...
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_hellgate.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_hellgate_slime.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_hellgate_snail.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_hellgate_snail_lava.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_rock.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_rock_spilt.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_shotend.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_shotend2.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_slashwave.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_spawner.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing demon_reaper_spawnvfx.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_golem_zone.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian_lifeless.bbmodel.
[19:40:56] [Craft Scheduler Thread - 16 - EconomyShopGUI-Premium/INFO]: [EconomyShopGUI-Premium] [INFO]: There is an update available for EconomyShopGUI Premium, you are running v5.5.3 but found v5.9.5.
[19:40:56] [Craft Scheduler Thread - 16 - EconomyShopGUI-Premium/INFO]: [EconomyShopGUI-Premium] [INFO]: Download using command /eshop update
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian_lifeless_statue.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian_meteor_down.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian_meteor_up.bbmodel.
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:56] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fall_dragon.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing frost_shield_shield.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_arctic_charge.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_axe.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_double_edge_1.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_double_edge_2.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_double_edge_3.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_double_edge_4.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_double_edge_5.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_double_edge_6.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_double_edge_7.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_impact_1.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_impact_2.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_impact_3.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_impact_4.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_impact_5.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_impact_6.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_impact_7.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_slash_1.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_slash_2.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_slash_3.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_slash_4.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_slash_5.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_slash_6.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_babarian_slash_7.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_cone_rupture.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_dragon_soul.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_eternal_fury_aura.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_freeze.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_frost_shield.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_frost_strike_1.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_frost_strike_2.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_frost_strike_3.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_frost_strike_4.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_frost_strike_5.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_frost_strike_6.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_frost_strike_7.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_frostbite.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_ice_crater_big.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_ice_crater_small.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_leaf.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_permafrost_lance.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_poison_leaf.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_root.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_snowflake.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_taunt.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_volcano.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_war_cry_aura.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_war_cry_spread_1.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_war_cry_spread_2.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_war_cry_spread_3.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_war_cry_spread_4.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_war_cry_spread_5.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_war_cry_spread_6.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fx_war_cry_spread_7.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gb_goblin.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gb_goblin_archer.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gb_goblin_outlaw.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gb_goblin_shaman.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gb_hobgoblin.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gift_pet.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing god_of_death.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gp2_decor_torch.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gp2_decor_weapon_rack.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gp2_goblin_king.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gp2_goblin_parts.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gp2_goblin_shaman.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gp2_goblin_shaman_doppelganger.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gp2_goblin_warrior.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hp3_banshee.bbmodel.
[19:40:57] [Craft Scheduler Thread - 11 - PluginManager/INFO]: PM | You are using the latest version of PluginManager.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hp3_cauldron_minion.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hp3_cauldron_monster.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hp3_eyeballjar.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hp3_groundslam.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hp3_imp.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hp3_mummy.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hp3_tesla.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hp3_werewolf.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_bruiser.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_elemental_spikes.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_golem.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_mist.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_queen.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone torso has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 42.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_sprite.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_thorns.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone thorns8 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone thorns9 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone thorns4 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone thorns5 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone thorns6 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone thorns7 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone thorns1 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone thorns2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone thorns3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone branch_end7 is rotated in multiple axis. Choosing one axis.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone branch_end6 is rotated in multiple axis. Choosing one axis.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone branch_end9 is rotated in multiple axis. Choosing one axis.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone branch_end8 is rotated in multiple axis. Choosing one axis.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone branch_end3 is rotated in multiple axis. Choosing one axis.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone branch_end2 is rotated in multiple axis. Choosing one axis.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone branch_end5 is rotated in multiple axis. Choosing one axis.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone branch_end4 is rotated in multiple axis. Choosing one axis.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone branch_end1 is rotated in multiple axis. Choosing one axis.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_wall.bbmodel.
[19:40:57] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "lrd_incubator_despawn" to the pet "lrd_floppy_bunny", because this skill doesn't exist.
[19:40:57] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "lrd_incubator_despawn" to the pet "lrd_fluffy_sheep", because this skill doesn't exist.
[19:40:57] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "lrd_incubator_despawn" to the pet "lrd_fuzzy_bat", because this skill doesn't exist.
[19:40:57] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "lrd_incubator_despawn" to the pet "lrd_happy_cow", because this skill doesn't exist.
[19:40:57] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "lrd_incubator_despawn" to the pet "lrd_king_jelly", because this skill doesn't exist.
[19:40:57] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "lrd_incubator_despawn" to the pet "lrd_miner_mole", because this skill doesn't exist.
[19:40:57] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "lrd_incubator_despawn" to the pet "lrd_sleepy_froggie", because this skill doesn't exist.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing kobold_archer.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing kobold_warrior.bbmodel.
[19:40:57] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] You're 6 EssentialsX dev build(s) out of date!
[19:40:57] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lava_salamander.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_floppy_ears.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_fluffy_cow.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_fluffy_sheep.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_froggie.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_fuzzy_bat.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_incubator.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_king_jelly.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lrd_miner_mole.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing mimic.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nm_cassowary.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nm_cassowary_baby.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_otter_v2.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_angel_slime.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_archangel_slime.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_assassin.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_dark_knight.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_dragon_warrior.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_elder_ent.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_ent.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_ice_emperor_penguin.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_ice_penguin.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_martial_artist.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_nether_ender.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_ninja_samurai.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_paladin.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_penguin.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_reaper.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_slime.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_sun_moon.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_undead_ent.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_warrior.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_water_fire.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_yin_yang.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing plant_monster.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing reaping_claw.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing salamander.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_archer.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_arrow.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_blade.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_dragon.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_knight.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_spirit.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing snail.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing soul_scythe.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing stone_golem.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing stone_minion.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing wraith.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_fairy_drakonin.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_fairy_drakonin_baby.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing butterfly.png.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing butterfly3.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone solkanat has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 20.0 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone sagkanat has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 15.0 ]
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing celestial_thunderlord.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing flarewing_dragon.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing skywhisper_wyvern.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing terravore_drake.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_air_pulse.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_dragon_totem.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing desktop.ini.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_fairy_drakonin_egg.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_archer.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_archer2.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_archer3.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_archer4.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_axe.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_axe2.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_axe3.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_axe4.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_spear.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_spear2.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_spear3.bbmodel.
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:57] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gnoll_spear4.bbmodel.
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nm_cassowary.bbmodel.
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nm_cassowary_baby.bbmodel.
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing eccerberus.bbmodel.
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pluto.bbmodel.
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing prison.bbmodel.
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nature_realm.bbmodel.
[19:40:58] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[19:40:59] [Server thread/INFO]: [MythicMobs] Loading ProtocolLib listeners...
[19:40:59] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[19:40:59] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/comphenix/protocol/PacketType
[19:40:59] [Server thread/WARN]:     at MythicCrucible-2.0.0-3817.jar//io.lumine.mythiccrucible.skills.SkillEventListeners.initProtocolLibDropListeners(SkillEventListeners.java:632)
[19:40:59] [Server thread/WARN]:     at MythicCrucible-2.0.0-3817.jar//io.lumine.mythiccrucible.skills.SkillEventListeners.initProtocolLibListeners(SkillEventListeners.java:195)
[19:40:59] [Server thread/WARN]:     at MythicCrucible-2.0.0-3817.jar//io.lumine.mythiccrucible.skills.SkillEventListeners.lambda$load$0(SkillEventListeners.java:81)
[19:40:59] [Server thread/WARN]:     at MythicMobs-5.5.1premium.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[19:40:59] [Server thread/WARN]:     at MythicMobs-5.5.1premium.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[19:40:59] [Server thread/WARN]:     at MythicMobs-5.5.1premium.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[19:40:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[19:40:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[19:40:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[19:40:59] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[19:40:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[19:40:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[19:40:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[19:40:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1623)
[19:40:59] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.comphenix.protocol.PacketType
[19:40:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[19:40:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[19:40:59] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
[19:40:59] [Server thread/WARN]:     ... 14 more
[19:41:00] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[19:41:00] [Server thread/INFO]: [MythicMobs] Loaded 205 items.
[19:41:00] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3026ms or 60 ticks behind
[19:41:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[19:41:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[19:41:10] [Server thread/INFO]: [Not Secure] [Server] hi
[19:41:11] [Server thread/INFO]: Server Plugins (43):
[19:41:11] [Server thread/INFO]: Paper Plugins:
[19:41:11] [Server thread/INFO]:  - EconomyShopGUI-Premium
[19:41:11] [Server thread/INFO]: Bukkit Plugins:
[19:41:11] [Server thread/INFO]:  - *AlphaChest, Arceon, ArmorStandTools, AutoPickup, *BeautyIndicator, Citizens, CustomEnchantments, DamageIndicator, DeluxeMenus, DropEdit2
[19:41:11] [Server thread/INFO]:  dynmap, EpicBackpacks, EpicRename, Essentials, EssentialsAntiBuild, EssentialsChat, EssentialsProtect, EssentialsSpawn, FastAsyncVoxelSniper, FastAsyncWorldEdit
[19:41:11] [Server thread/INFO]:  goBrush, HeadDatabase, ItemsAdder, LoneLibs, mcMMO, MCPets, *MineResetLite, MMOCore, MMOItems, MobsManager
[19:41:11] [Server thread/INFO]:  ModelEngine, Multiverse-Core, MythicCrucible, MythicLib, MythicMobs, NBTAPI, Notepad, PlaceholderAPI, PluginManager, ProtocolLib
[19:41:11] [Server thread/INFO]:  SetHomes, WorldGuard
[19:42:22] [Server thread/INFO]: Unknown command. Type "/help" for help.
[19:42:24] [Server thread/INFO]: Stopping the server
[19:42:24] [Server thread/INFO]: Stopping server
[19:42:24] [Server thread/INFO]: [AlphaChest] Disabling AlphaChest v1.17.0
[19:42:24] [Server thread/INFO]: [AlphaChest] saved 2 chests
[19:42:24] [Server thread/INFO]: [Arceon] Disabling Arceon v0.4.4_1.16+
[19:42:24] [Server thread/INFO]: [ArmorStandTools] Disabling ArmorStandTools v4.4.4
[19:42:24] [Server thread/INFO]: [AutoPickup] Disabling AutoPickup v5.4.0
[19:42:24] [Server thread/INFO]: [BeautyIndicator] Disabling BeautyIndicator v1.11
[19:42:25] [Server thread/INFO]: [BeautyIndicator] Plugin successfully disabled!
[19:42:25] [Server thread/INFO]: [DamageIndicator] Disabling DamageIndicator v2.0.0
[19:42:25] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.13.7-Release
[19:42:25] [Server thread/INFO]: [DropEdit2] Disabling DropEdit2 v1.1.70-SNAPSHOT
[19:42:25] [Server thread/INFO]: [DropEdit2] Saved data!
[19:42:25] [Server thread/INFO]: [dynmap] Disabling dynmap v3.7-beta-4-935
[19:42:25] [Server thread/INFO]: [dynmap] Unloaded 11 components.
[19:42:25] [Server thread/INFO]: [dynmap] Stopping map renderer...
[19:42:26] [Server thread/INFO]: [dynmap] Disabled
[19:42:26] [Server thread/INFO]: [EconomyShopGUI-Premium] Disabling EconomyShopGUI-Premium v5.5.3
[19:42:26] [Server thread/INFO]: [EpicBackpacks] Disabling EpicBackpacks v1.3.16-r3
[19:42:26] [Server thread/INFO]: [EpicRename] Disabling EpicRename v3.12
[19:42:26] [Server thread/INFO]: [EpicRename] Plugin Disabled.
[19:42:26] [Server thread/INFO]: [EssentialsAntiBuild] Disabling EssentialsAntiBuild v2.21.0-dev+67-622c814
[19:42:26] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.21.0-dev+67-622c814
[19:42:26] [Server thread/INFO]: [EssentialsProtect] Disabling EssentialsProtect v2.21.0-dev+67-622c814
[19:42:26] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.21.0-dev+67-622c814
[19:42:26] [Server thread/INFO]: [FastAsyncVoxelSniper] Disabling FastAsyncVoxelSniper v3.0.0
[19:42:26] [Server thread/INFO]: [goBrush] Disabling goBrush v3.8.0-70
[19:42:26] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.12.2
[19:42:26] [Server thread/INFO]: [mcMMO] Disabling mcMMO v2.1.228-SNAPSHOT
[19:42:26] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion mcmmo
[19:42:26] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin mcMMO was disabled.
[19:42:26] [Server thread/INFO]: [mcMMO] Server shutdown has been executed, saving and cleaning up data...
[19:42:26] [Server thread/INFO]: [MCPets] Disabling MCPets v4.1.2
[19:42:26] [Server thread/INFO]: -=-=-=-= MCPets disable =-=-=-=-
[19:42:26] [Server thread/INFO]:           See you soon
[19:42:26] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[19:42:26] [Server thread/INFO]: [MineResetLite] Disabling MineResetLite v0.4.7
[19:42:26] [Server thread/INFO]: [MineResetLite] MineResetLite disabled
[19:42:26] [Server thread/INFO]: [MobsManager] Disabling MobsManager v5.4.1
[19:42:26] [Server thread/INFO]: [MobsManager] is disabled !
[19:42:26] [Server thread/INFO]: [MythicCrucible] Disabling MythicCrucible v2.0.0-SNAPSHOT
[19:42:26] [Server thread/INFO]: [Notepad] Disabling Notepad v1.2
[19:42:26] [Server thread/INFO]: [PluginManager] Disabling PluginManager v2.8.1
[19:42:26] [Server thread/INFO]: [SetHomes] Disabling SetHomes v1.3.0
[19:42:26] [Server thread/INFO]: [HeadDatabase] Disabling HeadDatabase v4.18.4
[19:42:26] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR4.0.4
[19:42:26] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.0-dev+67-622c814
[19:42:26] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.45
[19:42:26] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3373)
[19:42:26] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.5.1-9aedaa15
[19:42:26] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[19:42:26] [Server thread/INFO]: [MythicMobs] - 
[19:42:26] [Server thread/INFO]: [MythicMobs] - Unloading Mythic...
[19:42:26] [Server thread/INFO]: [MythicMobs] - 
[19:42:26] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[19:42:26] [Server thread/INFO]: [MythicMobs] - Spawners saved and unloaded...
[19:42:26] [Server thread/INFO]: [MythicMobs] - Mobs saved and unloaded...
[19:42:26] [Server thread/INFO]: [MythicMobs] - Variables saved...
[19:42:26] [Server thread/INFO]: [MythicMobs] - All active settings have been saved!
[19:42:26] [Server thread/INFO]: [MythicMobs] - Mythic has been unloaded!
[19:42:26] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[19:42:26] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.5
[19:42:26] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.12
[19:42:26] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.9+5934e49
[19:42:26] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[19:42:26] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.8.2
[19:42:26] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[19:42:26] [Server thread/INFO]: Saving players
[19:42:26] [Server thread/INFO]: Saving worlds
[19:42:26] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[19:42:26] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[19:42:26] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[19:42:26] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[19:42:27] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world' in 1.08s
[19:42:27] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[19:42:27] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[19:42:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[19:42:27] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[19:42:27] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[19:42:28] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_nether' in 0.76s
[19:42:28] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[19:42:28] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[19:42:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[19:42:28] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[19:42:28] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[19:42:28] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.20s
[19:42:28] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[19:42:28] [Server thread/INFO]: Saving chunks for level 'ServerLevel[best31]'/minecraft:best31
[19:42:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'best31'
[19:42:28] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'best31'
[19:42:28] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'best31'
[19:42:29] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'best31' in 0.97s
[19:42:29] [Server thread/INFO]: ThreadedAnvilChunkStorage (best31): All chunks are saved
[19:42:29] [Server thread/INFO]: Saving chunks for level 'ServerLevel[project5]'/minecraft:project5
[19:42:29] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'project5'
[19:42:29] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'project5'
[19:42:29] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'project5'
[19:42:30] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'project5' in 0.79s
[19:42:30] [Server thread/INFO]: ThreadedAnvilChunkStorage (project5): All chunks are saved
[19:42:30] [Server thread/INFO]: Saving chunks for level 'ServerLevel[best]'/minecraft:best
[19:42:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'best'
[19:42:30] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'best'
[19:42:30] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'best'
[19:42:30] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'best' in 0.37s
[19:42:30] [Server thread/INFO]: ThreadedAnvilChunkStorage (best): All chunks are saved
[19:42:30] [Server thread/INFO]: Saving chunks for level 'ServerLevel[flat1]'/minecraft:flat1
[19:42:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'flat1'
[19:42:30] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'flat1'
[19:42:30] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'flat1'
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'flat1' in 0.40s
[19:42:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (flat1): All chunks are saved
[19:42:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[flatroom]'/minecraft:flatroom
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'flatroom'
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'flatroom'
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'flatroom'
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'flatroom' in 0.31s
[19:42:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (flatroom): All chunks are saved
[19:42:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[deneme1]'/minecraft:deneme1
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'deneme1'
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'deneme1'
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'deneme1'
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'deneme1' in 0.24s
[19:42:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (deneme1): All chunks are saved
[19:42:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[BlankMap]'/minecraft:blankmap
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'BlankMap'
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'BlankMap'
[19:42:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'BlankMap'
[19:42:32] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'BlankMap' in 0.48s
[19:42:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (BlankMap): All chunks are saved
[19:42:32] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[19:42:32] [Server thread/INFO]: Flushing Chunk IO
[19:42:32] [Server thread/INFO]: Closing Thread Pool
[19:42:32] [Server thread/INFO]: Closing Server