Paste #119555: DenizenMetaBot Auto-Repaste Of log From kitsoo_

Date: 2024/01/18 12:06:22 UTC-08: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


[20:05:01] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[20:05:02] [ServerMain/INFO]: Loaded 7 recipes
[20:05:03] [Server thread/INFO]: Starting minecraft server version 1.20
[20:05:03] [Server thread/INFO]: Loading properties
[20:05:03] [Server thread/INFO]: This server is running Purpur version git-Purpur-1990 (MC: 1.20) (Implementing API version 1.20-R0.1-SNAPSHOT) (Git: 788c14f on HEAD)
[20:05:03] [Server thread/INFO]: Server Ping Player Sample Count: 12
[20:05:03] [Server thread/INFO]: Using 4 threads for Netty based IO
[20:05:03] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[20:05:04] [Server thread/INFO]: Default game type: SURVIVAL
[20:05:04] [Server thread/INFO]: Generating keypair
[20:05:04] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:10050
[20:05:04] [Server thread/INFO]: Using epoll channel type
[20:05:04] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[20:05:04] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[20:05:05] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 8 libraries... please wait
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/dev/jorel/commandapi-bukkit-shade/9.3.0/commandapi-bukkit-shade-9.3.0.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.15.0/adventure-text-minimessage-4.15.0.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-api/4.15.0/adventure-api-4.15.0.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-key/4.15.0/adventure-key-4.15.0.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-plain/4.15.0/adventure-text-serializer-plain-4.15.0.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-ansi/4.15.0/adventure-text-serializer-ansi-4.15.0.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/ansi/1.0.3/ansi-1.0.3.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loading 1 libraries... please wait
[20:05:06] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loaded library /home/container/libraries/dev/dejvokep/boosted-yaml-spigot/1.3/boosted-yaml-spigot-1.3.jar
[20:05:06] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.0
[20:05:06] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0 is now loaded. Registering protocol transformers and injecting...
[20:05:06] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[20:05:06] [Server thread/INFO]: [ViaBackwards] Loading translations...
[20:05:07] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[20:05:07] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[20:05:07] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.83
[20:05:07] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[20:05:07] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.3-SNAPSHOT-472;083f8a4
[20:05:09] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@6a73d73e]
[20:05:09] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[20:05:09] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
[20:05:10] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[20:05:10] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[20:05:10] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[20:05:10] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3304)
[20:05:10] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.5.1-9aedaa15
[20:05:10] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[20:05:10] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[20:05:10] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.7.0
[20:05:10] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR3.1.10
[20:05:10] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.0.4
[20:05:10] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0
[20:05:10] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.167.0
[20:05:10] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.59
[20:05:10] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.6
[20:05:10] [Server thread/INFO]: [gFunGun] Loading server plugin gFunGun v1.1
[20:05:10] [Server thread/INFO]: [MagicAvatar] Loading server plugin MagicAvatar v1.2.7-SNAPSHOT
[20:05:10] [Server thread/INFO]: [HyanseItemSkins] Loading server plugin HyanseItemSkins v1.2.0
[20:05:10] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.4
[20:05:10] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.12.4
[20:05:10] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.2
[20:05:10] [Server thread/INFO]: [gInvisible] Loading server plugin gInvisible v1.0
[20:05:10] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v3.1.1
[20:05:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcpets [1.0.0]
[20:05:10] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[20:05:10] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[20:05:10] [Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.11.1-RELEASE
[20:05:10] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[20:05:10] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.6
[20:05:10] [Server thread/INFO]: [ajParkour] Loading server plugin ajParkour v2.12.10
[20:05:10] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.3
[20:05:10] [Server thread/INFO]: [JumpPads] Loading server plugin JumpPads v1.25.13
[20:05:10] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v6.0.1-RELEASE-b892
[20:05:10] [Server thread/INFO]: [ajQueue] Loading server plugin ajQueue v2.5.0
[20:05:10] [Server thread/INFO]: [MysteryBoxes] Loading server plugin MysteryBoxes v1.20.28
[20:05:10] [Server thread/INFO]: [CLV] Loading server plugin CyberLevels v0.5.8
[20:05:10] [Server thread/INFO]: [gWhitelist] Loading server plugin gWhitelist v1.0
[20:05:10] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.0
[20:05:10] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v6.1
[20:05:11] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[20:05:11] [Server thread/INFO]: [ShowItem] Loading server plugin ShowItem v1.6.43 (build 554)
[20:05:11] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart vBuild 54a
[20:05:11] [Server thread/INFO]: [MagicCosmetics] Loading server plugin MagicCosmetics v2.9.1
[20:05:11] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.7.4
[20:05:12] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[20:05:12] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.83
[20:05:13] [Server thread/INFO]:         __    
[20:05:13] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.83
[20:05:13] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[20:05:13] [Server thread/INFO]: 
[20:05:13] [Server thread/INFO]: [LuckPerms] Loading configuration...
[20:05:13] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[20:05:13] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[20:05:13] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[20:05:14] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[20:05:15] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[20:05:15] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[20:05:15] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3851ms)
[20:05:18] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[20:05:18] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[20:05:18] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[20:05:18] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[20:05:18] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[20:05:18] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.3-SNAPSHOT-472;083f8a4
[20:05:18] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[20:05:18] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[20:05:18] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[20:05:18] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[20:05:18] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[20:05:19] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[20:05:19] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[20:05:19] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
[20:05:19] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.4
[20:05:19] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[20:05:19] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[20:05:19] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[20:05:19] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[20:05:19] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[20:05:19] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[20:05:19] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_20_R1, using MappingSpigotSkinRefresher.
[20:05:19] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.6
[20:05:19] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.2.5
[20:05:20] [Server thread/INFO]: [PlayerPoints] Data handler connected using MySQL.
[20:05:20] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.3
[20:05:20] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[20:05:20] [Server thread/WARN]: It seems like you're running on paper.
[20:05:20] [Server thread/WARN]: This may cause issues.
[20:05:20] [Server thread/WARN]: If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
[20:05:20] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[20:05:20] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[20:05:21] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v6.0.1-RELEASE-b892
[20:05:21] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[20:05:21] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[20:05:21] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[20:05:21] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[20:05:21] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[20:05:21] [Server thread/INFO]: Preparing level "world"
[20:05:22] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[20:05:22] [Server thread/INFO]: Time elapsed: 463 ms
[20:05:22] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[20:05:23] [Server thread/INFO]: Time elapsed: 90 ms
[20:05:23] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0
[20:05:23] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20 (763)
[20:05:23] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[20:05:23] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[20:05:23] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[20:05:23] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[20:05:23] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[20:05:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[20:05:23] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[20:05:23] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[20:05:23] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[20:05:23] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[20:05:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[20:05:23] [Server thread/INFO]: [WorldGuard] Loading region data...
[20:05:23] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[20:05:24] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[20:05:24] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[20:05:24] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[20:05:24] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[20:05:24] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[20:05:24] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[20:05:24] [Server thread/INFO]: Preparing start region for dimension minecraft:lobby
[20:05:25] [Server thread/INFO]: Time elapsed: 763 ms
[20:05:25] [Server thread/INFO]: [WorldGuard] (Lobby) TNT ignition is PERMITTED.
[20:05:25] [Server thread/INFO]: [WorldGuard] (Lobby) Lighters are PERMITTED.
[20:05:25] [Server thread/INFO]: [WorldGuard] (Lobby) Lava fire is PERMITTED.
[20:05:25] [Server thread/INFO]: [WorldGuard] (Lobby) Fire spread is UNRESTRICTED.
[20:05:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Lobby'
[20:05:25] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[20:05:25] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[20:05:25] [Server thread/INFO]: [Multiverse-Core] 3 - World(s) loaded.
[20:05:25] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[20:05:25] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[20:05:25] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3304)
[20:05:25] [Server thread/INFO]: [Citizens] Loading external libraries
[20:05:26] [Server thread/ERROR]: [Citizens] v2.0.33-SNAPSHOT (build 3304) is not compatible with Minecraft v1_20_R1 - try upgrading Minecraft or Citizens. Disabling...
[20:05:26] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3304)
[20:05:26] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.5.1-9aedaa15
[20:05:26] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.0)...
[20:05:26] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[20:05:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythic [5.0.0]
[20:05:29] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[20:05:29] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[20:05:29] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[20:05:29] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[20:05:29] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[20:05:29] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[20:05:31] [Server thread/INFO]: [MythicMobs] Loading Packs...
[20:05:32] [Server thread/INFO]: [MythicMobs] Loading Items...
[20:05:32] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[20:05:32] [Server thread/INFO]: [MythicMobs] Loading Skills...
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'falling_snow' is not supported by this version of MythicMobs.
[20:05:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic damage
[20:05:32] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/littleroom/creep_collection.yml
[20:05:32] [Server thread/WARN]: [MythicMobs] --| Error Message: Custom damage types require MythicMobs Premium to use.
[20:05:32] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: damage{a=2;cause=freeze;element=ICE}
[20:05:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'falling_snow' is not supported by this version of MythicMobs.
[20:05:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic damage
[20:05:32] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/littleroom/creep_collection.yml
[20:05:32] [Server thread/WARN]: [MythicMobs] --| Error Message: Custom damage types require MythicMobs Premium to use.
[20:05:32] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: damage{a=2;cause=freeze;element=ICE}
[20:05:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic damage
[20:05:32] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/littleroom/creep_collection.yml
[20:05:32] [Server thread/WARN]: [MythicMobs] --| Error Message: Custom damage types require MythicMobs Premium to use.
[20:05:32] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: damage{a=2;cause=freeze;element=ICE}
[20:05:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic damage
[20:05:32] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/littleroom/creep_collection.yml
[20:05:32] [Server thread/WARN]: [MythicMobs] --| Error Message: Custom damage types require MythicMobs Premium to use.
[20:05:32] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: damage{a=2;cause=freeze;element=ICE}
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.targets>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<pet.power>*2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<pet.power>*3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<pet.power>*2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<pet.power>*3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[20:05:33] [Server thread/ERROR]: [MythicMobs] Error loading LineConfig: Unbalanced Braces
[20:05:33] [Server thread/ERROR]: [MythicMobs] [Line]: mid=voras;d=false;i=true;lpitch=true;step=1}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'falling_snow' is not supported by this version of MythicMobs.
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'falling_snow' is not supported by this version of MythicMobs.
[20:05:33] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[20:05:33] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[20:05:33] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Skill: voras_tombstone | File: /home/container/plugins/MythicMobs/Skills/littleroom/voras.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=voras_crate}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Skill: amethystpupaLIFESPAN | File: /home/container/plugins/MythicMobs/Skills/littleroom/amethystgolem.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=amethystshard}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Skill: AMETHYSTGOLEMfootpoundSPIKES | File: /home/container/plugins/MythicMobs/Skills/littleroom/amethystgolem.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=amethystspikes}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Skill: AMETHYSTGOLEMshardtoss1 | File: /home/container/plugins/MythicMobs/Skills/littleroom/amethystgolem.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=amethystpupa}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Skill: AMETHYSTGOLEMshardtoss2 | File: /home/container/plugins/MythicMobs/Skills/littleroom/amethystgolem.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=amethystpupa}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Skill: AMETHYSTGOLEMshardtoss3 | File: /home/container/plugins/MythicMobs/Skills/littleroom/amethystgolem.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=amethystpupa}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Skill: AMETHYSTGOLEMshardtoss4 | File: /home/container/plugins/MythicMobs/Skills/littleroom/amethystgolem.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=amethystpupa}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Skill: AMETHYSTGOLEMshardtoss5 | File: /home/container/plugins/MythicMobs/Skills/littleroom/amethystgolem.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=amethystpupa}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Skill: Lillith_PET2 | File: /home/container/plugins/MythicMobs/Packs/littleroom/Skills/lillith.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=succubus_demonsword}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: dropping | File: /home/container/plugins/MythicMobs/Mobs/littleroom/droppings.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill droppingidle
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=droppingidle}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: phoenix | File: /home/container/plugins/MythicMobs/Mobs/littleroom/phoenix.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill phoenixFLAPforward
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=phoenixFLAPforward}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRSantaEVILPET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Santa_evil.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRGingerBreadManPET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Gingerbreadman.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRSantaGOLDPET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Santa_gold.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRSantaPET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Santa.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=3}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=3}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRSnowmanPET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Snowman.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRSnowmanCREEPERPET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Snowman_creeper.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRRednosePET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Rednose.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRElfemoPET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Elf_emo.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRRednoseHUSKYPET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Rednose_husky.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRGingerBreadManMistakePET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Gingerbreadman_mistake.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mob: LRElfPET | File: /home/container/plugins/MythicMobs/Packs/LittleRoom_Pets/Mobs/Elf.yml
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LRChristmaspets_Pet_Animation
[20:05:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LRChristmaspets_Pet_Animation}
[20:05:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 135 mobs.
[20:05:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 vanilla mob overrides.
[20:05:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[20:05:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 579 skills.
[20:05:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[20:05:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 16 mythic items.
[20:05:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[20:05:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[20:05:33] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[20:05:34] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[20:05:34] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.5.1 ( build 9aedaa15 ) has been successfully loaded!
[20:05:34] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.7.0
[20:05:34] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.10
[20:05:34] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[20:05:34] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[20:05:34] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[20:05:34] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0
[20:05:34] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[20:05:34] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[20:05:34] [Server thread/INFO]: [Essentials] No kits found to migrate.
[20:05:34] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[20:05:34] [Server thread/INFO]: [Essentials] Using locale hu
[20:05:34] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[20:05:34] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[20:05:34] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[20:05:34] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[20:05:34] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.167.0
[20:05:35] [Server thread/INFO]: Oraxen | Version v1_20_R1 has been detected.
[20:05:35] [Server thread/INFO]: Oraxen | Oraxen will use the NMSHandler for this version.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for heart does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for 8ball does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for alarm does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for alert does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for alien does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for angry does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for anguish does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for anxious does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for banana does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bang does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for baseball does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for basketball does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for battery does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for beam does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bear does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for blowkiss does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for blush does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for blushkiss does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bolt does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bomb does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for box does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for brokenheart does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bulb does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for burger does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for card does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for cat does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for check does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for chick does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for chocolate does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for cloud2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for cloudy does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for cone does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for confounded does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for cross does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for crown does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for cry does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for dead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for deny does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for disappointed does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for dog does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for donut does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for downcast does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for droplet does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for earth does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for envelope does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for expressionless does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for eyes does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ez does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for faceless does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for fearful does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for finish does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for fish does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for fist does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for flame2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for flex does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for flower does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for football does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for fries does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for frown does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gg does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for goblin does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for grimace does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for grin does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for happyhorns does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for happysun does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for hearteyes does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for hibiscus does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for horse does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for hushed does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for indexup does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for kiss does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ladybug does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for lion does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for lips does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for lock does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for lol does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for lollipop does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for lovenote does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for mail does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for mailclosed does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for mask does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for masks does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for meat does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for money does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for monkey does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for moon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for moonbright does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for moondark does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for mouse does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for mushroom does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for neutral does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for blocked does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for nomail does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for notstonks does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ok does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for openmouth does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for palette does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for panda does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for peace does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for peach does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for pencil does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for penguin does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for pensive does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for perservere does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for phone does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for pig does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for pigsnout does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for pizza does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for poop does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for pout does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for relieved does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rocket does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for sadhorns does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for sadworry does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for screaming does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for shimmer does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for shimmeryheart does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for shocked does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for sidetongue does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for silverware does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for skull does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for sleeping2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for sleepy does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for smile does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for smirk does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for snail does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for sob does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for soccer does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for spooky does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for squid does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for squint does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for squintkiss does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for squinttongue does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for star2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for steam does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for stonks does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for sun does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for sweat does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for tag does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for thumbsdown does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for thumbsup does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for tired does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for toilet does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for tongue does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for tophat does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for trophy2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for unamused does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for unlock does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for weary does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for wink does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for winktongue does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for worry does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for confirm does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for logo does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for game_menu does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for menu_cosmetics does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for menu2_cosmetics does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for screen_cosmetics does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for trade_cosmetics does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps00 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps01 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps02 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps03 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps04 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps05 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps06 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps07 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps08 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps09 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps10 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ps11 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for pixel_nosplit_cosmetics does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profile-menu does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profile-menu2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profile-prefix does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bp_portal does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bp_daily_quests does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bp_week does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bp_quest_overview does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bp_rewards does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for progress_bar does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for bp does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for icon-star does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-kinezet does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-kiskedvencek does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-showitem does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-default does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-default-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-spider does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-spider-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-skeleton does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-skeleton-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-creeper does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-creeper-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-frog does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-frog-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-zombie does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-zombie-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-axolotl does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-axolotl-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-warden does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-warden-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-media does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-media-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-mediaplus does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-mediaplus-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-support does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-support-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-moderator1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-moderator1-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-moderator2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-moderator2-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-moderator3 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-moderator3-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-admin does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-admin-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-szuperadmin does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-szuperadmin-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-fejleszto does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-fejleszto-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-manager does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-manager-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-tulajdonos does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for rang-tulajdonos-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for afk does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-default does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-default-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-spider does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-spider-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-skeleton does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-skeleton-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-creeper does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-creeper-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-frog does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-frog-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-zombie does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-zombie-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-axolotl does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-axolotl-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-warden does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-warden-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-media does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-media-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-mediaplus does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-mediaplus-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-support does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-support-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-moderator1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-moderator1-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-moderator2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-moderator2-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-moderator3 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-moderator3-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-admin does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-admin-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-szuperadmin does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-szuperadmin-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-fejleszto does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-fejleszto-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-manager does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-manager-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-tulajdonos does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for profil-rang-tulajdonos-icon does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-fishermanhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-adventurerhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-bardhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-blacksmithhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-farmerhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-jesterhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-kinghead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-lumberjackhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-minerhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-piratehead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-queenhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-wizardhead does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for head-tinkerer does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-szervervalaszto_fo does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-szervervalaszto_earth does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-szervervalaszto_fullpvp does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-szervervalaszto_kingdoms does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-szervervalaszto_kitpvp does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-szervervalaszto_skyblock does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-jatekmod_gomb2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-kiegeszitok does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-lobbyvalaszto1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-lobbyvalaszto2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_effekt-fo does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-effekt_stilus1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-effekt_stilus2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-effekt_stilus3 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-effekt_effektek1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-effekt_effektek2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui-effekt_effektek3 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_fullpvp_csomagok_jogok does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_fullpvp_kulcsos does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_fullpvp_kulcsos2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_fullpvp_kepesseg does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_fullpvp_banyamester does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_fullpvp_banyamester2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_bolt_fomenu does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for icon-petak does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for szoveg1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for szoveg2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for szoveg3 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for szoveg4 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for logo2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_kiskedvenc1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_kiskedvenc2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_kiskedvenc_menu does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ritkasag-gyakori does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ritkasag-ritka does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ritkasag-epikus does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ritkasag-legendas does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ritkasag-mitikus does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ritkasag-egzotikus does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for ritkasag-mualkotas does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_utotag does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_utotag_szinek does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_lada_honey does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_lada_coral does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_lada_ocean does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_lada_bambusz does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_kapalista does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_levedoblokk does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_rejtelyesdoboz does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_varazslatok does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_varazslat1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_jutalmak does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_varazslat2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_varazslat3 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_varazslat4 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_doboz1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_doboz2 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:35] [Server thread/INFO]: Oraxen | The texture specified for gui_doboz2_1 does not exist. This will break all your glyphs.
[20:05:35] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_doboz3 does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_doboz4 does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_doboz5 does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_doboz6 does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_doboz6_1 does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_doboz7 does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_kapafejlesztes does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_shop_kategoria does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_shop_menu does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for gui_shop_vasarlas does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for shop_minus does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | The texture specified for shop_plus does not exist. This will break all your glyphs.
[20:05:36] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[20:05:36] [Server thread/INFO]: Oraxen | Successfully loaded on Ubuntu 22.04.3 LTS (jammy)
[20:05:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oraxen [1.167.0]
[20:05:36] [Server thread/INFO]: Oraxen | Plugin "PlaceholderAPI" detected, enabling hooks
[20:05:36] [Server thread/INFO]: Oraxen | Plugin "MythicMobs" detected, enabling hooks
[20:05:36] [Server thread/INFO]: [spark] Enabling spark v1.10.59
[20:05:37] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[20:05:37] [Server thread/INFO]: [spark] Starting background profiler...
[20:05:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.59]
[20:05:37] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[20:05:37] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.6
[20:05:37] [Server thread/INFO]: [gFunGun] Enabling gFunGun v1.1
[20:05:37] [Server thread/INFO]: [gFunGun] The plugin successfully enabled.
[20:05:37] [Server thread/INFO]: [gFunGun] Plugin developed by Glowing Studios. https://discord.gg/esxwNC4DmZ
[20:05:37] [Server thread/INFO]: [MagicAvatar] Enabling MagicAvatar v1.2.7-SNAPSHOT
[20:05:37] [Server thread/INFO]: [MagicAvatar] Enabling ProxyMode!
[20:05:37] [Server thread/INFO]: [MagicAvatar] Validating purchase...
[20:05:37] [Server thread/INFO]: [MagicAvatar]  
[20:05:37] [Server thread/INFO]: [MagicAvatar] Welcome mon gen!
[20:05:37] [Server thread/INFO]: [MagicAvatar] Thank you for using MagicAvatar =)!
[20:05:37] [Server thread/INFO]: [MagicAvatar]  
[20:05:37] [Server thread/INFO]: [MagicAvatar] MiniMessage Format Detected.
[20:05:37] [Server thread/INFO]: [MagicAvatar] PlaceholderAPI detected, enabling PlaceholderAPI support...
[20:05:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: magicavatar [1.2.7-SNAPSHOT]
[20:05:37] [Server thread/INFO]: [MagicAvatar] Connecting the database with SQLite...
[20:05:37] [Server thread/INFO]: [MagicAvatar] SQLite connection established
[20:05:37] [Server thread/INFO]: [MagicAvatar] SQLite table created successfully
[20:05:37] [Server thread/INFO]: Oraxen | Plugin "MagicAvatar" detected, enabling hooks
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Enabling HyanseItemSkins v1.2.0
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Found version v1_20_R1, trying to load desired classes
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Starting to load all skins...
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_crossbow.yml' skins (from 'darkmagic' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_shovel.yml' skins (from 'darkmagic' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_bow.yml' skins (from 'darkmagic' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_pickaxe.yml' skins (from 'darkmagic' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_axe.yml' skins (from 'darkmagic' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_hoe.yml' skins (from 'darkmagic' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_sword.yml' skins (from 'darkmagic' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'doomhammer.yml' skins (from 'skins' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'asd.yml' skins (from 'skins' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] Loading 'darksaber.yml' skins (from 'skins' directory)
[20:05:37] [Server thread/INFO]: [HyanseItemSkins] All skins are successfully loaded (took 27ms)
[20:05:37] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.4
[20:05:37] [Server thread/INFO]: [PlayerParticles] Initializing using RoseGarden v1.1.0.52-SNAPSHOT
[20:05:37] [Server thread/INFO]: [PlayerParticles] Data handler connected using MySQL.
[20:05:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerparticles [8.4]
[20:05:38] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.12.4
[20:05:38] [Server thread/INFO]: [LiteBans] Using system locale (en)
[20:05:38] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[20:05:38] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[20:05:38] [Server thread/INFO]: [LiteBans] Connecting to database...
[20:05:38] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[20:05:38] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[20:05:38] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (187.4 ms).
[20:05:38] [Server thread/INFO]: [LiteBans] Database connection fully initialized (191.7 ms).
[20:05:38] [Server thread/INFO]: [LiteBans] v2.12.4 enabled. Startup took 374 ms.
[20:05:38] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.2
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[20:05:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[20:05:38] [Server thread/INFO]: [gInvisible] Enabling gInvisible v1.0
[20:05:38] [Server thread/INFO]: [MCPets] Enabling MCPets v3.1.1
[20:05:38] [Server thread/INFO]: [MCPets] : Language file reloaded.
[20:05:38] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[20:05:38] [Server thread/INFO]: Loading pets... 
[20:05:38] [Server thread/INFO]:   - AnubisDark loaded succesfully.
[20:05:38] [Server thread/INFO]:   - VorasTeal loaded succesfully.
[20:05:38] [Server thread/INFO]:   - SkogBirch loaded succesfully.
[20:05:38] [Server thread/INFO]:   - HoneyCreep loaded succesfully.
[20:05:38] [Server thread/INFO]:   - CerberusPet loaded succesfully.
[20:05:38] [Server thread/INFO]:   - SlimeCreep loaded succesfully.
[20:05:38] [Server thread/INFO]:   - cavalier_fox loaded succesfully.
[20:05:38] [Server thread/INFO]:   - izzy_warden_pet loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRGingerbreadmanmistake loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRSantaEVIL loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRSnowman loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRGingerbreadman loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRSantagold loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRSanta loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRRednose loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRElfEmo loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRSnowmancreeper loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRElf loaded succesfully.
[20:05:38] [Server thread/INFO]:   - IronGolem loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LillithGolem loaded succesfully.
[20:05:38] [Server thread/INFO]:   - SnowCreep loaded succesfully.
[20:05:38] [Server thread/INFO]:   - bulbwitherPET loaded succesfully.
[20:05:38] [Server thread/INFO]:   - Skog loaded succesfully.
[20:05:38] [Server thread/INFO]:   - TinkerBot loaded succesfully.
[20:05:38] [Server thread/INFO]:   - VorasWhite loaded succesfully.
[20:05:38] [Server thread/INFO]:   - phoenixPET loaded succesfully.
[20:05:38] [Server thread/INFO]:   - knight_fox loaded succesfully.
[20:05:38] [Server thread/INFO]:   - GiantTurtleSima loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LavaCreep loaded succesfully.
[20:05:38] [Server thread/INFO]:   - Anubisz loaded succesfully.
[20:05:38] [Server thread/INFO]:   - VorasSima loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRGhastling loaded succesfully.
[20:05:38] [Server thread/INFO]:   - GiantTurtleRoyal loaded succesfully.
[20:05:38] [Server thread/INFO]:   - LRRednosehusky loaded succesfully.
[20:05:38] [Server thread/INFO]:   - Lillith loaded succesfully.
[20:05:38] [Server thread/INFO]:   - SpongeCreep loaded succesfully.
[20:05:38] [Server thread/INFO]:   - robolumberjackPET loaded succesfully.
[20:05:38] [Server thread/INFO]:   - bulbshroomPET loaded succesfully.
[20:05:38] [Server thread/INFO]:   - deadbeardPET loaded succesfully.
[20:05:38] [Server thread/INFO]:   - GravelCreep loaded succesfully.
[20:05:38] [Server thread/INFO]:   - VorasRed loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_bride loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_daisy loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_construction loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_sunflower loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_grandma loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_farmer loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_original loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_soldier loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_boater loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_pirate loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_astro loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_3dglasses loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_disco loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_nerdglasses loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_miner loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_grandpa loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_top_hat loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_cowboy loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_tuxedo loaded succesfully.
[20:05:38] [Server thread/INFO]:   - rduck_chef loaded succesfully.
[20:05:38] [Server thread/INFO]: [MCPets] : 61 pets registered successfully !
[20:05:38] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[20:05:38] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[20:05:38] [Server thread/ERROR]: [MCPets] [Database] Can't initialize MySQL.
[20:05:38] [Server thread/ERROR]: [MCPets] [Database] Will be using YAML support instead.
[20:05:38] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[20:05:38] [Server thread/INFO]:       Plugin made by Nocsy
[20:05:38] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[20:05:38] [Server thread/INFO]: -=- Launching Flags -=-
[20:05:38] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[20:05:38] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[20:05:38] [Server thread/INFO]: 2 flags launched.
[20:05:38] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.11.1-RELEASE
[20:05:38] [Server thread/INFO]: [BlockParticles] [BlockParticles] Loading the config.yml
[20:05:38] [Server thread/INFO]: [BlockParticles] [BlockParticles] Successfully loaded config.yml
[20:05:38] [Server thread/INFO]: [BlockParticles] [BlockParticles] Loading the data.yml
[20:05:38] [Server thread/INFO]: [BlockParticles] [BlockParticles] Successfully loaded data.yml
[20:05:38] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[20:05:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [4.1.2]
[20:05:39] [Server thread/INFO]: [TAB] Enabled in 187ms
[20:05:39] [Server thread/INFO]: [ajParkour] Enabling ajParkour v2.12.10
[20:05:39] [Server thread/INFO]: [us.ajg0702.parkour.hikari.HikariDataSource] HikariPool-1 - Starting...
[20:05:39] [Server thread/INFO]: [us.ajg0702.parkour.hikari.HikariDataSource] HikariPool-1 - Start completed.
[20:05:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajpk [2.12.10]
[20:05:39] [Server thread/INFO]: ajParkour v2.12.10 by ajgeiss0702 has been enabled!
[20:05:39] [Server thread/INFO]: [JumpPads] Enabling JumpPads v1.25.13
[20:05:39] [Server thread/INFO]: [ajQueue] Enabling ajQueue v2.5.0
[20:05:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajqueue [2.5.0]
[20:05:39] [Server thread/INFO]: [ajQueue] Registered PlaceholderAPI placeholders
[20:05:39] [Server thread/INFO]: [ajQueue] Spigot side enabled! v2.5.0
[20:05:39] [Server thread/INFO]: [MysteryBoxes] Enabling MysteryBoxes v1.20.28
[20:05:39] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[20:05:39] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[20:05:39] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'MysteryBoxes' to create a bStats instance!
[20:05:39] [Server thread/WARN]: [MysteryBoxes] Failed to register loot holiday-loot (Already registered).
[20:05:39] [Server thread/WARN]: [MysteryBoxes] Failed to register loot common-loot (Already registered).
[20:05:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: MysteryBoxes [1.20.28]
[20:05:39] [Server thread/INFO]: [MysteryBoxes] The plugin was enabled.
[20:05:39] [Server thread/INFO]: [CLV] Enabling CyberLevels v0.5.8
[20:05:39] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[20:05:39] [Server thread/INFO]: [CLV] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╱╱╱╭╮
[20:05:39] [Server thread/INFO]: [CLV] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱╱╱╱┃┃
[20:05:39] [Server thread/INFO]: [CLV] ┃┃╱╰╋╮╱╭┫╰━┳━━┳━┫┃╱╱╭━━┳╮╭┳━━┫┃╭━━╮
[20:05:39] [Server thread/INFO]: [CLV] ┃┃╱╭┫┃╱┃┃╭╮┃┃━┫╭┫┃╱╭┫┃━┫╰╯┃┃━┫┃┃━━┫
[20:05:39] [Server thread/INFO]: [CLV] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃┃╰━╯┃┃━╋╮╭┫┃━┫╰╋━━┃
[20:05:39] [Server thread/INFO]: [CLV] ╰━━━┻━╮╭┻━━┻━━┻╯╰━━━┻━━╯╰╯╰━━┻━┻━━╯
[20:05:39] [Server thread/INFO]: [CLV] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast
[20:05:39] [Server thread/INFO]: [CLV] ╱╱╱╱╰━━╯  Version: 0.5.8
[20:05:39] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[20:05:39] [Server thread/INFO]: [CLV] 
[20:05:39] [Server thread/INFO]: [CLV] Loading YAML files...
[20:05:39] [Server thread/INFO]: [CLV] Loaded file config.yml.
[20:05:39] [Server thread/INFO]: [CLV] Loaded file lang.yml.
[20:05:39] [Server thread/INFO]: [CLV] Loaded file levels.yml.
[20:05:39] [Server thread/INFO]: [CLV] Loaded file rewards.yml.
[20:05:39] [Server thread/INFO]: [CLV] Loaded file earn-exp.yml.
[20:05:39] [Server thread/INFO]: [CLV] Loaded file anti-abuse.yml.
[20:05:39] [Server thread/INFO]: [CLV] Loaded 6 files in 47ms.
[20:05:39] [Server thread/INFO]: [CLV] 
[20:05:39] [Server thread/INFO]: [CLV] Attempting to connect to MySQL...
[20:05:39] [Server thread/INFO]: [CLV] Connected to MySQL in 84ms.
[20:05:39] [Server thread/INFO]: [CLV] 
[20:05:39] [Server thread/INFO]: [CLV] Loading exp earning events...
[20:05:39] [Server thread/INFO]: [CLV] Loaded 0 exp earn events in 1ms.
[20:05:39] [Server thread/INFO]: [CLV] 
[20:05:39] [Server thread/INFO]: [CLV] Loading anti-abuse...
[20:05:39] [Server thread/INFO]: [CLV] Loaded 2 anti-abuse settings in 1ms.
[20:05:39] [Server thread/INFO]: [CLV] 
[20:05:39] [Server thread/INFO]: [CLV] Loading level data...
[20:05:39] [Server thread/INFO]: [CLV] Loaded 25 level(s) in 1ms.
[20:05:39] [Server thread/INFO]: [CLV] 
[20:05:39] [Server thread/INFO]: [CLV] Loading reward data...
[20:05:39] [Server thread/INFO]: [CLV] Loaded 2 reward(s) in 1ms.
[20:05:39] [Server thread/INFO]: [CLV] 
[20:05:39] [Server thread/INFO]: [CLV] Loading leaderboard data...
[20:05:39] [Server thread/INFO]: [CLV] Loaded 10 players in 6ms.
[20:05:39] [Server thread/INFO]: [CLV] 
[20:05:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: clv [0.5.8]
[20:05:39] [Server thread/INFO]: [CLV] Loaded CLV v0.5.8 in 169ms.
[20:05:39] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[20:05:39] [Server thread/INFO]: [gWhitelist] Enabling gWhitelist v1.0
[20:05:39] [Server thread/INFO]: [gWhitelist] Registering WhitelistEvent..
[20:05:39] [Server thread/INFO]: [gWhitelist] WhitelistEvent registered successfully!
[20:05:39] [Server thread/INFO]: [gWhitelist] Registering TabComplete..
[20:05:39] [Server thread/INFO]: [gWhitelist] TabComplete registered successfully!
[20:05:39] [Server thread/INFO]: [gWhitelist] Selected database type: sqlite
[20:05:40] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0
[20:05:40] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[20:05:40] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v6.1
[20:05:40] [Server thread/INFO]: [AntiPopup] Config enabled.
[20:05:40] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[20:05:40] [Server thread/INFO]: [AntiPopup] Hooked on 1.20
[20:05:40] [Server thread/INFO]: [AntiPopup] Commands registered.
[20:05:40] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[20:05:40] [Server thread/INFO]: [ShowItem] Enabling ShowItem v1.6.43 (build 554)
[20:05:40] [Server thread/INFO]: [ShowItem] Loading Config...
[20:05:40] [Server thread/INFO]: [ShowItem] Metrics are disabled.
[20:05:40] [Server thread/INFO]: [ShowItem] Loading item blocker...
[20:05:40] [Server thread/INFO]: [ShowItem] Found locales en, cz, de
[20:05:40] [Server thread/INFO]: [ShowItem] Loading TranslationMapping...
[20:05:40] [Server thread/INFO]: [ShowItem] Found API-Version 1.13, using new Material IDs...
[20:05:40] [Server thread/INFO]: [ShowItem] TranslationMapping loaded.
[20:05:40] [Server thread/INFO]: [ShowItem] Loading Text Icon Resourcepack mapping...
[20:05:40] [Server thread/INFO]: [ShowItem] Found API-Version 1.13, using new Material IDs...
[20:05:40] [Server thread/INFO]: [ShowItem] Text Icon Resourcepack mapping loaded.
[20:05:40] [Server thread/INFO]: [ShowItem] Using ChatManager_v1_20_R1
[20:05:40] [Server thread/INFO]: [ShowItem] Paper chat decorate event support
[20:05:40] [Server thread/INFO]: [ShowItem] Native adventure support detected.
[20:05:40] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 54a
[20:05:40] [Server thread/INFO]: [UltimateAutoRestart] Build 54a, a free resource by Norska - Thanks for downloading!
[20:05:40] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[20:05:40] [Server thread/INFO]: [MagicCosmetics] Enabling MagicCosmetics v2.9.1
[20:05:40] [Server thread/INFO]: [MagicCosmetics] Enabling ProxyMode!
[20:05:40] [Server thread/INFO]: [MagicCosmetics] Version: v1_20_R1 Detected!
[20:05:40] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: cosmetics.yml
[20:05:40] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[20:05:40] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@e87b7b
[20:05:40] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[20:05:40] [Server thread/INFO]: [MagicCosmetics] MySQL table created successfully
[20:05:40] [Server thread/INFO]: [MagicCosmetics] Validating purchase...
[20:05:40] [Server thread/INFO]: [MagicCosmetics]  
[20:05:40] [Server thread/INFO]: [MagicCosmetics] Welcome mon gen!
[20:05:40] [Server thread/INFO]: [MagicCosmetics] Thank you for using MagicCosmetics =)!
[20:05:40] [Server thread/INFO]: [MagicCosmetics]  
[20:05:40] [Server thread/INFO]: [MagicCosmetics] ModelEngine 3.0.0 found, using old model engine
[20:05:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: magicosmetics [2.9.1]
[20:05:40] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/cosmetics.yml
[20:05:41] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 160
[20:05:41] [Server thread/INFO]: [MagicCosmetics] Registered colors: 9
[20:05:41] [Server thread/INFO]: [MagicCosmetics] Registered items: 18
[20:05:41] [Server thread/INFO]: [MagicCosmetics] Registered tokens: 8
[20:05:41] [Server thread/INFO]: [MagicCosmetics] Registered menus: 8
[20:05:41] [Server thread/ERROR]: [MagicCosmetics] Failed to register events for class com.francobm.magicosmetics.listeners.CitizensListener because net/citizensnpcs/api/event/NPCDeathEvent does not exist.
[20:05:41] [Server thread/INFO]: Oraxen | Plugin "MagicCosmetics" detected, enabling hooks
[20:05:41] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.4
[20:05:41] [Server thread/INFO]: [Vulcan] Server Version: 1.20 detected!
[20:05:41] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[20:05:41] [Server thread/INFO]: [Vulcan] BStats enabled!
[20:05:41] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[20:05:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Vulcan [2.7.4]
[20:05:41] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[20:05:42] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[20:05:42] [Server thread/WARN]: [MagicAvatar] No template has been detected for the player's image, so if they try to get their image and they did not set any image then the placeholder will become an empty string.
[20:05:42] [Server thread/INFO]: [MagicAvatar] Loaded 2 symbols
[20:05:42] [Server thread/INFO]: Running delayed init tasks
[20:05:42] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] Running a developer version ... skipping NMS check.
[20:05:42] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] Hooked into { Multiverse-Core, WorldGuard, PlaceholderAPI, ProtocolLib, SkinsRestorer, Vault }
[20:05:42] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] 3 Custom item(s) loaded!
[20:05:42] [Craft Scheduler Thread - 11 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Verzióinformációk lekérése...
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[20:05:42] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] A frissítés ellenőrzés letiltva a konfigurációban.
[20:05:42] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing anubis_dark_pet.bbmodel.
[20:05:42] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: [DecentHolograms] Loaded 2 holograms!
[20:05:42] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[20:05:42] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[20:05:42] [Craft Scheduler Thread - 21 - Vault/INFO]: [Vault] Checking for Updates ... 
[20:05:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerpoints [3.2.6]
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing anubis_pet.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing anubis_pet_pillar.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing baby_iron_golem.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing bulbshroom.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing bulbwitherrose.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing cavalier_fox.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing cavalier_fox_parts.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing cerberus_pet.bbmodel.
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     Version: 15.0.4
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     Commit: 677e967
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[20:05:42] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[20:05:42] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing cerberus_pet_parts.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing deadbeard_blank.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cookie_0 in bone left_arm has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -27.5 ]
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cookie_1 in bone left_arm has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -27.5 ]
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cookie_2 in bone left_arm has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -27.5 ]
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cookie_3 in bone left_arm has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -27.5 ]
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cookie_4 in bone left_arm has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -27.5 ]
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cookie_5 in bone left_arm has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -27.5 ]
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cookie_6 in bone left_arm has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -27.5 ]
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing deadbeard_pet.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing demonic_circle.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing dropping.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing gravelcreep.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing gravestone.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing honeycreep.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing knight_fox.bbmodel.
[20:05:42] [Craft Scheduler Thread - 21 - Vault/INFO]: [Vault] No new version available
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing lavacreep.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_tinkerer_robot.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_elf.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_elf_emo.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_ghastling.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_ghastling_portal.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_giantturtle.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_giantturtle_parts.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_giantturtle_royal.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_gingerbreadman.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_gingerbreadman_mistake.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_rednose.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_rednose_wolf.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_robolumberjack.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_santa.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_santa_evil.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_santa_gold.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_snowman.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_snowman_creeper.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing phoenix_PET.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing phoenix_PET_parts.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing phoenix_egg.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_3dglasses.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_astro.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_boater.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_bride.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_chef.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_construction.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_cowboyhat.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_daisy.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_disco.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_farmerhat.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_grandma.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_grandpa.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_miner.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_nerdglasses.bbmodel.
[20:05:42] [Craft Scheduler Thread - 18 - ajParkour/INFO]: [ajParkour] You are up to date! (2.12.10)
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_original.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_pirate.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_soldier.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_sunflower.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_top_hat.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing rduck_tuxedo.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing skog_pet.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing skog_pet_birch.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing skog_pet_parts.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing slimecreep.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing snowcreep.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing spongecreep.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing succubus_golem_pet.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing succubus_pet.bbmodel.
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:42] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing teeny_warden.bbmodel.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing teeny_warden_chestglow.bbmodel.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing toffy_crate_creature.bbmodel.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing toffy_crate_raven.bbmodel.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing toffy_crate_sweet_tooth.bbmodel.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing voras_pet.bbmodel.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing voras_pet_red.bbmodel.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing voras_pet_teal.bbmodel.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Importing voras_pet_white.bbmodel.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] [Generating assets]
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating anubis_dark_pet.
[20:05:43] [Server thread/INFO]: Loaded 7 recipes
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating anubis_pet.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating anubis_pet_pillar.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating baby_iron_golem.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating bulbshroom.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating bulbwitherrose.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating cavalier_fox.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating cavalier_fox_parts.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating cerberus_pet.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating cerberus_pet_parts.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating deadbeard_blank.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating deadbeard_pet.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating demonic_circle.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating dropping.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating gravelcreep.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating gravestone.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating honeycreep.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating knight_fox.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating lavacreep.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating lr_tinkerer_robot.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_elf.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_elf_emo.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_ghastling.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_ghastling_portal.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_giantturtle.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_giantturtle_parts.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_giantturtle_royal.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_gingerbreadman.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_gingerbreadman_mistake.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_rednose.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_rednose_wolf.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_robolumberjack.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_santa.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_santa_evil.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_santa_gold.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_snowman.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating pet_snowman_creeper.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating phoenix_pet.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating phoenix_pet_parts.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating phoenix_egg.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_3dglasses.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_astro.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_boater.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_bride.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_chef.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_construction.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_cowboyhat.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_daisy.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_disco.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_farmerhat.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_grandma.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_grandpa.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_miner.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_nerdglasses.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_original.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_pirate.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_soldier.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_sunflower.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_top_hat.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating rduck_tuxedo.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating skog_pet.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating skog_pet_birch.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating skog_pet_parts.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating slimecreep.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating snowcreep.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating spongecreep.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating succubus_golem_pet.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating succubus_pet.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating teeny_warden.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating teeny_warden_chestglow.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating toffy_crate_creature.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating toffy_crate_raven.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating toffy_crate_sweet_tooth.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating voras_pet.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating voras_pet_red.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating voras_pet_teal.
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:43] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Generating voras_pet_white.
[20:05:44] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:05:44] [Craft Scheduler Thread - 13 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[20:05:44] [Server thread/INFO]: Loaded 7 recipes
[20:05:45] [Server thread/INFO]: [JumpPads] CleanUp found no JumpPads to delete!
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.5) is available at:
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[20:05:45] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 4.9.2, you're on: 4.7.0
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[20:05:45] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 2 scripts loaded!
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: javascript [2.1.2]
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pinger [1.0.1]
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: utils [1.0.7]
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: onlinetime [8.2]
[20:05:45] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [2.3]
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[20:05:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.7]
[20:05:45] [Server thread/INFO]: 10 placeholder hook(s) registered!
[20:05:45] [Server thread/INFO]: Done (41.713s)! For help, type "help"
[20:05:45] [Craft Scheduler Thread - 21 - PlaceholderAPI/INFO]: [PAPI] [Javascript-Expansion] Indexed 15 gitscripts
[20:05:45] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "AnubisDarkPet_Despawn" to the pet "AnubisDark", because this skill doesn't exist.
[20:05:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition blockType
[20:05:46] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Error Message: 'dripstone' is not a valid block type.
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: blocktype{m=dripstone}
[20:05:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic blockMask
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Skill: phoenixLEAP | File: /home/container/plugins/MythicMobs/Skills/littleroom/phoenix.yml
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Error Message: 'magma' is not a valid block type.
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:blockmask{m=magma;r=1;d=120}
[20:05:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic blockMask
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Skill: phoenixLEAPLAND-Tick | File: /home/container/plugins/MythicMobs/Skills/littleroom/phoenix.yml
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Error Message: 'magma' is not a valid block type.
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:blockmask{m=magma;r=1;d=120}
[20:05:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic blockMask
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Skill: phoenixLEAPAOE | File: /home/container/plugins/MythicMobs/Skills/littleroom/phoenix.yml
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Error Message: 'magma' is not a valid block type.
[20:05:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:blockmask{m=magma;r=1}
[20:05:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 54a]
[20:05:47] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[20:05:47] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[20:05:47] [Server thread/INFO]:  
[20:05:47] [Server thread/INFO]:  [UltimateAutoRestart] New update available!
[20:05:47] [Server thread/INFO]:  Current version: Build 54a with latest being 2023.12!
[20:05:47] [Server thread/INFO]:  
[20:05:47] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/uar/
[20:05:47] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/uar/
[20:05:47] [Server thread/INFO]: