Paste #125754: Unnamed Server Log Paste

Date: 2024/08/19 22:46:12 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[07:36:17] [ServerMain/INFO]: [bootstrap] Running Java 21 (Java HotSpot(TM) 64-Bit Server VM 21.0.3+7-LTS-152; Oracle Corporation null) on Linux 5.10.0-31-amd64 (amd64)
[07:36:17] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.1-2295-ver/1.21.1@c4a6f63 (2024-08-19T06:29:00Z) for Minecraft 1.21.1
[07:36:17] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[07:36:19] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[07:36:19] [ServerMain/INFO]: [PluginInitializerManager] Initialized 69 plugins
[07:36:19] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - BKCommonLib (1.21.1-v1-SNAPSHOT), RoseStacker (1.5.25)
[07:36:19] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (67):
 - AngelChest (13.6.1), AnimatedScoreboard (0.3.5), AntiPopup (9.2), AuraSkills (2.2.2), AutoCraft (2.2), BankPlus (6.2), Citizens (2.0.35-SNAPSHOT (build 3479)), CommandPanels (3.21.4.0), CoreProtect (23.0), CrazyVouchers (3.6.4), DecentHolograms (2.8.11), DiceFurniture (3.9.2), DiscordSRV (1.28.0), DriveBackupV2 (1.8.0), Elevators (4.0.18), Essentials (2.21.0-dev+110-f1a5caf), FastAsyncWorldEdit (2.11.2-SNAPSHOT-877;a779be4), FurnitureLib (3.2.2), GSit (1.10.0), HeadDatabase (4.18.3), HeadDrop (5.2.0), Images (2.5.0), InsaneAnnouncer (1.4.2), InterfaceHub (2), InventoryRollbackPlus (1.6.18), InvisibleItemFrames (2.16.1), ItemSorter (1.4.7), LibsDisguises (10.0.44-SNAPSHOT), LitLibs (1.1.2), LitMinions (3.1.11), LiteBans (2.15.1), LuckPerms (5.4.139), MaintenanceAddon (2.0.7), My_Worlds (1.20.4-v3), NoDragonEggTP (1.0-SNAPSHOT), OpenInv (5.1.1), Oraxen (1.180.0), PAPIProxyBridge (1.6.2), PhantomSpawnControl (4.18.1), PhaseX (1.0-SNAPSHOT), PlaceholderAPI (2.11.6), PlaytimeLink (1.3.5), PremiumVanish (2.9.13), ProJumpPads (4.0), ProtocolLib (5.3.0-SNAPSHOT-726), PublicCrafters (4.13.12), RHLeafDecay (1.21_R1), SCore (5.24.8.17), SafariNet (1.16.8-SNAPSHOT), ServerSigns (4.9.1), Shop (1.9.0.1), Shopkeepers (2.23.0), ShopkeepersAddon (21.0.2), TAB-Bridge (5.0.7), TempFly (3.1.7), TimeIsMoney (1.9.11), TradeSystem (2.6.1), Vault (1.7.3-b131), VentureChat (3.7.1), VirtualBooks (2.7.7), VoidTeleportPlus (3.5.5), VotingPlugin (6.17.1), WorldGuard (7.0.11-beta1+a801a9d), WorldGuardExtraFlags (4.2.5-SNAPSHOT), XBottler_Recode (1.2), XConomy (2.26.3), packetevents (2.5.0+f4bb1dd8f-SNAPSHOT)
[07:36:25] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[07:36:27] [ServerMain/INFO]: Loaded 1290 recipes
[07:36:27] [ServerMain/INFO]: Loaded 1399 advancements
[07:36:27] [Server thread/INFO]: Starting minecraft server version 1.21.1
[07:36:27] [Server thread/INFO]: Loading properties
[07:36:27] [Server thread/INFO]: This server is running Purpur version 1.21.1-2295-ver/1.21.1@c4a6f63 (2024-08-19T06:29:00Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[07:36:28] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[07:36:28] [Server thread/INFO]: Server Ping Player Sample Count: 12
[07:36:28] [Server thread/INFO]: Using 4 threads for Netty based IO
[07:36:29] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 3 worker threads, and population gen parallelism of 3 threads
[07:36:30] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[07:36:30] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[07:36:30] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[07:36:30] [Server thread/INFO]: Default game type: SURVIVAL
[07:36:30] [Server thread/INFO]: Generating keypair
[07:36:30] [Server thread/INFO]: Starting Minecraft server on 194.104.114.89:30077
[07:36:30] [Server thread/INFO]: Using epoll channel type
[07:36:30] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[07:36:30] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 10 libraries... please wait
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-text-serializer-plain/4.17.0/adventure-text-serializer-plain-4.17.0.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-text-serializer-ansi/4.17.0/adventure-text-serializer-ansi-4.17.0.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/ansi/1.0.3/ansi-1.0.3.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar
[07:36:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loading 1 libraries... please wait
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/json/json/20220320/json-20220320.jar
[07:36:33] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[07:36:33] [Server thread/INFO]: BUKKIT VERSION = 1.21.1-R0.1-SNAPSHOT
[07:36:33] [Server thread/INFO]: PhantomSpawnControl is using the latest implementation (last tested for Internals_v1_20_6).
[07:36:35] [Server thread/INFO]: [AngelChest] Hooked into WorldGuard 7.0.11-beta1+a801a9d
[07:36:36] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loading 2 libraries... please wait
[07:36:36] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[07:36:36] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[07:36:36] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/weltensiedler/skyblock-1.21.1/libraries/org/json/json/20240303/json-20240303.jar
[07:36:36] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.139
[07:36:37] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[07:36:37] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-726
[07:36:37] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.1) has not yet been tested! Proceed with caution.
[07:36:38] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.2-SNAPSHOT-877;a779be4
[07:36:42] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@652112e9]
[07:36:42] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[07:36:42] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.21.1-v1-SNAPSHOT
[07:36:46] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[07:36:59] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.15.1
[07:36:59] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.5.0+f4bb1dd8f-SNAPSHOT
[07:37:05] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[07:37:05] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.20.4-v3
[07:37:05] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+110-f1a5caf
[07:37:05] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44-SNAPSHOT
[07:37:06] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.18.3
[07:37:06] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3479)
[07:37:06] [Server thread/INFO]: [PremiumVanish] Loading server plugin PremiumVanish v2.9.13
[07:37:06] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.11
[07:37:06] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.0
[07:37:06] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.25
[07:37:06] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.180.0
[07:37:06] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.0
[07:37:08] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (1748 ms).
[07:37:08] [Server thread/INFO]: [Shopkeepers] Loading config.
[07:37:08] [Server thread/WARN]: [Shopkeepers] Config: Could not load setting 'debug-options': Expecting a list of values, but got java.lang.String
[07:37:08] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[07:37:08] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[07:37:08] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[07:37:08] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[07:37:08] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[07:37:08] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[07:37:08] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[07:37:08] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[07:37:08] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[07:37:08] [Server thread/INFO]: [FurnitureLib] Loading server plugin FurnitureLib v3.2.2
[07:37:08] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.17.1
[07:37:08] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.24.8.17
[07:37:08] [Server thread/INFO]: [LitLibs] Loading server plugin LitLibs v1.1.2
[07:37:08] [Server thread/INFO]: [VentureChat] Loading server plugin VentureChat v3.7.1
[07:37:08] [Server thread/INFO]: [XConomy] Loading server plugin XConomy v2.26.3
[07:37:08] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v5.1.1
[07:37:08] [Server thread/INFO]: [PhantomSpawnControl] Loading server plugin PhantomSpawnControl v4.18.1
[07:37:08] [Server thread/INFO]: [SafariNet] Loading server plugin SafariNet v1.16.8-SNAPSHOT
[07:37:08] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v3.1.7
[07:37:08] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.2
[07:37:08] [Server thread/INFO]: [NoDragonEggTP] Loading server plugin NoDragonEggTP v1.0-SNAPSHOT
[07:37:08] [Server thread/INFO]: [PAPIProxyBridge] Loading server plugin PAPIProxyBridge v1.6.2
[07:37:08] [Server thread/INFO]: [Elevators] Loading server plugin Elevators v4.0.18
[07:37:08] [Server thread/INFO]: [PublicCrafters] Loading server plugin PublicCrafters v4.13.12
[07:37:08] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.0
[07:37:08] [Server thread/INFO]: [Shop] Loading server plugin Shop v1.9.0.1
[07:37:08] [Server thread/INFO]: [AutoCraft] Loading server plugin AutoCraft v2.2
[07:37:08] [Server thread/INFO]: [PlaytimeLink] Loading server plugin PlaytimeLink v1.3.5
[07:37:08] [Server thread/INFO]: [XBottler_Recode] Loading server plugin XBottler_Recode v1.2
[07:37:08] [Server thread/INFO]: [DriveBackupV2] Loading server plugin DriveBackupV2 v1.8.0
[07:37:08] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v9.2
[07:37:08] [Server thread/WARN]: [AntiPopup] [packetevents] We currently do not support the minecraft version 1.21.1, so things might break. PacketEvents will behave as if the minecraft version were 1.21.0!
[07:37:12] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[07:37:12] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.18
[07:37:12] [Server thread/INFO]: [VoidTeleportPlus] Loading server plugin VoidTeleportPlus v3.5.5
[07:37:12] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.10.0
[07:37:13] [Server thread/INFO]: [ShopkeepersAddon] Loading server plugin ShopkeepersAddon v21.0.2
[07:37:13] [Server thread/INFO]: [InvisibleItemFrames] Loading server plugin InvisibleItemFrames v2.16.1
[07:37:13] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v3.6.4
[07:37:13] [Server thread/INFO]: [DiceFurniture] Loading server plugin DiceFurniture v3.9.2
[07:37:13] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.21.4.0
[07:37:13] [Server thread/INFO]: [BankPlus] Loading server plugin BankPlus v6.2
[07:37:13] [Server thread/INFO]: [MaintenanceAddon] Loading server plugin MaintenanceAddon v2.0.7
[07:37:13] [Server thread/INFO]: [LitMinions] Loading server plugin LitMinions v3.1.11
[07:37:13] [Server thread/INFO]: [IFH] Loading server plugin InterfaceHub v2
[07:37:13] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.1
[07:37:13] [Server thread/INFO]: [AngelChest] Loading server plugin AngelChest v13.6.1
[07:37:13] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
[07:37:13] [Server thread/INFO]: [TimeIsMoney] Loading server plugin TimeIsMoney v1.9.11
[07:37:13] [Server thread/INFO]: [ServerSigns] Loading server plugin ServerSigns v4.9.1
[07:37:13] [Server thread/INFO]: [ItemSorter] Loading server plugin ItemSorter v1.4.7
[07:37:13] [Server thread/INFO]: [InsaneAnnouncer] Loading server plugin InsaneAnnouncer v1.4.2
[07:37:13] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.28.0
[07:37:13] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.3.5
[07:37:13] [Server thread/INFO]: [PX] Loading server plugin PhaseX v1.0-SNAPSHOT
[07:37:13] [Server thread/INFO]: [TAB-Bridge] Loading server plugin TAB-Bridge v5.0.7
[07:37:13] [Server thread/INFO]: [RHLeafDecay] Loading server plugin RHLeafDecay v1.21_R1
[07:37:13] [Server thread/INFO]: [HeadDrop] Loading server plugin HeadDrop v5.2.0
[07:37:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[07:37:14] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@ddbdd3f
[07:37:14] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[07:37:14] [Server thread/INFO]: [HeadDrop] Hooked into WorldGuard!
[07:37:14] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.5-SNAPSHOT
[07:37:14] [Server thread/INFO]: [VirtualBooks] Loading server plugin VirtualBooks v2.7.7
[07:37:14] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[07:37:14] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.139
[07:37:15] [Server thread/INFO]:         __    
[07:37:15] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.139
[07:37:15] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[07:37:15] [Server thread/INFO]: 
[07:37:15] [Server thread/INFO]: [LuckPerms] Loading configuration...
[07:37:16] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[07:37:16] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[07:37:16] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[07:37:16] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[07:37:17] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[07:37:17] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[07:37:18] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4325ms)
[07:37:18] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[07:37:18] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[07:37:19] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[07:37:19] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[07:37:19] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[07:37:19] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[07:37:19] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.2-SNAPSHOT-877;a779be4
[07:37:19] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[07:37:19] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[07:37:19] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[07:37:20] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[07:37:20] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[07:37:21] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.21.1-v1-SNAPSHOT
[07:37:21] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Purpur (Paper) (Spigot) (1.21.1-2295-c4a6f63 | mojmap) : (Unknown) (Minecraft 1.21.1)
[07:37:21] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 6 build(s) out of date.
You are running build 877, the latest version is build 883.
Update at https://www.spigotmc.org/resources/13932/
[07:37:22] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[07:37:22] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[07:37:23] [Server thread/INFO]: [BKCommonLib] JDK17+ incubator vector maths are enabled. Will use it for loading MapDisplay textures.
[07:37:23] [Server thread/INFO]: [BKCommonLib] Welcome to the modern era, welcome to callback hell
[07:37:23] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.21.1-v1-SNAPSHOT (build: 1783) enabled! (2.065s)
[07:37:23] [Server thread/INFO]: [XConomy] Enabling XConomy v2.26.3
[07:37:23] [Server thread/INFO]: [XConomy] UUID-Mode: Default
[07:37:23] [Server thread/INFO]: [XConomy] Language: GERMAN
[07:37:23] [Server thread/INFO]: [XConomy] Saving method - SQLite
[07:37:23] [Server thread/INFO]: [XConomy] SQLite successfully connected
[07:37:23] [Server thread/INFO]: [XConomy] XConomy successfully enabled
[07:37:24] [Server thread/INFO]: [XConomy] Found PlaceholderAPI
[07:37:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: xconomy [2.26.3]
[07:37:24] [Server thread/INFO]: [XConomy] PlaceholderAPI successfully hooked
[07:37:24] [Folia Async Scheduler Thread #0/INFO]: [XConomy] Is the latest version
[07:37:24] [Server thread/INFO]: [XConomy] ===== YiC =====
[07:37:24] [Server thread/INFO]: [IFH] Enabling InterfaceHub v2
[07:37:24] [Server thread/INFO]: [IFH]   /$$$$$$ /$$$$$$$$ /$$   /$$ | API-Version: 1.19
[07:37:24] [Server thread/INFO]: [IFH]  |_  $$_/| $$_____/| $$  | $$ | Author: [Avankziar]
[07:37:24] [Server thread/INFO]: [IFH]    | $$  | $$      | $$  | $$ | Plugin Website: https://www.spigotmc.org/resources/interfacehub.101648/
[07:37:24] [Server thread/INFO]: [IFH]    | $$  | $$$$$   | $$$$$$$$ | Depend Plugins: []
[07:37:24] [Server thread/INFO]: [IFH]    | $$  | $$__/   | $$__  $$ | SoftDepend Plugins: []
[07:37:24] [Server thread/INFO]: [IFH]    | $$  | $$      | $$  | $$ | LoadBefore: []
[07:37:24] [Server thread/INFO]: [IFH]   /$$$$$$| $$      | $$  | $$ | 
[07:37:24] [Server thread/INFO]: [IFH]  |______/|__/      |__/  |__/ | 
[07:37:24] [Server thread/INFO]: [InsaneAnnouncer] Enabling InsaneAnnouncer v1.4.2
[07:37:24] [Server thread/INFO]: [InsaneAnnouncer] Loading Plugin...
[07:37:26] [Server thread/INFO]: [InsaneAnnouncer] Successfully loaded in 2039 ms
[07:37:26] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[07:37:26] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[07:37:26] [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.
[07:37:26] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[07:37:26] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[07:37:26] [Server thread/INFO]: Preparing level "bskyblock_world"
[07:37:26] [Server thread/ERROR]: Could not set generator for default world 'bskyblock_world': Plugin 'BentoBox' does not exist
[07:37:26] [Server thread/ERROR]: Could not set generator for default world 'bskyblock_world_nether': Plugin 'BentoBox' does not exist
[07:37:26] [Server thread/ERROR]: Could not set generator for default world 'bskyblock_world_the_end': Plugin 'BentoBox' does not exist
[07:37:27] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[07:37:27] [Server thread/INFO]: Time elapsed: 941 ms
[07:37:28] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[07:37:28] [Server thread/INFO]: Time elapsed: 110 ms
[07:37:28] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[07:37:28] [Server thread/INFO]: Time elapsed: 77 ms
[07:37:28] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[07:37:28] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[07:37:28] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.15.1
[07:37:29] [Server thread/WARN]: [LiteBans] The duration limit group "moderator" does not have the "tempban" option specified.
Note that tempban/tempmute durations will default to 27 seconds and the permission will default to none.
[07:37:29] [Server thread/WARN]: [LiteBans] The duration limit group "moderator" does not have the "tempmute" option specified.
Note that tempban/tempmute durations will default to 27 seconds and the permission will default to none.
[07:37:29] [Server thread/WARN]: [LiteBans] The duration limit group "other" does not have the "permission" option specified.
Note that tempban/tempmute durations will default to 27 seconds and the permission will default to none.
[07:37:29] [Server thread/WARN]: [LiteBans] The duration limit group "other" does not have the "tempban" option specified.
Note that tempban/tempmute durations will default to 27 seconds and the permission will default to none.
[07:37:29] [Server thread/WARN]: [LiteBans] The duration limit group "other" does not have the "tempmute" option specified.
Note that tempban/tempmute durations will default to 27 seconds and the permission will default to none.
[07:37:29] [Server thread/INFO]: [LiteBans] Using system locale (de)
[07:37:29] [Server thread/INFO]: [LiteBans] Loaded 18 templates from templates.yml!
[07:37:29] [Server thread/INFO]: [LiteBans] Loaded 1 template groups from templates.yml!
[07:37:29] [Server thread/INFO]: [LiteBans] Loading SQL driver: mariadb 3.1.2 (org.mariadb.jdbc.Driver)
[07:37:29] [Server thread/INFO]: [LiteBans] Connecting to database...
[07:37:29] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[07:37:29] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[07:37:29] [Server thread/INFO]: [LiteBans] Connected to MariaDB database successfully (85,4 ms).
[07:37:29] [Server thread/INFO]: [LiteBans] Database connection fully initialized (95,8 ms).
[07:37:29] [LiteBans-0/INFO]: [LiteBans] GeoIP support initialized.
[07:37:29] [Server thread/INFO]: [LiteBans] v2.15.1 enabled. Startup took 451 ms.
[07:37:29] [Server thread/INFO]: [packetevents] Enabling packetevents v2.5.0+f4bb1dd8f-SNAPSHOT
[07:37:29] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[07:37:29] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[07:37:29] [packetevents-update-check-thread/INFO]: [packetevents] You are running a development build of PacketEvents. Your build: (2.5.0+f4bb1dd8f-SNAPSHOT) | Latest release: (2.4.0)
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world) TNT ignition is PERMITTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world) Lighters are PERMITTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world) Lava fire is PERMITTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world) Fire spread is UNRESTRICTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'bskyblock_world'
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world_nether) TNT ignition is PERMITTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world_nether) Lighters are PERMITTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world_nether) Lava fire is PERMITTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world_nether) Fire spread is UNRESTRICTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'bskyblock_world_nether'
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world_the_end) TNT ignition is PERMITTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world_the_end) Lighters are PERMITTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world_the_end) Lava fire is PERMITTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] (bskyblock_world_the_end) Fire spread is UNRESTRICTED.
[07:37:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'bskyblock_world_the_end'
[07:37:30] [Server thread/INFO]: [WorldGuard] Loading region data...
[07:37:31] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.20.4-v3
[07:37:31] [Server thread/INFO]: [My_Worlds] Loading world 'Skyhub'
[07:37:31] [Server thread/INFO]: Preparing start region for dimension minecraft:skyhub
[07:37:32] [Server thread/INFO]: Time elapsed: 559 ms
[07:37:32] [Server thread/INFO]: [WorldGuard] (Skyhub) TNT ignition is PERMITTED.
[07:37:32] [Server thread/INFO]: [WorldGuard] (Skyhub) Lighters are PERMITTED.
[07:37:32] [Server thread/INFO]: [WorldGuard] (Skyhub) Lava fire is PERMITTED.
[07:37:32] [Server thread/INFO]: [WorldGuard] (Skyhub) Fire spread is UNRESTRICTED.
[07:37:32] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Skyhub'
[07:37:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.20.4-v3]
[07:37:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.20.4-v3]
[07:37:32] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[07:37:32] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.20.4-v3 (build: 268) enabled! (1.326s)
[07:37:32] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+110-f1a5caf
[07:37:33] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[07:37:33] [Server thread/INFO]: [Essentials] No kits found to migrate.
[07:37:34] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[07:37:34] [Server thread/INFO]: [Essentials] Using locale de
[07:37:34] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[07:37:35] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[07:37:35] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[07:37:35] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[07:37:35] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44-SNAPSHOT
[07:37:35] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[07:37:35] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R1) (MC: 1.21.1)
[07:37:35] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1427
[07:37:35] [Server thread/INFO]: [LibsDisguises] Build Date: 14/08/2024 08:31
[07:37:35] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[07:37:35] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[07:37:35] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'false', LD will hide oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[07:37:39] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[07:37:39] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[07:37:40] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[07:37:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[07:37:40] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[07:37:40] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.18.3
[07:37:41] [Server thread/ERROR]: Error occurred while enabling HeadDatabase v4.18.3 (Is it up to date?)
java.lang.NumberFormatException: For input string: "craftbukkit"
    at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67) ~[?:?]
    at java.base/java.lang.Integer.parseInt(Integer.java:662) ~[?:?]
    at java.base/java.lang.Integer.parseInt(Integer.java:778) ~[?:?]
    at HeadDatabase-4.18.3.jar/me.arcaniax.hdb.util.NMSUtil.isAtLeastVersion(NMSUtil.java:57) ~[HeadDatabase-4.18.3.jar:?]
    at HeadDatabase-4.18.3.jar/me.arcaniax.hdb.util.NMSUtil.isBelowVersion(NMSUtil.java:85) ~[HeadDatabase-4.18.3.jar:?]
    at HeadDatabase-4.18.3.jar/me.arcaniax.hdb.util.MaterialUtil.parseMaterial(MaterialUtil.java:26) ~[HeadDatabase-4.18.3.jar:?]
    at HeadDatabase-4.18.3.jar/me.arcaniax.hdb.object.Settings.getItemStack(Settings.java:222) ~[HeadDatabase-4.18.3.jar:?]
    at HeadDatabase-4.18.3.jar/me.arcaniax.hdb.object.Settings.<init>(Settings.java:94) ~[HeadDatabase-4.18.3.jar:?]
    at HeadDatabase-4.18.3.jar/me.arcaniax.hdb.Main.onEnable(Main.java:54) ~[HeadDatabase-4.18.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:654) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:603) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:758) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:520) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1231) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:334) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[07:37:41] [Server thread/INFO]: [HeadDatabase] Disabling HeadDatabase v4.18.3
[07:37:41] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3479)
[07:37:41] [Server thread/INFO]: [Citizens] Loading external libraries
[07:37:41] [Server thread/INFO]: [Citizens] Detected system language [[de]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[07:37:41] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[07:37:42] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[07:37:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[07:37:42] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[07:37:43] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.9.13
[07:37:43] [Server thread/INFO]: [de.myzelyam.libraries.com.zaxxer.hikari.HikariDataSource] PremiumVanish Database - Starting...
[07:37:45] [Server thread/INFO]: [de.myzelyam.libraries.com.zaxxer.hikari.HikariDataSource] PremiumVanish Database - Start completed.
[07:37:45] [Server thread/INFO]: [PremiumVanish] Hooked into PaperSpigot for server list ping support
[07:37:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: premiumvanish [2.9.13]
[07:37:46] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[07:37:46] [Server thread/INFO]: [PremiumVanish] Hooked into Essentials
[07:37:46] [Server thread/INFO]: [PremiumVanish] Hooked into LibsDisguises
[07:37:46] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[07:37:46] [Server thread/INFO]: [PremiumVanish] Hooked into PaperSpigot for advancement interception
[07:37:46] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[07:37:46] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.0
[07:37:47] [Server thread/INFO]: [CoreProtect] CoreProtect Edge ist jetzt aktiviert! 
[07:37:47] [Server thread/INFO]: [CoreProtect] Verwenden von SQLite zur Datenspeicherung.
[07:37:47] [Server thread/INFO]: --------------------
[07:37:47] [Server thread/INFO]: [CoreProtect] Genießen CoreProtect? Tritt unser... bei Discord!
[07:37:47] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[07:37:47] [Server thread/INFO]: --------------------
[07:37:47] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.25
[07:37:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.25]
[07:37:49] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.180.0
[07:37:49] [Server thread/INFO]: Oraxen | Version v1_21_R1 has been detected.
[07:37:49] [Server thread/INFO]: Oraxen | Oraxen will use the NMSHandler for this version.
[07:37:49] [Server thread/INFO]: Oraxen | Papers block-updates.disable-noteblock-updates is not enabled.
[07:37:49] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with noteblocks
[07:37:49] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[07:37:49] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml
[07:37:49] [Server thread/INFO]: Oraxen | Papers block-updates.disable-tripwire-updates is not enabled.
[07:37:49] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with tripwires
[07:37:49] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[07:37:49] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml
[07:37:50] [Server thread/INFO]: Oraxen | The texture specified for lord_tag does not exist. This will break all your glyphs.
[07:37:50] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[07:37:50] [Server thread/INFO]: Oraxen | The texture specified for prince_tag does not exist. This will break all your glyphs.
[07:37:50] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[07:37:50] [Server thread/INFO]: Oraxen | The texture specified for king_tag does not exist. This will break all your glyphs.
[07:37:50] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72000 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_4.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72001 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_5.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72003 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_6.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72002 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_7.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72004 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_8.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72005 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_172.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72006 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_173.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72007 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_174.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72008 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_175.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72009 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_176.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72010 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_177.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72011 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_178.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72012 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_179.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72013 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_180.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72014 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_181.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72015 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_182.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72016 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_183.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72017 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_184.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72018 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_185.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72019 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_186.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72020 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_187.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72021 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_188.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72022 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_189.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72023 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_190.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72024 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_191.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72025 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_192.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72026 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_193.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72027 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_194.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72028 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_195.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72029 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_196.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72030 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_197.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72031 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_198.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72032 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_199.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72033 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_200.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72034 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_201.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72035 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_202.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72036 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_203.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72037 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_204.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72038 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_205.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72039 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_206.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72040 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_207.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72041 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_208.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72042 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_209.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72043 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_210.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72044 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_211.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72045 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_212.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72046 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_213.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72047 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_214.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72048 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_215.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72049 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_216.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72050 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_217.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72051 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_218.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72052 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_219.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72053 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_220.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72054 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_221.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72055 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_222.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72056 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_223.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72057 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_139.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72058 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_140.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72059 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_141.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72060 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_142.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72061 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_143.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72062 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_144.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72063 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_145.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72064 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_146.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72065 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_147.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72066 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_132.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72067 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_133.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72068 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_134.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72069 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_135.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72070 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_136.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72071 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_137.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72072 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_138.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72073 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_33.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72074 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_34.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72075 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_35.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72076 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_36.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72077 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_37.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72078 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_38.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72079 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_39.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72080 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_40.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72081 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_41.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72082 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_42.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72083 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_43.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72084 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_44.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72085 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_45.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72086 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_46.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72087 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_47.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72088 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_48.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72089 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_49.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72090 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_50.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72091 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_15.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72092 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_16.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72093 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_17.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72094 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_18.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72095 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_19.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72096 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_20.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72097 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_21.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72098 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_22.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72099 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_23.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72100 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_24.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72101 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_25.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72102 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_26.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72103 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_27.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72104 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_28.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72105 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_29.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72106 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_30.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72107 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_31.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72108 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_32.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72109 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_1.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72110 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_2.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72111 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_3.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72112 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_13.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72113 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_14.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72114 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_51.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72115 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_52.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72116 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_53.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72117 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_54.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72118 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_111.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72119 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_113.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72120 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_114.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72121 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_112.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72122 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_148.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72123 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_154.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72124 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_160.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72125 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_166.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72126 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_149.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72127 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_155.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72128 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_161.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72129 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_167.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72130 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_150.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72131 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_162.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72132 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_168.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72133 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_151.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72134 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_157.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72135 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_163.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72136 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_169.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72137 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_152.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72138 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_153.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72139 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_159.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72140 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_165.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72141 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_171.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72142 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_158.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72143 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_164.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72144 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_170.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72145 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_55.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72146 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_56.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72147 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_57.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72148 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_58.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72149 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_59.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72150 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_60.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72151 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_61.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72152 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_62.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72153 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_63.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72154 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_64.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72155 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_65.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72156 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_66.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72157 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_67.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72158 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_68.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72159 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_69.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72160 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_70.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72161 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_71.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72162 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_72.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72163 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_73.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72164 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_74.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72165 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_75.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72166 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_76.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72167 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_77.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72168 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_78.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72169 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_79.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72170 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_80.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72171 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_81.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72172 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_82.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72173 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_90.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72174 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_91.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72175 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_92.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72176 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_93.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72177 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_94.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72178 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_95.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72179 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_96.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72180 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_97.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72181 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_98.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72182 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_99.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72183 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_100.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72184 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_101.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72185 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_102.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72186 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_103.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72187 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_104.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72188 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_105.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72189 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_106.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72190 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_107.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72191 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_108.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72192 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_109.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72193 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_110.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72194 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_9.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72195 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_10.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72196 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_11.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72197 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_12.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72198 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_115.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72199 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_116.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72200 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_117.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72201 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_118.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72202 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_119.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72203 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_120.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72204 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_121.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72205 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_122.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72206 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_123.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72207 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_124.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72208 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_125.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72209 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_126.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72210 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_127.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72211 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_128.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72212 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_129.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72213 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_130.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:50] [Server thread/INFO]: Oraxen | CustomModelData 72214 is already assigned to another item with this material but different model
[07:37:50] [Server thread/INFO]: Oraxen | Due to Pack.import.retain_custom_model_data being enabled,
[07:37:50] [Server thread/INFO]: Oraxen | the model data will not removed from duplicate_tropical_fish.yml: migrated_131.
[07:37:50] [Server thread/INFO]: Oraxen | There will still be a conflict which you need to solve yourself.
[07:37:50] [Server thread/INFO]: Oraxen | Either reset the CustomModelData of this item, or change the CustomModelData of the conflicting item.
[07:37:51] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:51] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[07:37:51] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[07:37:52] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[07:37:52] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[07:37:53] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[07:37:53] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[07:37:53] [Server thread/INFO]: Oraxen | No broken models or textures were found in the resourcepack
[07:37:53] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[07:37:53] [Server thread/INFO]: 
[07:37:53] [Server thread/INFO]: Oraxen | No duplicate font files found!
[07:37:53] [Server thread/INFO]: 
[07:37:54] [Server thread/INFO]: Oraxen | Successfully loaded on 18.0.62.2
[07:37:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oraxen [1.180.0]
[07:37:54] [Server thread/INFO]: Oraxen | Plugin "PlaceholderAPI" detected, enabling hooks
[07:37:54] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.0
[07:37:54] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[07:37:54] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[07:37:54] [Server thread/INFO]: [Shopkeepers] Loading the data of 7 shopkeepers ...
[07:37:54] [Server thread/INFO]: [FurnitureLib] Enabling FurnitureLib v3.2.2
[07:37:56] [Server thread/INFO]: ==========================================
[07:37:56] [Server thread/INFO]: FurnitureLib Version: 3.2.2
[07:37:56] [Server thread/INFO]: Furniture Author: Ste3et_C0st
[07:37:56] [Server thread/INFO]: Furniture Website: https://dicecraft.de/furniture/
[07:37:56] [Server thread/INFO]: Furniture find ProtectionLib: false
[07:37:56] [Server thread/INFO]: [FurnitureLib] FurnitureLib use FurnitureLib-Paper module
[07:37:56] [Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[07:37:56] [Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[07:37:56] [Server thread/INFO]: [FurnitureLib] FurnitureLib Started SQLite database. Took 164ms
[07:37:56] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (bskyblock_world)
[07:37:59] [Server thread/INFO]: [FurnitureLib] FurnitureLib load 7 models with 49 entities
[07:37:59] [Server thread/INFO]: [FurnitureLib] With avg speed of 438.57 FurnitureModel/ms
[07:37:59] [Server thread/INFO]: [FurnitureLib] It takes: 00:03.071
[07:37:59] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (bskyblock_world_nether)
[07:37:59] [Server thread/INFO]: [FurnitureLib] No Models are found in world: bskyblock_world_nether
[07:37:59] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (bskyblock_world_the_end)
[07:37:59] [Server thread/INFO]: [FurnitureLib] No Models are found in world: bskyblock_world_the_end
[07:37:59] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Skyhub)
[07:37:59] [Server thread/INFO]: [FurnitureLib] FurnitureLib load 31 models with 383 entities
[07:37:59] [Server thread/INFO]: [FurnitureLib] With avg speed of 8.77 FurnitureModel/ms
[07:37:59] [Server thread/INFO]: [FurnitureLib] It takes: 00:00.272
[07:38:01] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[07:38:01] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[07:38:03] [Server thread/INFO]: [FurnitureLib] FurnitureLib Load 68 model schematics into Ram. Took 3526ms
[07:38:03] [Server thread/INFO]: Furniture load finish :)
[07:38:03] [Server thread/INFO]: ==========================================
[07:38:03] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.17.1
[07:38:03] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[07:38:04] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Starting...
[07:38:04] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Start completed.
[07:38:05] [Server thread/INFO]: [VotingPlugin] Using BungeeMethod: PLUGINMESSAGING
[07:38:05] [Server thread/INFO]: [VotingPlugin] Loaded plugin message channels: vp:vp
[07:38:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[07:38:05] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[07:38:07] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[07:38:07] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.17.1
[07:38:07] [Server thread/INFO]: [SCore] Enabling SCore v5.24.8.17
[07:38:08] [Server thread/INFO]: ================ SCore ================
[07:38:08] [Server thread/INFO]: SCore is running on Folia
[07:38:08] [Server thread/INFO]: SCore is running on Paper or fork
[07:38:08] [Server thread/INFO]: SCore Version of the server 1.21.1-2295-c4a6f63 (MC: 1.21.1) !
[07:38:08] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[07:38:08] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.11-beta1+a801a9d)  Load Before
[07:38:08] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[07:38:08] [Server thread/INFO]: SCore CoreProtect hooked !  (23.0)  Load Before
[07:38:08] [Server thread/INFO]: SCore ProtocolLib hooked !
[07:38:08] [Server thread/INFO]: SCore Locale setup: EN
[07:38:08] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.18.3) Load After
[07:38:08] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.11)  Load Before
[07:38:08] [Server thread/INFO]: SCore Oraxen hooked !  (1.180.0)  Load Before
[07:38:08] [Server thread/INFO]: SCore RoseStacker hooked !  (1.5.25)  Load Before
[07:38:08] [Server thread/INFO]: SCore WorldEdit hooked !  (2.11.2-SNAPSHOT-877;a779be4)  Load Before
[07:38:08] [Server thread/INFO]: SCore Language of the editor setup on EN
[07:38:08] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[07:38:08] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[07:38:08] [Server thread/INFO]: SCore Connection to the db...
[07:38:08] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[07:38:08] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[07:38:08] [Server thread/INFO]: SCore Creating table Commands if not exists...
[07:38:08] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[07:38:08] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[07:38:08] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[07:38:08] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[07:38:08] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[07:38:09] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[07:38:09] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[07:38:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[07:38:09] [Server thread/INFO]: ================ SCore ================
[07:38:09] [Server thread/INFO]: [LitLibs] Enabling LitLibs v1.1.2
[07:38:09] [Server thread/INFO]: [LitLibs] Version found: 1.21
[07:38:09] [Server thread/INFO]: [LitLibs] LitLibs enabled version v1.1.2
[07:38:09] [Server thread/INFO]: [VentureChat] Enabling VentureChat v3.7.1
[07:38:09] [Server thread/INFO]: [VentureChat] - Initializing...
[07:38:09] [Server thread/INFO]: [VentureChat] - Config found! Loading file.
[07:38:09] [Server thread/INFO]: [VentureChat] - Checking for Vault...
[07:38:09] [Server thread/INFO]: [VentureChat] - Loading player data
[07:38:09] [Server thread/INFO]: [VentureChat] - Registering Listeners
[07:38:09] [Server thread/INFO]: [VentureChat] - Attaching to Executors
[07:38:09] [Server thread/INFO]: [VentureChat] - Establishing BungeeCord
[07:38:09] [Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[07:38:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: venturechat [3.7.1]
[07:38:09] [Server thread/INFO]: [VentureChat] - Enabled Successfully
[07:38:09] [Server thread/INFO]: [OpenInv] Enabling OpenInv v5.1.1
[07:38:09] [Server thread/INFO]: [PhantomSpawnControl] Enabling PhantomSpawnControl v4.18.1
[07:38:10] [Server thread/INFO]: [PhantomSpawnControl] This plugin was made by alex_qp.
[07:38:10] [Server thread/INFO]: [SafariNet] Enabling SafariNet v1.16.8-SNAPSHOT
[07:38:10] [Server thread/INFO]: [SafariNet] Using v1_21_R1
[07:38:10] [Server thread/INFO]: [SafariNet] [SafariNet] WorldGuard found and using it.
[07:38:10] [Server thread/INFO]: [SafariNet] [SafariNet] Citizens found and using it.
[07:38:10] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[07:38:11] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[07:38:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tempfly [3.1.7]
[07:38:11] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.2
[07:38:12] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[07:38:13] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[07:38:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.2]
[07:38:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.2]
[07:38:13] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[07:38:13] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[07:38:13] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[07:38:13] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[07:38:13] [Server thread/INFO]: [AuraSkills] Successfully registered hook Oraxen
[07:38:13] [Server thread/INFO]: [AuraSkills] Loaded 148 config options in 182 ms
[07:38:14] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[07:38:14] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[07:38:15] [Server thread/INFO]: [NoDragonEggTP] Enabling NoDragonEggTP v1.0-SNAPSHOT
[07:38:15] [Server thread/INFO]: [PAPIProxyBridge] Enabling PAPIProxyBridge v1.6.2
[07:38:15] [Server thread/INFO]: [PAPIProxyBridge] PAPIProxyBridge (Purpur 1.6.2) has been enabled!
[07:38:15] [Server thread/INFO]: [Elevators] Enabling Elevators v4.0.18
[07:38:15] [Server thread/INFO]: [PublicCrafters] Enabling PublicCrafters v4.13.12
[07:38:15] [Server thread/WARN]: [PublicCrafters] Could not save messages.yml to plugins/PublicCrafters/messages.yml because messages.yml already exists.
[07:38:16] [Server thread/INFO]: [PublicCrafters] Detected version 'v1_21_R1'
[07:38:16] [Server thread/INFO]: [Images] Enabling Images v2.5.0
[07:38:16] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[07:38:16] [Server thread/INFO]: [Shop] Enabling Shop v1.9.0.1
[07:38:16] [Server thread/INFO]: [Shop] Vault dependency found. Using the Vault economy (Taler) for currency on the server.
[07:38:16] [Server thread/INFO]: [Shop] Using default display class - com.snowgears.shop.display.Display
[07:38:17] [Server thread/INFO]: [com.snowgears.shop.artifact.hikari.HikariDataSource] HikariPool-1 - Starting...
[07:38:17] [Server thread/INFO]: [com.snowgears.shop.artifact.hikari.pool.HikariPool] HikariPool-1 - Added connection com.snowgears.shop.artifact.mariadbjdbc.MariaDbConnection@51af1db4
[07:38:17] [Server thread/INFO]: [com.snowgears.shop.artifact.hikari.HikariDataSource] HikariPool-1 - Start completed.
[07:38:17] [Server thread/INFO]: [Shop] Established connection to database. Logging is enabled.
[07:38:17] [Server thread/INFO]: [Shop] Successfully initialized database.
[07:38:17] [Server thread/INFO]: [AutoCraft] Enabling AutoCraft v2.2
[07:38:17] [Server thread/INFO]: [AutoCraft] AutoCraft plugin started
[07:38:17] [Server thread/INFO]: [PlaytimeLink] Enabling PlaytimeLink v1.3.5
[07:38:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: VPTlink [1.3.5]
[07:38:17] [Server thread/INFO]: [PlaytimeLink] PlaytimeLink has been loaded.
[07:38:17] [Server thread/INFO]: [XBottler_Recode] Enabling XBottler_Recode v1.2
[07:38:17] [Server thread/INFO]: [XBottler_Recode] Plugin enabled
[07:38:17] [Server thread/INFO]: [DriveBackupV2] Enabling DriveBackupV2 v1.8.0
[07:38:21] [Server thread/INFO]: [DriveBackupV2] Config loaded!
[07:38:21] [Server thread/INFO]: [DriveBackupV2] Scheduling a backup to run every 60 minutes
[07:38:21] [Server thread/INFO]: [DriveBackupV2] Metrics started
[07:38:21] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v9.2
[07:38:21] [Server thread/INFO]: [AntiPopup] Config enabled.
[07:38:21] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[07:38:21] [Server thread/INFO]: [AntiPopup] Hooked on 1.21
[07:38:21] [Server thread/INFO]: [AntiPopup] Commands registered.
[07:38:21] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[07:38:21] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.18
[07:38:21] [Server thread/INFO]: [InventoryRollbackPlus] Attempting Paper support for version: 1.21.1-R0.1-SNAPSHOT
[07:38:21] [Server thread/INFO]: [InventoryRollbackPlus] Found CraftBukkit Package Version: v1_21_R1
[07:38:22] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[07:38:22] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[07:38:22] [Server thread/INFO]: [VoidTeleportPlus] Enabling VoidTeleportPlus v3.5.5
[07:38:22] [Server thread/INFO]: [VoidTeleport+] Developed by EndlessGames.
[07:38:22] [Server thread/INFO]: 
[07:38:22] [Server thread/INFO]: 
[07:38:22] [Server thread/INFO]:                 ===================================================
[07:38:22] [Server thread/INFO]:                                    VoidTeleport+
[07:38:22] [Server thread/INFO]:                 ===================================================
[07:38:22] [Server thread/INFO]: 
[07:38:22] [Server thread/INFO]:                               Current version: 3.5.5
[07:38:22] [Server thread/INFO]:                         You are running the latest version!
[07:38:22] [Server thread/INFO]: 
[07:38:22] [Server thread/INFO]:                 ===================================================
[07:38:22] [Server thread/INFO]: [GSit] Enabling GSit v1.10.0
[07:38:22] [Server thread/INFO]: [GSit] Das Plugin wurde erfolgreich aktiviert.
[07:38:22] [Server thread/INFO]: [GSit] Verknüpfung mit PlaceholderAPI erfolgreich!
[07:38:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.10.0]
[07:38:22] [Server thread/INFO]: [GSit] Verknüpfung mit WorldGuard erfolgreich!
[07:38:22] [Server thread/INFO]: [ShopkeepersAddon] Enabling ShopkeepersAddon v21.0.2
[07:38:22] [Server thread/WARN]: [ShopkeepersAddon] Could not save messages.yml to plugins/ShopkeepersAddon/messages.yml because messages.yml already exists.
[07:38:22] [Server thread/INFO]: [ShopkeepersAddon] - Attempting to enable Economy Hook.
[07:38:22] [Server thread/INFO]: [ShopkeepersAddon] - EconomyHooking Success.
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] Enabling InvisibleItemFrames v2.16.1
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] Initializing managers...
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] MemoryDataManager initialized!
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] Using Paper Implementation!
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] ImplementationManager initialized!
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] BlockLockerManager initialized!
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] Registering commands...
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] Registering listeners...
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] Loading data...
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] Starting metrics...
[07:38:22] [Server thread/INFO]: [InvisibleItemFrames] Done and enabled in 56,34ms
[07:38:22] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v3.6.4
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Loading the users.yml
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Successfully loaded users.yml
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Loading custom files.
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Money.yml.
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Random_1.yml.
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/GSet.yml.
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Random_2.yml.
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/RankUp.yml.
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /codes/Starter-Money.yml.
[07:38:23] [Server thread/INFO]: [CrazyVouchers] Finished loading custom files.
[07:38:23] [Server thread/INFO]: [DiceFurniture] Enabling DiceFurniture v3.9.2
[07:38:25] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[07:38:25] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[07:38:26] [Server thread/ERROR]: [CraftMagicNumbers] Exception modifying ItemStack
java.lang.Throwable: com.mojang.brigadier.exceptions.CommandSyntaxException: Unknown item 'minecraft:' at position 0: <--[HERE]
    at org.bukkit.craftbukkit.util.CraftMagicNumbers.modifyItemStack(CraftMagicNumbers.java:287) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Objects.christmas.AdventCalender.getSkull(AdventCalender.java:442) ~[DiceFurniture-3.9.2.jar:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Objects.christmas.AdventCalender.getStack(AdventCalender.java:341) ~[DiceFurniture-3.9.2.jar:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Objects.christmas.AdventCalender.check(AdventCalender.java:323) ~[DiceFurniture-3.9.2.jar:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Objects.christmas.AdventCalender.<init>(AdventCalender.java:72) ~[DiceFurniture-3.9.2.jar:?]
    at FurnitureLib-3.2.2.jar/de.Ste3et_C0st.FurnitureLib.Crafting.Project.applyFunction(Project.java:301) ~[FurnitureLib-3.2.2.jar:?]
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) ~[?:?]
    at FurnitureLib-3.2.2.jar/de.Ste3et_C0st.FurnitureLib.Crafting.Project.applyFunction(Project.java:289) ~[FurnitureLib-3.2.2.jar:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Main.FurnitureHook.applyPluginFunctions(FurnitureHook.java:113) ~[DiceFurniture-3.9.2.jar:?]
    at FurnitureLib-3.2.2.jar/de.Ste3et_C0st.FurnitureLib.main.FurnitureLib.registerPlugin(FurnitureLib.java:135) ~[FurnitureLib-3.2.2.jar:?]
    at FurnitureLib-3.2.2.jar/de.Ste3et_C0st.FurnitureLib.main.FurniturePlugin.register(FurniturePlugin.java:60) ~[FurnitureLib-3.2.2.jar:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Main.main.onEnable(main.java:48) ~[DiceFurniture-3.9.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:654) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:603) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:758) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:520) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1231) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:334) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unknown item 'minecraft:' at position 0: <--[HERE]
[07:38:26] [Server thread/ERROR]: [CraftMagicNumbers] Exception modifying ItemStack
java.lang.Throwable: com.mojang.brigadier.exceptions.CommandSyntaxException: Unknown item 'minecraft:' at position 0: <--[HERE]
    at org.bukkit.craftbukkit.util.CraftMagicNumbers.modifyItemStack(CraftMagicNumbers.java:287) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Objects.christmas.AdventCalender.getSkull(AdventCalender.java:442) ~[DiceFurniture-3.9.2.jar:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Objects.christmas.AdventCalender.getStack(AdventCalender.java:342) ~[DiceFurniture-3.9.2.jar:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Objects.christmas.AdventCalender.check(AdventCalender.java:323) ~[DiceFurniture-3.9.2.jar:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Objects.christmas.AdventCalender.<init>(AdventCalender.java:72) ~[DiceFurniture-3.9.2.jar:?]
    at FurnitureLib-3.2.2.jar/de.Ste3et_C0st.FurnitureLib.Crafting.Project.applyFunction(Project.java:301) ~[FurnitureLib-3.2.2.jar:?]
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) ~[?:?]
    at FurnitureLib-3.2.2.jar/de.Ste3et_C0st.FurnitureLib.Crafting.Project.applyFunction(Project.java:289) ~[FurnitureLib-3.2.2.jar:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Main.FurnitureHook.applyPluginFunctions(FurnitureHook.java:113) ~[DiceFurniture-3.9.2.jar:?]
    at FurnitureLib-3.2.2.jar/de.Ste3et_C0st.FurnitureLib.main.FurnitureLib.registerPlugin(FurnitureLib.java:135) ~[FurnitureLib-3.2.2.jar:?]
    at FurnitureLib-3.2.2.jar/de.Ste3et_C0st.FurnitureLib.main.FurniturePlugin.register(FurniturePlugin.java:60) ~[FurnitureLib-3.2.2.jar:?]
    at DiceFurniture-3.9.2.jar/de.Ste3et_C0st.Furniture.Main.main.onEnable(main.java:48) ~[DiceFurniture-3.9.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:654) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:603) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:758) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:520) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1231) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:334) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unknown item 'minecraft:' at position 0: <--[HERE]
[07:38:26] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.21.4.0
[07:38:26] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.4.0 Plugin Loading...
[07:38:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [1.0.0]
[07:38:26] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.4.0 Plugin Loaded!
[07:38:26] [Server thread/INFO]: [BankPlus] Enabling BankPlus v6.2
[07:38:26] [Server thread/INFO]: 
[07:38:26] [Server thread/INFO]:     BankPlus Enabling plugin...
[07:38:26] [Server thread/INFO]:     Running on version 6.2!
[07:38:26] [Server thread/INFO]:     Detected server version: 1.21.1-2295-c4a6f63 (MC: 1.21.1)
[07:38:26] [Server thread/INFO]:     Setting up the plugin...
[07:38:26] [Server thread/INFO]:     Done! (353ms)
[07:38:26] [Server thread/INFO]: 
[07:38:26] [Server thread/INFO]: BankPlus [INFO] Hooked into PlaceholderAPI!
[07:38:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bankplus [6.2]
[07:38:26] [Server thread/INFO]: BankPlus [INFO] Hooked into Essentials!
[07:38:26] [Server thread/INFO]: [MaintenanceAddon] Enabling MaintenanceAddon v2.0.7
[07:38:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: maintenance [2.0.7]
[07:38:27] [Server thread/INFO]: [LitMinions] Enabling LitMinions v3.1.11
[07:38:27] [Server thread/INFO]: [LitLibs] New provider: LitMinions is hooked into LitLibs!
[07:38:27] [Server thread/INFO]: [LitMinions] Enabling LitMinions
[07:38:27] [Server thread/INFO]: [LitMinions] Found price hook: Essentials
[07:38:27] [Server thread/INFO]: [LitMinions] Selected hologram hook: DecentHolograms
[07:38:27] [Server thread/INFO]: [LitMinions] No protection hook has been found.
[07:38:27] [Server thread/INFO]: [LitMinions] Found price hook: Essentials
[07:38:27] [Server thread/INFO]: [LitMinions] Registered PlaceholderAPI hook!
[07:38:27] [Server thread/INFO]: [LitMinions] Found PlaceHolderAPI hook
[07:38:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: litminions [1.0.0]
[07:38:27] [Server thread/INFO]: [LitMinions] Found other hook: FastAsyncWorldEdit
[07:38:27] [Server thread/INFO]: [LitMinions] Created config and lang files.
[07:38:27] [Server thread/INFO]: [LitMinions] Registered events
[07:38:27] [Server thread/INFO]: [LitMinions] LitMinions enabled v3.1.11
[07:38:27] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.1
[07:38:28] [Server thread/INFO]:  
[07:38:28] [Server thread/INFO]: __________________________________________________________
[07:38:28] [Server thread/INFO]:  
[07:38:28] [Server thread/INFO]:                        TradeSystem [2.6.1]
[07:38:28] [Server thread/INFO]:  
[07:38:28] [Server thread/INFO]: Status:
[07:38:28] [Server thread/INFO]:  
[07:38:28] [Server thread/INFO]: MC-Version: Paper (1.21.1)
[07:38:28] [Server thread/INFO]:  
[07:38:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[07:38:29] [Server thread/INFO]:   > Loading sounds
[07:38:29] [Server thread/INFO]:   > Loading blacklist
[07:38:29] [Server thread/INFO]:     ...got 3 blocked item(s)
[07:38:29] [Server thread/INFO]:   > Loading layouts
[07:38:29] [Server thread/INFO]:     ...got 4 layout(s)
[07:38:29] [Server thread/INFO]:   > Queuing database initializing task
[07:38:29] [Server thread/INFO]:  
[07:38:29] [Server thread/INFO]: Finished (1353ms)
[07:38:29] [Server thread/INFO]:  
[07:38:29] [Server thread/INFO]: __________________________________________________________
[07:38:29] [Server thread/INFO]:  
[07:38:29] [Server thread/INFO]: [AngelChest] Enabling AngelChest v13.6.1
[07:38:30] [Server thread/INFO]: [AngelChest] groups.yml does not exist, skipping custom group settings.
[07:38:30] [Server thread/INFO]: [AngelChest] blacklist.yml does not exist, disabling item blacklist.
[07:38:30] [Server thread/INFO]: [AngelChest] No graveyards.yml found, disabling Graveyards feature
[07:38:30] [Server thread/WARN]: [AngelChest] Could not add usage/description to command acopen
[07:38:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: angelchest [GENERIC]
[07:38:30] [Server thread/INFO]: [AngelChest] Successfully hooked into Vault and the EconomyProvider, enabling economy functions.
[07:38:31] [Server thread/INFO]: [AngelChest] [ACF] Enabled Asynchronous Tab Completion Support!
[07:38:31] [Server thread/INFO]: [AngelChest] Successfully enabled AngelChest Plus v13.6.1/(154670) (Premium: true)
[07:38:31] [Server thread/INFO]: [TimeIsMoney] Enabling TimeIsMoney v1.9.11
[07:38:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tim [1.9.11]
[07:38:31] [Server thread/INFO]: [TimeIsMoney] [TimeIsMoney] &aLoaded 3 Payouts!
[07:38:31] [Server thread/INFO]: [TimeIsMoney] Time is Money: Essentials found. Hook in it -> Will use Essentials's AFK feature if afk is enabled.
[07:38:31] [Server thread/INFO]: [TimeIsMoney] Time is Money v1.9.11 started.
[07:38:31] [Server thread/INFO]: [ServerSigns] Enabling ServerSigns v4.9.1
[07:38:31] [Server thread/INFO]: [ServerSigns] Version 4.9.1 is now enabled.
[07:38:31] [Server thread/INFO]: [ItemSorter] Enabling ItemSorter v1.4.7
[07:38:31] [Thread-30/INFO]: [ServerSigns] Skipping plugin update as you are ahead of the curve!
[07:38:31] [Server thread/INFO]: [ItemSorter] Checking for updates ...
[07:38:31] [Server thread/INFO]: [ItemSorter] No updates found. You are up to date!
[07:38:32] [Server thread/INFO]: [ItemSorter] Checking for database migrations ... Your version: 1 last DB version: 1
[07:38:32] [Server thread/INFO]: [ItemSorter] No migration needed. Your on the last DB version.
[07:38:32] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.28.0
[07:38:32] [Server thread/INFO]: [PremiumVanish] Hooked into DiscordSRV
[07:38:32] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.3.5
[07:38:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: animatedscoreboard [0.0.1]
[07:38:32] [Server thread/INFO]: [PX] Enabling PhaseX v1.0-SNAPSHOT
[07:38:32] [Server thread/INFO]: [PX] Die Phase X ist soeben gestartet... ;-)
[07:38:32] [Server thread/INFO]: [TAB-Bridge] Enabling TAB-Bridge v5.0.7
[07:38:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.0.7]
[07:38:32] [Server thread/INFO]: [RHLeafDecay] Enabling RHLeafDecay v1.21_R1
[07:38:33] [Server thread/INFO]: [RHLeafDecay] The plugin has been loaded!
[07:38:33] [Server thread/INFO]: [RHLeafDecay] You are using version 1.21_R1 /w 💕 by X0R3
[07:38:33] [Server thread/INFO]: [RHLeafDecay] Info:
[07:38:33] [Server thread/INFO]: [RHLeafDecay] If you want your server be presented on the plugin page, then please contact me! :)
[07:38:33] [Server thread/INFO]: [HeadDrop] Enabling HeadDrop v5.2.0
[07:38:33] [Server thread/INFO]: 
[07:38:33] [Server thread/INFO]: ==============================
[07:38:33] [Server thread/INFO]:      HeadDrop Plugin v5.2.0
[07:38:33] [Server thread/INFO]: ==============================
[07:38:33] [pool-77-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (42aad8401b73c52bb4edd11d9a73aa8a6e1619c1)
[07:38:33] [Server thread/INFO]: [HeadDrop] Enabled successfully!
[07:38:33] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.5-SNAPSHOT
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[07:38:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[07:38:33] [Server thread/INFO]: [VirtualBooks] Enabling VirtualBooks v2.7.7
[07:38:33] [Server thread/INFO]: [VirtualBooks] Enabling the plugin v2.7.7
[07:38:33] [Server thread/INFO]: [VirtualBooks] Your server is running version 1.21.1-R0.1-SNAPSHOT
[07:38:33] [Server thread/INFO]: [VirtualBooks] VirtualBooks setup was successful!
[07:38:33] [Server thread/INFO]: [VirtualBooks] VirtualBooks setup process is complete!
[07:38:33] [Server thread/INFO]: [VirtualBooks] Attempting to register book commands...
[07:38:33] [Server thread/INFO]: [VirtualBooks] Commands registered successfully!
[07:38:34] [Server thread/INFO]: [spark] Starting background profiler...
[07:38:35] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[07:38:35] [Server thread/INFO]: Done preparing level "bskyblock_world" (69.096s)
[07:38:35] [Server thread/INFO]: Starting GS4 status listener
[07:38:35] [Server thread/WARN]: Unable to initialise query system on 194.104.114.89:25566
java.net.BindException: Die Adresse wird bereits verwendet
    at java.base/sun.nio.ch.Net.bind0(Native Method) ~[?:?]
    at java.base/sun.nio.ch.Net.bind(Net.java:565) ~[?:?]
    at java.base/sun.nio.ch.DatagramChannelImpl.bindInternal(DatagramChannelImpl.java:1329) ~[?:?]
    at java.base/sun.nio.ch.DatagramChannelImpl.bind(DatagramChannelImpl.java:1299) ~[?:?]
    at java.base/sun.nio.ch.DatagramSocketAdaptor.bind(DatagramSocketAdaptor.java:108) ~[?:?]
    at java.base/java.net.DatagramSocket.createDelegate(DatagramSocket.java:1425) ~[?:?]
    at java.base/java.net.DatagramSocket.<init>(DatagramSocket.java:328) ~[?:?]
    at java.base/java.net.DatagramSocket.<init>(DatagramSocket.java:387) ~[?:?]
    at net.minecraft.server.rcon.thread.QueryThreadGs4.initSocket(QueryThreadGs4.java:320) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.rcon.thread.QueryThreadGs4.start(QueryThreadGs4.java:305) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.rcon.thread.QueryThreadGs4.create(QueryThreadGs4.java:79) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:377) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1231) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:334) ~[purpur-1.21.1.jar:1.21.1-2295-c4a6f63]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[07:38:35] [Server thread/INFO]: Running delayed init tasks
[07:38:35] [Craft Scheduler Thread - 16 - DriveBackupV2/INFO]: [DriveBackupV2] Checking for updates...
[07:38:35] [Craft Scheduler Thread - 22 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[07:38:35] [Craft Scheduler Thread - 26 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[07:38:35] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] Checking for Updates ... 
[07:38:35] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[07:38:35] [Craft Scheduler Thread - 26 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[07:38:35] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] No new version available
[07:38:35] [Craft Scheduler Thread - 21 - BankPlus/INFO]: BankPlus [INFO] The plugin is updated!
[07:38:35] [Craft Scheduler Thread - 23 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[07:38:35] [Craft Scheduler Thread - 22 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[07:38:35] [Craft Scheduler Thread - 19 - PlaytimeLink/INFO]: [PlaytimeLink] You are using the latest version.
[07:38:35] [Craft Scheduler Thread - 13 - RoseStacker/INFO]: [RoseStacker] Fetched 129 translation locales.
[07:38:35] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[07:38:35] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[07:38:35] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Abrufen von Versionsinformationen...
[07:38:35] [Craft Scheduler Thread - 11 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value tomcatchriss! It's neither a valid name nor UUID.
[07:38:35] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loaded 13 holograms!
[07:38:36] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[07:38:36] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit erfolgreich anmelden initialisiert.
[07:38:36] [Server thread/INFO]: Loaded 1290 recipes
[07:38:36] [Craft Scheduler Thread - 5 - InsaneAnnouncer/INFO]: [InsaneAnnouncer] Translations successfully loaded & applied (34 InsaneAnnouncer and Base Translation files found)
[07:38:36] [Server thread/INFO]: Loaded 1399 advancements
[07:38:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[07:38:38] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[07:38:39] [Server thread/INFO]: [AuraSkills] Loaded 15 skills with 318 total sources
[07:38:39] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[07:38:39] [Server thread/INFO]: [AuraSkills] Loaded 30 pattern rewards and 0 level rewards
[07:38:39] [Server thread/INFO]: [AuraSkills] Loaded 32 loot entries in 4 pools and 2 tables
[07:38:39] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[07:38:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Konsolenkanal-ID ist ungültig, keine Konsolenausgabe Weiterleitung aktiv
[07:38:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] JDBC tables passed validation, using JDBC account backend
[07:38:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere VentureChat Verbindung
[07:38:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere Essentials Verbindung
[07:38:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere LuckPerms Verbindung
[07:38:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere PlaceholderAPI Verbindung
[07:38:40] [DiscordSRV - Channel Updater/ERROR]: [DiscordSRV] ChannelUpdater entry 1135691568389566556 has an invalid id
[07:38:40] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[07:38:41] [Server thread/INFO]: [Citizens] 20 NPCs geladen.
[07:38:42] [Server thread/INFO]: [LitMinions] Loaded 39 minions in 1124ms
[07:38:42] [Server thread/INFO]: [LitMinions] Loading items
[07:38:42] [Server thread/INFO]: [PhantomSpawnControl] You are using the latest version of PhantomSpawnControl.
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[07:38:42] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion arm due to a missing plugin: AdvancedRegionMarket
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: random [2.1.0]
[07:38:42] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldborder [1.0.0]
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[07:38:42] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[07:38:42] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[07:38:42] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion ViaVersion due to an unknown issue.
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[07:38:42] [Server thread/WARN]: [PlaceholderAPI] There was an issue with loading an expansion.
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[07:38:42] [Server thread/INFO]: 12 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[07:38:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.28.0]
[07:38:42] [Server thread/INFO]: Done (146.557s)! For help, type "help"
[07:38:42] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7399ms or 147 ticks behind
[07:38:43] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[07:38:44] [Craft Scheduler Thread - 14 - Oraxen/INFO]: Oraxen | Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=36c34d7efec95d46353d68312aba04a84227293b in 6408 ms
[07:38:44] [Craft Scheduler Thread - 22 - Images/INFO]: [Images] Loaded 7 images...
[07:38:47] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[07:38:47] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[07:38:52] [Craft Scheduler Thread - 7 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.17.1