Paste #123075: Unnamed Server Log Paste

Date: 2024/05/25 10:10:28 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


[01:05:46] [ServerMain/INFO]: [MavenLibraryResolver] Downloading https://repo.papermc.io/repository/maven-public/dev/triumphteam/triumph-cmd-bukkit/2.0.0-SNAPSHOT/maven-metadata.xml
[01:05:47] [ServerMain/INFO]: [MavenLibraryResolver] Downloading https://repo.papermc.io/repository/maven-public/dev/triumphteam/triumph-cmd-core/2.0.0-SNAPSHOT/maven-metadata.xml
[01:05:50] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[01:05:51] [ServerMain/INFO]: Loaded 1174 recipes
[01:05:51] [ServerMain/INFO]: Loaded 1273 advancements
[01:05:52] [Server thread/INFO]: Starting minecraft server version 1.20.4
[01:05:52] [Server thread/INFO]: Loading properties
[01:05:52] [Server thread/INFO]: This server is running Paper version git-Paper-496 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: 7ac24a1 on ver/1.20.4)
[01:05:52] [Server thread/INFO]: Server Ping Player Sample Count: 12
[01:05:52] [Server thread/INFO]: Using 4 threads for Netty based IO
[01:05:52] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[01:05:52] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 6 worker threads, and gen parallelism of 6 threads
[01:05:52] [Server thread/INFO]: Default game type: SURVIVAL
[01:05:52] [Server thread/INFO]: Generating keypair
[01:05:52] [Server thread/INFO]: Starting Minecraft server on *:25564
[01:05:52] [Server thread/INFO]: Using default channel type
[01:05:52] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[01:05:52] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loading 5 libraries... please wait
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\mysql\mysql-connector-java\8.0.27\mysql-connector-java-8.0.27.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\com\google\protobuf\protobuf-java\3.11.4\protobuf-java-3.11.4.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\org\mariadb\jdbc\mariadb-java-client\3.0.5\mariadb-java-client-3.0.5.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\org\postgresql\postgresql\42.2.18\postgresql-42.2.18.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\org\checkerframework\checker-qual\3.5.0\checker-qual-3.5.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\org\mongodb\mongodb-driver\3.12.12\mongodb-driver-3.12.12.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\org\mongodb\bson\3.12.12\bson-3.12.12.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\org\mongodb\mongodb-driver-core\3.12.12\mongodb-driver-core-3.12.12.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library D:\1.20.4\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[01:05:53] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library D:\1.20.4\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[01:05:53] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_20_R3
[01:05:53] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 158 ms to scan 1 urls, producing 915 keys and 3672 values
[01:05:53] [Server thread/INFO]: [WolfyUtilities] Register Default StackIdentifiers
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib-common:1.9.23
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib:1.9.23
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.jetbrains:annotations:13.0
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library redis.clients:jedis:4.2.3
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.apache.commons:commons-pool2:2.11.1
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.json:json:20211205
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.openjdk.nashorn:nashorn-core:15.4
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.ow2.asm:asm-commons:7.3.1
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.ow2.asm:asm-tree:7.3.1
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.ow2.asm:asm:7.3.1
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.ow2.asm:asm-util:7.3.1
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.yaml:snakeyaml:2.2
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.typesafe:config:1.4.3
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.electronwill.night-config:core:3.6.7
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.electronwill.night-config:toml:3.6.7
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.electronwill.night-config:json:3.6.7
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.typesafe:config:1.4.2
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.electronwill.night-config:hocon:3.6.7
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.apache.commons:commons-jexl3:3.2.1
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library org.slf4j:slf4j-api:2.0.8
[01:05:54] [Server thread/INFO]: [TrMenu-3.3.0b-SNAPSHOT.jar] Loading library com.zaxxer:HikariCP:4.0.3
[01:05:55] [Server thread/INFO]: [TrChat-2.1.0.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22
[01:05:55] [Server thread/INFO]: [TrChat-2.1.0.jar] Loading library org.jetbrains.kotlin:kotlin-stdlib:1.8.22
[01:05:55] [Server thread/INFO]: [TrChat-2.1.0.jar] Loading library org.jetbrains:annotations:13.0
[01:05:55] [Server thread/INFO]: [TrChat-2.1.0.jar] Loading library org.openjdk.nashorn:nashorn-core:15.4
[01:05:55] [Server thread/INFO]: [TrChat-2.1.0.jar] Loading library org.ow2.asm:asm-commons:7.3.1
[01:05:55] [Server thread/INFO]: [TrChat-2.1.0.jar] Loading library org.ow2.asm:asm-tree:7.3.1
[01:05:55] [Server thread/INFO]: [TrChat-2.1.0.jar] Loading library org.ow2.asm:asm:7.3.1
[01:05:55] [Server thread/INFO]: [TrChat-2.1.0.jar] Loading library org.ow2.asm:asm-util:7.3.1
[01:05:56] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_20_R3
[01:05:56] [Server thread/INFO]: [Atziluth-2.0.31.jar] Downloading library org.jetbrains.kotlin:kotlin-stdlib:@kotlin_version@ (transitive)
[01:05:56] [Server thread/INFO]: [Atziluth-2.0.31.jar] Downloading library org.jetbrains.kotlin:kotlin-stdlib-jdk7:@kotlin_version@ (transitive)
[01:05:56] [Server thread/INFO]: [Atziluth-2.0.31.jar] Downloading library org.jetbrains.kotlin:kotlin-stdlib-jdk8:@kotlin_version@ (transitive)
[01:05:58] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.126
[01:05:58] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.1-SNAPSHOT-688
[01:05:59] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[01:05:59] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.4.3
[01:05:59] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[01:05:59] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.10.1-SNAPSHOT-776;3dc949e
[01:05:59] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@55d03710]
[01:05:59] [Server thread/INFO]: [Slimefun] Loading server plugin Slimefun vf9f4bb9-Beta
[01:05:59] [Server thread/INFO]: [GuizhanLibPlugin] Loading server plugin GuizhanLibPlugin vBuild 43 (git 26e3dd7)
[01:05:59] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3399)
[01:05:59] [Server thread/INFO]: [Galactifun] Loading server plugin Galactifun vBuild 24 (git 8e97c63)
[01:05:59] [Server thread/INFO]: [BentoBox] Loading server plugin BentoBox v2.3.0
[01:05:59] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[01:05:59] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44-SNAPSHOT
[01:05:59] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+81-cde7184
[01:05:59] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.7.0-SNAPSHOT-ef2bc42b
[01:05:59] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[01:05:59] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[01:05:59] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.7
[01:05:59] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.3.0.36-DEV-SNAPSHOT
[01:05:59] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.0.13
[01:05:59] [Server thread/INFO]: [Skulls] Loading server plugin Skulls v3.13.0
[01:05:59] [Server thread/INFO]: [Magic] Loading server plugin Magic v10.9-84d5370
[01:05:59] [Server thread/INFO]: [Magic] Loading modern compatibility layer for server version 1.20.4
[01:05:59] [Server thread/INFO]: [Magic] Async chunk loading API found
[01:05:59] [Server thread/INFO]: [Magic] Chat component API found
[01:05:59] [Server thread/INFO]: [ExoticGarden] Loading server plugin ExoticGarden vBuild 17 (git 2a33c6d)
[01:05:59] [Server thread/INFO]: [SoulJars] Loading server plugin SoulJars vBuild 9 (git f13e461)
[01:05:59] [Server thread/INFO]: [FluffyMachines] Loading server plugin FluffyMachines vBuild 35 (git 8a81689)
[01:05:59] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.4
[01:05:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_20_R3! Trying to find NMS support
[01:05:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[01:05:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[01:05:59] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.2.1
[01:05:59] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.20.0-SNAPSHOT+88c37723
[01:06:00] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (175 ms).
[01:06:00] [Server thread/INFO]: [Shopkeepers] Loading config.
[01:06:00] [Server thread/INFO]: [Shopkeepers] Loading language file: language-zh_CN.yml
[01:06:00] [Server thread/WARN]: [Shopkeepers] Language: Missing message: command-entity-argument-no-villager
[01:06:00] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.16.15.1
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[01:06:00] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[01:06:00] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.8
[01:06:00] [Server thread/INFO]: [WorldEditSUI] Loading server plugin WorldEditSUI v1.7.3
[01:06:00] [Server thread/INFO]: [TrMenu] Loading server plugin TrMenu v3.3.0b-SNAPSHOT
[01:06:00] [Server thread/INFO]: 
[01:06:00] [Server thread/INFO]: 正在加载 TrMenu Premium... git-Paper-496 (MC: 1.20.4)
[01:06:00] [Server thread/INFO]: 
[01:06:00] [Server thread/INFO]: [TrChat] Loading server plugin TrChat v2.1.0
[01:06:00] [Server thread/INFO]: 
[01:06:00] [Server thread/INFO]: 正在加载 TrChat... 1.20.4-R0.1-SNAPSHOT
[01:06:00] [Server thread/INFO]: 
[01:06:00] [Server thread/INFO]: [SoundMuffler] Loading server plugin SoundMuffler vBuild 1 zh-CN(baoad) (git b1678a8)
[01:06:00] [Server thread/INFO]: [SlimeGlue] Loading server plugin SlimeGlue v1.0.2-b262a4a
[01:06:00] [Server thread/INFO]: [SlimeFunRecipe] Loading server plugin SlimeFunRecipe v1.2.0
[01:06:00] [Server thread/INFO]: [SimpleStorage] Loading server plugin SimpleStorage vBuild 5 zh-CN(ybw0014) (git c443c7b)
[01:06:00] [Server thread/INFO]: [SFCalc] Loading server plugin SFCalc vBuild 6 (git 3441e14)
[01:06:00] [Server thread/INFO]: [ServerVariables] Loading server plugin ServerVariables v2.4.1
[01:06:00] [Server thread/INFO]: [ScriptBlockPlus] Loading server plugin ScriptBlockPlus v2.2.8
[01:06:00] [Server thread/INFO]: [RealMines] Loading server plugin RealMines v1.7.5
[01:06:00] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.0
[01:06:00] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[01:06:00] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[01:06:00] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[01:06:00] [Thread-11/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 61ms
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 61ms
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 393ms
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 596ms
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 3150ms
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 13 libraries (0 skipped libraries)...
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/13]
[01:06:03] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[01:06:03] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[01:06:03] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/13]
[01:06:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/13]
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.github.stefvanschie.inventoryframework:IF:0.10.13 [13/13]
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[01:06:04] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[01:06:04] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[01:06:05] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[01:06:05] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[01:06:05] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[01:06:05] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[01:06:05] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[01:06:05] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[01:06:05] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[01:06:05] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (5109ms). Waiting for enable...
[01:06:05] [Server thread/INFO]: [ProtocolStringReplacer] Loading server plugin ProtocolStringReplacer v2.19.4
[01:06:05] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.8
[01:06:05] [Server thread/INFO]: [PointLogger] Loading server plugin PointLogger v1.0.2
[01:06:05] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v4.4.5
[01:06:05] [Server thread/INFO]: [OnlineTime] Loading server plugin OnlineTime v2.0.4
[01:06:05] [Server thread/INFO]: [NoBuildPlus] Loading server plugin NoBuildPlus v1.3.4
[01:06:05] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v1.3.1-SNAPSHOT
[01:06:05] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[01:06:05] [Server thread/INFO]: [ItemTag] Loading server plugin ItemTag v3.2.1
[01:06:05] [Server thread/INFO]: [HotbarPets] Loading server plugin HotbarPets vBuild 3 zh-CN(ybw0014) (git 92415a4)
[01:06:05] [Server thread/INFO]: [HoloMobHealth] Loading server plugin HoloMobHealth v2.3.7.0
[01:06:05] [Server thread/INFO]: [GlobalGamerules] Loading server plugin GlobalGamerules v1.0.0
[01:06:05] [Server thread/INFO]: [ExtraGear] Loading server plugin ExtraGear vBuild 2 zh-CN(ybw0014) (git ff13031)
[01:06:05] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+81-cde7184
[01:06:05] [Server thread/INFO]: [ElectricSpawners] Loading server plugin ElectricSpawners vBuild 5 (git 6fa0de2)
[01:06:05] [Server thread/INFO]: [DivineDrop] Loading server plugin DivineDrop v2.14
[01:06:05] [Server thread/INFO]: [DisplayEntityEditor] Loading server plugin DisplayEntityEditor v1.0.16
[01:06:05] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.9.1
[01:06:05] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.15.1
[01:06:05] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.9.1
[01:06:05] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[01:06:05] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[01:06:05] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[01:06:05] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[01:06:05] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[01:06:05] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[01:06:05] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[01:06:05] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[01:06:05] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[01:06:05] [Server thread/INFO]: [CrazyEnchantments] Loading server plugin CrazyEnchantments v2.2.8
[01:06:05] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v2.1.1
[01:06:05] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[01:06:05] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.52.1
[01:06:05] [Server thread/INFO]: [BungeeTabListPlus] Loading server plugin BungeeTabListPlus v3.6.4
[01:06:05] [Server thread/INFO]: [BetterChatBubbles] Loading server plugin BetterChatBubbles v1.7.2
[01:06:06] [Server thread/INFO]: [BaritoneRemover] Loading server plugin BaritoneRemover v1.3.4
[01:06:06] [Server thread/INFO]: [Atziluth] Loading server plugin Atziluth v2.0.31
[01:06:07] [Server thread/INFO]: [AntiRedstoneClock-Remastered] Loading server plugin AntiRedstoneClock-Remastered v1.0.1
[01:06:07] [Server thread/WARN]: [AntiRedstoneClock-Remastered] WorldGuard hasn't been found!
[01:06:07] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.3.4
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[01:06:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[01:06:07] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[01:06:07] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.126
[01:06:07] [Server thread/INFO]:         __    
[01:06:07] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.126
[01:06:07] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[01:06:07] [Server thread/INFO]: 
[01:06:07] [Server thread/INFO]: [LuckPerms] Loading configuration...
[01:06:07] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[01:06:08] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[01:06:08] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[01:06:08] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1022ms)
[01:06:08] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.1-SNAPSHOT-688
[01:06:08] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[01:06:08] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[01:06:08] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[01:06:08] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[01:06:08] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[01:06:08] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.10.1-SNAPSHOT-776;3dc949e
[01:06:08] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[01:06:08] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[01:06:08] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[01:06:08] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[01:06:08] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R3.PaperweightFaweAdapter as the Bukkit adapter
[01:06:08] [Server thread/INFO]: [BentoBox] Enabling BentoBox v2.3.0
[01:06:08] [Server thread/INFO]: [BentoBox] Loading Settings from config.yml...
[01:06:08] [Server thread/INFO]: [BentoBox] Saving default panels...
[01:06:09] [Server thread/INFO]: [BentoBox] Loading addons...
[01:06:09] [Server thread/INFO]: [BentoBox-AcidIsland] Loading server plugin BentoBox-AcidIsland v1.18.2
[01:06:09] [Server thread/ERROR]: [BentoBox] Duplicate addon! Addon AcidIsland 1.18.2 has already been loaded!
[01:06:09] [Server thread/ERROR]: [BentoBox] Remove the duplicate and restart!
[01:06:09] [Server thread/INFO]: [BentoBox-Bank] Loading server plugin BentoBox-Bank v1.7.1
[01:06:09] [Server thread/INFO]: [BentoBox-Biomes] Loading server plugin BentoBox-Biomes v2.1.1
[01:06:09] [Server thread/INFO]: [BentoBox-Challenges] Loading server plugin BentoBox-Challenges v1.3.0
[01:06:09] [Server thread/INFO]: [BentoBox-Level] Loading server plugin BentoBox-Level v2.13.0
[01:06:09] [Server thread/INFO]: [BentoBox-Likes] Loading server plugin BentoBox-Likes v2.3.1
[01:06:09] [Server thread/INFO]: [BentoBox-Warps] Loading server plugin BentoBox-Warps v1.14.0
[01:06:09] [Server thread/INFO]: [BentoBox] Loaded 9 addons.
[01:06:09] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.7
[01:06:09] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[01:06:09] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.13
[01:06:10] [ForkJoinPool.commonPool-worker-2/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 2 build(s) out of date.
You are running build 776, the latest version is build 778.
Update at https://www.spigotmc.org/resources/13932/
[01:06:10] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.20.4.
[01:06:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.0.13]
[01:06:10] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[01:06:10] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[01:06:10] [Server thread/INFO]: [Magic] Enabling Magic v10.9-84d5370
[01:06:10] [Server thread/INFO]: [Magic] EffectLib initialized
[01:06:10] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.0.13
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: 8e4c6e2
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[01:06:10] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[01:06:11] [Server thread/INFO]: [Magic] Loaded 0 attributes
[01:06:11] [Server thread/INFO]: [Magic] Magic player data saving is disabled
[01:06:11] [Server thread/INFO]: [Magic] Skin-based spell icons disabled
[01:06:11] [Server thread/INFO]: [Magic] Registered attributes: [target_fall_distance, regeneration, respiration, projectile_protection, bowpower, degrees, seconds, channeling, target_pitch, humidity, pitch, sharpness, darkness, jump, health_max, efficiency, target_luck, target_light, absorption, blindness, target_armor, loyalty, slow_digging, silk_touch, fire_resistance, unluck, invisibility, target_health_max, moon, air_max, slow, light, mana_max, sweeping, bowpull, damage, weeks, swift_sneak, mending, epoch, protection, air, fast_digging, lure, punch, temperature, frost_walker, movement_speed_bps, power, riptide, health_boost, levitation, increase_damage, poison, health, target_temperature, binding_curse, yaw, mana, glowing, target_health, target_humidity, days, infinity, impaling, bad_omen, luck, thorns, hero_of_the_village, target_hunger, smite, location_x, unbreaking, location_y, target_mana, feather_falling, attack_damage, knockback, fire_aspect, luck_of_the_sea, knockback_resistance, saturation, conduit_power, location_z, target_air, bane_of_arthropods, soul_speed, night_vision, level, minutes, water_breathing, fall_distance, quick_charge, multishot, aqua_affinity, hunger, slow_falling, difficulty, armor, fulltime, blast_protection, confusion, damage_dealt, harm, piercing, fire_protection, target_yaw, dolphins_grace, speed, weakness, damage_resistance, heal, target_mana_max, hours, fortune, looting, velocity, target_air_max, movement_speed, play_time, depth_strider, xp, target_location_x, pi, target_location_y, vanishing_curse, target_knockback_resistance, target_location_z, time, flame, wither]
[01:06:11] [Server thread/INFO]: [Magic] Loaded 182 icons
[01:06:12] [Server thread/INFO]: [Magic] Loaded 12 effect lists
[01:06:12] [Server thread/INFO]: [Magic] Loaded 1403 items
[01:06:12] [Server thread/INFO]: [Magic] Loaded 9 wands
[01:06:12] [Server thread/INFO]: [Magic] Loaded 2 kits
[01:06:12] [Server thread/INFO]: [Magic] Loaded 10 classes
[01:06:12] [Server thread/INFO]: [Magic] Loaded 5 classes
[01:06:12] [Server thread/INFO]: [Magic] Loaded 73 mob templates
[01:06:12] [Server thread/INFO]: [Magic] Loaded 8 automata templates
[01:06:12] [Server thread/INFO]: [Magic] Loaded 0 customized worlds
[01:06:12] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[01:06:12] [Server thread/INFO]: [Magic] Activated BStats
[01:06:12] [Server thread/INFO]: [Magic] MobArena not found
[01:06:12] [Server thread/INFO]: [Magic] LibsDisguises found, mob disguises and disguise_restricted features enabled
[01:06:12] [Server thread/INFO]: [Magic] ModelEngine integration disabled
[01:06:12] [Server thread/INFO]: [Magic] Found MythicMobs v5.7.0-SNAPSHOT-ef2bc42b (5) will use modern integration layer
[01:06:12] [Server thread/INFO]: [Magic] MythicMobs integration enabled, mobs can be spawned in arenas, spells, actions, etc.
[01:06:12] [Server thread/INFO]: Resource pack in config.yml has been disabled, Magic skipping RP check
[01:06:12] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.15.1
[01:06:12] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.20.4
[01:06:12] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.15.1
[01:06:12] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[01:06:12] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[01:06:12] [Server thread/INFO]: [WolfyUtilities]  - MythicMobs
[01:06:12] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[01:06:12] [Server thread/INFO]: [WolfyUtilities]  - Magic
[01:06:12] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[01:06:12] [Server thread/INFO]: [WolfyUtilities] Register API references
[01:06:12] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[01:06:12] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[01:06:12] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.8
[01:06:12] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[01:06:12] [Server thread/WARN]: It seems like you're running on paper.
[01:06:12] [Server thread/WARN]: PlugManX cannot interact with paper-plugins, yet.
[01:06:12] [Server thread/WARN]: Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[01:06:12] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[01:06:12] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[01:06:12] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[01:06:12] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[01:06:12] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[01:06:12] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[01:06:12] [Server thread/INFO]: Preparing level "world"
[01:06:12] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[01:06:12] [Server thread/INFO]: Time elapsed: 170 ms
[01:06:12] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[01:06:13] [Server thread/INFO]: Time elapsed: 659 ms
[01:06:13] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[01:06:13] [Server thread/INFO]: Time elapsed: 13 ms
[01:06:13] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.4.3
[01:06:13] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[01:06:13] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[01:06:13] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[01:06:13] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for PlaceholderAPI
[01:06:13] [Server thread/INFO]: [Slimefun] Enabling Slimefun vf9f4bb9-Beta
[01:06:13] [Server thread/INFO]: [Slimefun] 检测到你正在使用 Paper 服务端! 性能优化已应用.
[01:06:13] [Server thread/INFO]: [Slimefun] 正在创建文件夹...
[01:06:13] [Server thread/INFO]: [Slimefun] 正在加载数据库...
[01:06:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Starting...
[01:06:13] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] SlimefunHikariPool - Added connection org.sqlite.jdbc4.JDBC4Connection@1757f54c
[01:06:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Start completed.
[01:06:13] [Server thread/INFO]: [Slimefun] 已启用延时写入功能
[01:06:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Starting...
[01:06:13] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] SlimefunHikariPool - Added connection org.sqlite.jdbc4.JDBC4Connection@6f6099b
[01:06:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Start completed.
[01:06:13] [Server thread/INFO]: [Slimefun] 正在加载语言文件...
[01:06:13] [Server thread/INFO]: [Slimefun] Loaded language "zh-CN"
[01:06:14] [Server thread/INFO]: [Slimefun] Available languages: en, de, fr, it, es, ru, pl, uk, sv, nl, da, cs, ro, bg, pt, pt-BR, hu, lv, sk, vi, id, zh-CN, zh-TW, ja, ko, he, ar, tr, fa, th, tl
[01:06:14] [Server thread/INFO]: [Slimefun] 加载矿物资源...
[01:06:14] [Server thread/INFO]: [Slimefun] 加载自定义标签...
[01:06:14] [Server thread/INFO]: [Slimefun] 加载物品...
[01:06:14] [Server thread/INFO]: [Slimefun] 加载研究项目...
[01:06:14] [Server thread/INFO]: [Slimefun] 加载 Wiki 页面...
[01:06:14] [Server thread/INFO]: [Slimefun] 加载了 Slimefun 中 486 个物品的 Wiki 页面
[01:06:14] [Server thread/INFO]: [Slimefun] 正在注册监听器...
[01:06:14] [Server thread/INFO]: [Slimefun] 成功接入 Vault
[01:06:14] [Server thread/INFO]: [Slimefun] 正在加载第三方插件支持...
[01:06:14] [Server thread/INFO]: [Slimefun] Hooked into Plugin: PlaceholderAPI v2.11.6
[01:06:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: slimefun [f9f4bb9-Beta]
[01:06:14] [Server thread/INFO]: [Slimefun] Hooked into Plugin: WorldEdit v2.10.1-SNAPSHOT-776;3dc949e
[01:06:14] [Server thread/INFO]: [Slimefun] Slimefun 完成加载, 耗时 635ms
[01:06:14] [Server thread/INFO]: [GuizhanLibPlugin] Enabling GuizhanLibPlugin vBuild 43 (git 26e3dd7)
[01:06:14] [Server thread/INFO]: [GuizhanLibPlugin] Finding language file for Minecraft version 1.20
[01:06:14] [Server thread/INFO]: [GuizhanLibPlugin] Loading language file for Minecraft version 1.20
[01:06:14] [Server thread/INFO]: [GuizhanLibPlugin] Loaded language file for Minecraft version 1.20
[01:06:14] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3399)
[01:06:14] [Server thread/INFO]: [Citizens] Loading external libraries
[01:06:14] [Server thread/INFO]: [Citizens] Detected system language [[zh]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[01:06:14] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[01:06:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[01:06:14] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[01:06:14] [Server thread/INFO]: [Galactifun] Enabling Galactifun vBuild 24 (git 8e97c63)
[01:06:14] [Server thread/INFO]: [Galactifun] Loading planet 金星
[01:06:14] [Server thread/INFO]: Preparing start region for dimension minecraft:world_galactifun_venus
[01:06:14] [Server thread/INFO]: Time elapsed: 54 ms
[01:06:14] [Server thread/INFO]: [Galactifun] Loading planet 木卫一 - 艾奥
[01:06:14] [Server thread/INFO]: Preparing start region for dimension minecraft:world_galactifun_io
[01:06:14] [Server thread/INFO]: Time elapsed: 45 ms
[01:06:14] [Server thread/INFO]: [Galactifun] Loading planet 木卫二 - 欧罗巴
[01:06:14] [Server thread/INFO]: Preparing start region for dimension minecraft:world_galactifun_europa
[01:06:15] [Server thread/INFO]: Time elapsed: 49 ms
[01:06:15] [Server thread/INFO]: Preparing start region for dimension minecraft:lobby
[01:06:15] [Server thread/INFO]: Time elapsed: 52 ms
[01:06:15] [Server thread/INFO]: [Galactifun] Loading planet 土卫二
[01:06:15] [Server thread/INFO]: Preparing start region for dimension minecraft:world_galactifun_enceladus
[01:06:15] [Server thread/INFO]: Time elapsed: 50 ms
[01:06:15] [Server thread/INFO]: [Galactifun] Loading planet 土卫六 - 泰坦
[01:06:15] [Server thread/INFO]: Preparing start region for dimension minecraft:world_galactifun_titan
[01:06:15] [Server thread/INFO]: Time elapsed: 114 ms
[01:06:15] [Server thread/INFO]: [Galactifun] Loading planet 火星
[01:06:15] [Server thread/INFO]: Preparing start region for dimension minecraft:world_galactifun_mars
[01:06:15] [Server thread/INFO]: Time elapsed: 5 ms
[01:06:15] [Server thread/INFO]: [Galactifun] Loading planet 月球
[01:06:15] [Server thread/INFO]: Preparing start region for dimension minecraft:world_galactifun_the_moon
[01:06:15] [Server thread/INFO]: Time elapsed: 14 ms
[01:06:15] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[01:06:15] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[01:06:15] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[01:06:15] [Server thread/INFO]: Preparing start region for dimension minecraft:void
[01:06:15] [Server thread/INFO]: Time elapsed: 64 ms
[01:06:15] [Server thread/INFO]: Preparing start region for dimension minecraft:acidisland_world/bentobox
[01:06:15] [Server thread/INFO]: Time elapsed: 11 ms
[01:06:15] [Server thread/INFO]: Preparing start region for dimension minecraft:acidisland_world_the_end
[01:06:15] [Server thread/INFO]: Time elapsed: 20 ms
[01:06:15] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: pvp
[01:06:15] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[01:06:15] [Server thread/INFO]: Preparing start region for dimension minecraft:world_galactifun_earth_orbit
[01:06:16] [Server thread/INFO]: Time elapsed: 76 ms
[01:06:16] [Server thread/INFO]: Preparing start region for dimension minecraft:acidisland_world_the_end/bentobox
[01:06:16] [Server thread/INFO]: Time elapsed: 7 ms
[01:06:16] [Server thread/INFO]: Preparing start region for dimension minecraft:acidisland_world
[01:06:16] [Server thread/INFO]: Time elapsed: 22 ms
[01:06:16] [Server thread/INFO]: Preparing start region for dimension minecraft:acidisland_world_nether/bentobox
[01:06:16] [Server thread/INFO]: Time elapsed: 11 ms
[01:06:16] [Server thread/INFO]: Preparing start region for dimension minecraft:acidisland_world_nether
[01:06:16] [Server thread/INFO]: Time elapsed: 19 ms
[01:06:16] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: hdyj
[01:06:16] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[01:06:16] [Server thread/INFO]: [Multiverse-Core] 19 - World(s) loaded.
[01:06:16] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[01:06:16] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[01:06:16] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44-SNAPSHOT
[01:06:16] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[01:06:16] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: v1_20_R3) (LD: v1_20_R3) (MC: 1.20.4)
[01:06:16] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1315
[01:06:16] [Server thread/INFO]: [LibsDisguises] Build Date: 10/04/2024 02:16
[01:06:16] [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/
[01:06:16] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[01:06:16] [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
[01:06:16] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[01:06:16] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[01:06:16] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[01:06:17] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+81-cde7184
[01:06:17] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[01:06:17] [Server thread/INFO]: [Essentials] No kits found to migrate.
[01:06:17] [Server thread/INFO]: [Essentials] Loaded 39095 items from items.json.
[01:06:17] [Server thread/INFO]: [Essentials] Using locale zh_CN
[01:06:17] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[01:06:17] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[01:06:17] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[01:06:17] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[01:06:17] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.7.0-SNAPSHOT-ef2bc42b
[01:06:17] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.4)...
[01:06:17] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[01:06:18] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[01:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[01:06:18] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[01:06:18] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[01:06:18] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[01:06:18] [Server thread/INFO]: [MythicMobs] Base directory D:\1.20.4\plugins\MythicMobs\data
[01:06:18] [Server thread/INFO]: [MythicMobs] Module directory D:\1.20.4\plugins\MythicMobs\data\worlds
[01:06:19] [Server thread/INFO]: [MythicMobs] Loading Packs...
[01:06:19] [Server thread/INFO]: [MythicMobs] Loading Items...
[01:06:19] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[01:06:19] [Server thread/INFO]: [MythicMobs] Loading Skills...
[01:06:19] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[01:06:19] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[01:06:19] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[01:06:19] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[01:06:19] [Server thread/WARN]: [MythicMobs] --| Mob: pt2 | File: D:\1.20.4\plugins\MythicMobs\mobs\mobs.yml
[01:06:19] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill ptskill
[01:06:19] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill:ptskill
[01:06:20] [Server thread/INFO]: [MythicMobs] ✓ Loaded 18 mobs.
[01:06:20] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 vanilla mob overrides.
[01:06:20] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[01:06:20] [Server thread/INFO]: [MythicMobs] ✓ Loaded 7 skills.
[01:06:20] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[01:06:20] [Server thread/INFO]: [MythicMobs] ✓ Loaded 19 mythic items.
[01:06:20] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[01:06:20] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[01:06:20] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[01:06:20] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[01:06:20] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.7.0 ( build ef2bc42b ) has been successfully loaded!
[01:06:20] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for MythicMobs
[01:06:20] [Server thread/INFO]: [Skulls] Enabling Skulls v3.13.0
[01:06:20] [Server thread/INFO]:  
[01:06:20] [Server thread/INFO]: =============================
[01:06:20] [Server thread/INFO]: Skulls v3.13.0 by Tweetzy
[01:06:20] [Server thread/INFO]: Developer: Kiran Hart
[01:06:20] [Server thread/INFO]: [FlightCore] Enabling metrics for Skulls
[01:06:20] [Server thread/INFO]: =============================
[01:06:20] [Server thread/INFO]:  
[01:06:20] [Server thread/INFO]: [ExoticGarden] Enabling ExoticGarden vBuild 17 (git 2a33c6d)
[01:06:20] [Server thread/INFO]: [SoulJars] Enabling SoulJars vBuild 9 (git f13e461)
[01:06:20] [Server thread/WARN]: [SoulJars] IllegalArgumentException: 无效的生物类型: PIG_ZOMBIE
[01:06:20] [Server thread/INFO]: [FluffyMachines] Enabling FluffyMachines vBuild 35 (git 8a81689)
[01:06:20] [Server thread/INFO]: [FluffyMachines] 加载了 FluffyMachines 中 8 个物品的 Wiki 页面
[01:06:20] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.4
[01:06:20] [Server thread/INFO]: [NBTAPI] Adding listeners...
[01:06:20] [Server thread/INFO]: [NBTAPI] Checking bindings...
[01:06:20] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[01:06:20] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[01:06:20] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[01:06:20] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[01:06:20] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.2.1
[01:06:20] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[01:06:20] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[01:06:20] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[01:06:20] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[01:06:20] [Server thread/INFO]: [ItemEdit] placeholders:
[01:06:20] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[01:06:20] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[01:06:20] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[01:06:20] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[01:06:20] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[01:06:20] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[01:06:20] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[01:06:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[01:06:20] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[01:06:20] [Server thread/INFO]: [ItemEdit] # Enabled (took 29 ms)
[01:06:20] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.20.0-SNAPSHOT+88c37723
[01:06:20] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[01:06:20] [Server thread/INFO]: [Shopkeepers] Loading the data of 1 shopkeepers ...
[01:06:20] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.8
[01:06:20] [Server thread/INFO]: [WorldEditSUI] Enabling WorldEditSUI v1.7.3
[01:06:20] [Server thread/INFO]: [WorldEditSUI] Plugin by kennytv
[01:06:20] [Server thread/INFO]: [TrMenu] Enabling TrMenu v3.3.0b-SNAPSHOT
[01:06:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: TrMenu [3.3.0b-SNAPSHOT]
[01:06:20] [ForkJoinPool.commonPool-worker-5/INFO]: [TrMenu] 良好 | 6 个菜单已加载 (200 ms)
[01:06:20] [Server thread/ERROR]: [TrMenu] [STDERR] SLF4J: No SLF4J providers were found.
[01:06:20] [Server thread/WARN]: Nag author(s): '[Arasple, Score2, lilingfeng, Dreeam-qwq, FxRayHughes, TheFloodDragon]' of 'TrMenu v3.3.0b-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[01:06:20] [Server thread/ERROR]: [TrMenu] [STDERR] SLF4J: Defaulting to no-operation (NOP) logger implementation
[01:06:20] [Server thread/ERROR]: [TrMenu] [STDERR] SLF4J: See https://www.slf4j.org/codes.html#noProviders for further details.
[01:06:20] [Server thread/INFO]: [TrMenu] 良好 | 插件启用. 当前运行版本 3.3.0b-SNAPSHOT.
[01:06:20] [Server thread/INFO]: [TrMenu] 版本 | 你正在使用社区维护版本:
[01:06:20] [Server thread/INFO]: https://github.com/Dreeam-qwq/TrMenu
[01:06:20] [Server thread/INFO]: [TrMenu] 挂钩 | 软依赖 Vault 已兼容.
[01:06:20] [Server thread/INFO]: [TrMenu] 挂钩 | 软依赖 NBTAPI 已兼容.
[01:06:20] [Server thread/INFO]: [TrMenu] 挂钩 | 软依赖 Skulls 已兼容.
[01:06:20] [Server thread/INFO]: [TrMenu] 挂钩 | 软依赖 SkinsRestorer 已兼容.
[01:06:20] [Server thread/INFO]: [TrMenu] 挂钩 | 软依赖 PlayerPoints 已兼容.
[01:06:21] [Server thread/INFO]: [TrChat] Enabling TrChat v2.1.0
[01:06:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: trchat [2.1.0]
[01:06:21] [Server thread/INFO]: [御灵飞讯] 聊天 | 成功载入 13 个聊天功能... [9 Ms]
[01:06:21] [Server thread/INFO]: [御灵飞讯] 过滤器 | 已载入本地敏感词库总计 318 个.
[01:06:21] [Server thread/INFO]: [御灵飞讯] 聊天 | 成功载入 4 个聊天频道... [8 Ms]
[01:06:21] [Server thread/INFO]: [御灵飞讯] 信息 | 加载完毕. TrChat v2.1.0 现已启用, 敬请使用.
[01:06:21] [Server thread/INFO]: [SoundMuffler] Enabling SoundMuffler vBuild 1 zh-CN(baoad) (git b1678a8)
[01:06:21] [Server thread/INFO]: [SlimeGlue] Enabling SlimeGlue v1.0.2-b262a4a
[01:06:21] [Server thread/INFO]: [SlimeGlue] ====SlimeGlue Start====
[01:06:21] [Server thread/INFO]: [SlimeGlue] - Loading modules...
[01:06:21] [Server thread/INFO]: [SlimeGlue] Loading compatibility module for Magic
[01:06:21] [Server thread/INFO]: [SlimeGlue] Loading compatibility module for LockettePro
[01:06:21] [Server thread/WARN]: [SlimeGlue] Plugin LockettePro is not installed or enabled, module ignored.
[01:06:21] [Server thread/INFO]: [SlimeGlue] Loading compatibility module for Residence
[01:06:21] [Server thread/WARN]: [SlimeGlue] Plugin Residence is not installed or enabled, module ignored.
[01:06:21] [Server thread/INFO]: [SlimeGlue] Loading compatibility module for Quickshop
[01:06:21] [Server thread/WARN]: [SlimeGlue] Plugin Quickshop is not installed or enabled, module ignored.
[01:06:21] [Server thread/INFO]: [SlimeGlue] Loading compatibility module for Kingdoms
[01:06:21] [Server thread/WARN]: [SlimeGlue] Plugin Kingdoms is not installed or enabled, module ignored.
[01:06:21] [Server thread/INFO]: [SlimeGlue] - Registering listeners...
[01:06:21] [Server thread/INFO]: [SlimeGlue] - Compatible Slimefun detected, enabling advanced features...
[01:06:21] [Server thread/INFO]: [SlimeGlue] - Registering protection module...
[01:06:21] [Server thread/WARN]: [SlimeGlue] - Failed to register protection module, schedule the retry task after the server started.
[01:06:21] [Server thread/INFO]: [SlimeGlue] - SlimeGlue Started!
[01:06:21] [Server thread/INFO]: [SlimeGlue] =======================
[01:06:21] [Server thread/INFO]: [SlimeFunRecipe] Enabling SlimeFunRecipe v1.2.0
[01:06:21] [Server thread/INFO]: [SlimefunRecipe] Enabling plugin...
[01:06:21] [Server thread/INFO]: [SlimefunRecipe] Author: Xanadu13
[01:06:21] [Server thread/INFO]: [SlimefunRecipe] Language: Chinese
[01:06:21] [Server thread/INFO]: [SlimefunRecipe] 已加载0个修改的配方.
[01:06:21] [Server thread/INFO]: [SlimefunRecipe] 正在为您检查更新...
[01:06:21] [Server thread/INFO]: [SimpleStorage] Enabling SimpleStorage vBuild 5 zh-CN(ybw0014) (git c443c7b)
[01:06:21] [Server thread/INFO]: [SimpleStorage] ########################################
[01:06:21] [Server thread/INFO]: [SimpleStorage]           SimpleStorage 简易存储         
[01:06:21] [Server thread/INFO]: [SimpleStorage]        作者: Sefiraat 汉化: ybw0014      
[01:06:21] [Server thread/INFO]: [SimpleStorage] ########################################
[01:06:21] [Server thread/INFO]: [SFCalc] Enabling SFCalc vBuild 6 (git 3441e14)
[01:06:21] [Server thread/INFO]: [ServerVariables] Enabling ServerVariables v2.4.1
[01:06:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: servervariables [2.4.1]
[01:06:21] [Server thread/INFO]: [ServerVariables] Has been enabled! Version: 2.4.1
[01:06:21] [Server thread/INFO]: [ServerVariables] Thanks for using my plugin!   ~Ajneb97
[01:06:22] [Server thread/INFO]: [ScriptBlockPlus] Enabling ScriptBlockPlus v2.2.8
[01:06:22] [Server thread/INFO]: [RealMines] Enabling RealMines v1.7.5
[01:06:22] [Server thread/INFO]: [RealMines]    _____           ____  ____
[01:06:22] [Server thread/INFO]: [RealMines]   | ___ \         | |  \/  (_)  Version: 1.7.5
[01:06:22] [Server thread/INFO]: [RealMines]   | |_/ /___  __ _| | .  . |_ _ __   ___  ___
[01:06:22] [Server thread/INFO]: [RealMines]   |    // _ \/ _` | | |\/| | | '_ \ / _ \/ __|
[01:06:22] [Server thread/INFO]: [RealMines]   | |\ \  __/ (_| | | |  | | | | | |  __/\__ \
[01:06:22] [Server thread/INFO]: [RealMines]   \_| \_\___|\__,_|_\_|  |_/_|_| |_|\___||___/
[01:06:22] [Server thread/INFO]: [RealMines]                          Made by: JoseGamer_PT
[01:06:22] [Server thread/INFO]: [RealMines] Hooked into Vault!
[01:06:22] [Server thread/INFO]: [RealMines] Loading Mines.
[01:06:22] [Server thread/INFO]: [RealMines] Loaded 1 mines and 0 mine signs.
[01:06:22] [Server thread/INFO]: [RealMines] Loaded 0 mine tasks.
[01:06:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: realmines [1.7.5]
[01:06:22] [Server thread/INFO]: [RealMines] Hooked onto PlaceholderAPI!
[01:06:22] [Server thread/INFO]: [RealMines] Using FAWE/WorldEdit for block placement.
[01:06:22] [Server thread/INFO]: [RealMines] Finished loading in 0.076 seconds.
[01:06:22] [Server thread/INFO]: [RealMines] <------------------ RealMines v1.7.5 ------------------>
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.0
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Contributors: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[01:06:22] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[01:06:22] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Used 5ms to fetch 9 shops from database.
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[01:06:22] [Server thread/WARN]: [QuickShop-Hikari] Failed to load shop: 2;-55;74;44;acidisland_world: com.ghostchu.quickshop.shop.ContainerShop: Inventory is null
[01:06:22] [Server thread/WARN]: [QuickShop-Hikari] Unloading shops from memory, set `debug.delete-corrupt-shops` to true to delete corrupted shops.
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Used 22ms to load 9 shops into memory (0 shops will be loaded after chunks/world loaded).
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Registering DisplayCheck task....
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[01:06:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.0]
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[01:06:22] [Server thread/WARN]: [QuickShop-Hikari] [WARN] Virtual DisplayItem Support Test: VirtualDisplayItemManager is null, this shouldn't happen, contact with QuickShop-Hikari developer.
[01:06:22] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete. (234ms)
[01:06:22] [Server thread/INFO]: [ProtocolStringReplacer] Enabling ProtocolStringReplacer v2.19.4
[01:06:22] [Server thread/INFO]: [ProtocolStringReplacer] 预加载 3 个替换配置文件. 耗时 1.4834ms
[01:06:22] [Server thread/INFO]: [ProtocolStringReplacer] 成功载入替换配置: Replacers/recipe.yml. 耗时 4.9054ms
[01:06:22] [Server thread/INFO]: [ProtocolStringReplacer] 成功载入替换配置: Replacers/ConsoleColor.yml. 耗时 0.1412ms
[01:06:22] [Server thread/INFO]: [ProtocolStringReplacer] 成功载入替换配置: Replacers/olddog.yml. 耗时 0.3543ms
[01:06:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[01:06:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[01:06:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'ProtocolStringReplacer' to create a bStats instance!
[01:06:22] [Server thread/INFO]: [PointLogger] Enabling PointLogger v1.0.2
[01:06:22] [Server thread/INFO]: ==========[点券记录工具 v1.0]==========
[01:06:22] [Server thread/INFO]:  本插件可按水龙头日志格式,将玩家点券流水
[01:06:22] [Server thread/INFO]:  记录在logs文件夹下. 可记录调用插件
[01:06:22] [Server thread/INFO]:  打开config.yml可调整控制台、压缩、分割选项
[01:06:22] [Server thread/INFO]:  视服务端不同,调整可能需要重启服务器才能生效
[01:06:22] [Server thread/INFO]:    Made by YiMiner. QQ 386029724
[01:06:22] [Server thread/INFO]: ======================================
[01:06:22] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.4.5
[01:06:22] [Server thread/INFO]: [OnlineTime] Enabling OnlineTime v2.0.4
[01:06:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: onlinetime [2.0.4]
[01:06:22] [Server thread/INFO]: [OnlineTime] Hooked into PlaceholderAPI.
[01:06:22] [Server thread/INFO]: [NoBuildPlus] Enabling NoBuildPlus v1.3.4
[01:06:22] [Server thread/INFO]: [NoBuildPlus] Plugin loaded! Version: 1.3.4
[01:06:22] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.3.1-SNAPSHOT
[01:06:22] [Server thread/INFO]: [MythicDungeons] [STDOUT] Using default parties! Enabled party support.
[01:06:22] [Server thread/WARN]: Nag author(s): '[MarcatoSound, Aestrus]' of 'MythicDungeons v1.3.1-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[01:06:22] [Server thread/INFO]: [MythicDungeons] MythicMobs plugin found! Enabled MythicMobs support.
[01:06:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: md [1.3.1]
[01:06:22] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 28 ms to scan 1 urls, producing 12 keys and 186 values
[01:06:22] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 3 ms to scan 1 urls, producing 8 keys and 64 values
[01:06:22] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 2 ms to scan 1 urls, producing 5 keys and 35 values
[01:06:22] [Server thread/INFO]: [MythicDungeons] * Loaded 37 functions.
[01:06:22] [Server thread/INFO]: [MythicDungeons] * Loaded 13 triggers.
[01:06:22] [Server thread/INFO]: [MythicDungeons] * Loaded 9 conditions.
[01:06:22] [Server thread/INFO]: [MythicDungeons] GUI menus initialized!
[01:06:22] [Server thread/INFO]: [MythicDungeons] Mythic Dungeons v1.3.1 initialized! Happy dungeon-ing!
[01:06:22] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[01:06:22] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[01:06:22] [Server thread/INFO]: | Hooked on Vault 1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[01:06:22] [Server thread/INFO]: | Command file(s) found : 1
[01:06:22] [Server thread/INFO]: | Config : Ready.
[01:06:22] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[01:06:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[01:06:22] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[01:06:22] [Server thread/INFO]: | Custom commands loaded : 26
[01:06:23] [Server thread/INFO]: | You're running the latest version of MyCommand.
[01:06:23] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[01:06:23] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[01:06:23] [Server thread/INFO]: [ItemTag] Enabling ItemTag v3.2.1
[01:06:23] [Server thread/INFO]: [ItemTag] Hooking into PlaceholderApi
[01:06:23] [Server thread/INFO]: [ItemTag] Hooked into PlaceHolderAPI:
[01:06:23] [Server thread/INFO]: [ItemTag] placeholders:
[01:06:23] [Server thread/INFO]: [ItemTag]   %itemtag_cooldown_<timeunit>_[cooldownid]%
[01:06:23] [Server thread/INFO]: [ItemTag]     shows how much cooldown has selected cooldownid for player
[01:06:23] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[01:06:23] [Server thread/INFO]: [ItemTag]     [cooldownid] for cooldown type, by default default
[01:06:23] [Server thread/INFO]: [ItemTag]     example: %itemtag_cooldown_s_anid%
[01:06:23] [Server thread/INFO]: [ItemTag]   %itemtag_handcooldown_<timeunit>%
[01:06:23] [Server thread/INFO]: [ItemTag]     shows how much cooldown has player on the item in his hand
[01:06:23] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[01:06:23] [Server thread/INFO]: [ItemTag]     example: %itemtag_handcooldown_s%
[01:06:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemtag [1.0]
[01:06:23] [Server thread/INFO]: [ItemTag] # Enabled (took 18 ms)
[01:06:23] [Server thread/INFO]: [HotbarPets] Enabling HotbarPets vBuild 3 zh-CN(ybw0014) (git 92415a4)
[01:06:23] [Server thread/INFO]: [HoloMobHealth] Enabling HoloMobHealth v2.3.7.0
[01:06:23] [Server thread/INFO]: [HoloMobHealth] Loading languages...
[01:06:23] [Server thread/INFO]: [HoloMobHealth] Hooked into Citizens!
[01:06:23] [Server thread/INFO]: [HoloMobHealth] Hooked into MythicMobs!
[01:06:23] [Server thread/INFO]: [HoloMobHealth] Hooked into Shopkeepers!
[01:06:23] [Server thread/INFO]: [HoloMobHealth] Hooked into PlaceholderAPI!
[01:06:23] [Server thread/INFO]: [HoloMobHealth] Opened Sqlite database successfully
[01:06:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: holomobhealth [1.0.0]
[01:06:23] [Server thread/INFO]: [HoloMobHealth] HoloMobHealth has been Enabled!
[01:06:23] [Server thread/INFO]: [GlobalGamerules] Enabling GlobalGamerules v1.0.0
[01:06:23] [Server thread/INFO]: [GlobalGamerules] Initializing plugin...
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则插件 正在初始化...
[01:06:23] [Server thread/INFO]: [GlobalGamerules] ┏━━ 检测服务器版本: v1_20_R3
[01:06:23] [Server thread/INFO]: [GlobalGamerules] ┣━━ 语言文件初始化...
[01:06:23] [Server thread/INFO]: [GlobalGamerules] ┣━━ 加载语言文件: zh_CN
[01:06:23] [Server thread/INFO]: [GlobalGamerules] ┣━━ 加载并检查配置文件中...
[01:06:23] [Server thread/INFO]: [GlobalGamerules] ┣━━ 正在注册指令...
[01:06:23] [Server thread/INFO]: [GlobalGamerules] ┣━━ 正在注册监听器...
[01:06:23] [Server thread/INFO]: [GlobalGamerules] ┣━━ 正在同步全局游戏规则...
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_nether !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_the_end !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_galactifun_venus !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_galactifun_io !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_galactifun_europa !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 lobby !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_galactifun_enceladus !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_galactifun_titan !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_galactifun_mars !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_galactifun_the_moon !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 世界 void 在不同步列表中,游戏规则将不会同步。
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 acidisland_world/bentobox !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 acidisland_world_the_end !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 world_galactifun_earth_orbit !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 acidisland_world_the_end/bentobox !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 acidisland_world !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 acidisland_world_nether/bentobox !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 全局游戏规则现已成功同步到世界 acidisland_world_nether !
[01:06:23] [Server thread/INFO]: [GlobalGamerules] ┗━━ 插件已启用!
[01:06:23] [Server thread/INFO]: [GlobalGamerules] 来给发个电呗,支持一下啦:)  afdian.net/@Starc 
[01:06:23] [Server thread/INFO]: [ExtraGear] Enabling ExtraGear vBuild 2 zh-CN(ybw0014) (git ff13031)
[01:06:23] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+81-cde7184
[01:06:23] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[01:06:23] [Server thread/INFO]: [ElectricSpawners] Enabling ElectricSpawners vBuild 5 (git 6fa0de2)
[01:06:23] [Server thread/INFO]: [DivineDrop] Enabling DivineDrop v2.14
[01:06:23] [Server thread/INFO]: [DisplayEntityEditor] Enabling DisplayEntityEditor v1.0.16
[01:06:23] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.9.1
[01:06:24] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[01:06:24] [Server thread/INFO]: [CustomCrafting] Loaded active language "zh_CN" v6.1.0 translated by 肆零肆E, SnowCutieOwO
[01:06:24] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[01:06:24] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[01:06:24] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[01:06:24] [Server thread/INFO]: [CustomCrafting]     Version      | v4.16.9.1
[01:06:24] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.16.15.1
[01:06:24] [Server thread/INFO]: [CustomCrafting]     Bukkit       | git-Paper-496 (MC: 1.20.4)(API: 1.20.4-R0.1-SNAPSHOT)
[01:06:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[01:06:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[01:06:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'WolfyUtilities' to create a bStats instance!
[01:06:24] [Server thread/INFO]: [CustomCrafting] 
[01:06:24] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[01:06:24] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Obsidian_Sword, LiveJunye, Mithran, Teddy
[01:06:24] [Server thread/INFO]: [CustomCrafting] Invictus_Vulpes , Luuk Musch, fioxu, JorshStark, Perny Dev, Charlie
[01:06:24] [Server thread/INFO]: [CustomCrafting] iachen, whja t, Green Masks, lance fector, Jack Snellings, MineHouse Server
[01:06:24] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[01:06:24] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[01:06:24] [Server thread/INFO]: [CustomCrafting] 正在注册变量
[01:06:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrafting [4.16.9.1]
[01:06:24] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[01:06:24] [Server thread/INFO]: [CustomCrafting] 初始化菜单界面
[01:06:24] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[01:06:24] [Server thread/INFO]: [CustomCrafting] 正在载入配方与物品
[01:06:24] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[01:06:24] [Server thread/INFO]: [CustomCrafting] [LOCAL] Using 24 threads
[01:06:24] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[01:06:24] [Server thread/INFO]: [CustomCrafting] [LOCAL] 正在载入物品
[01:06:24] [Server thread/INFO]: [CustomCrafting] [LOCAL] 正在载入配方
[01:06:24] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 17 recipes in 83ms
[01:06:24] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[01:06:24] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[01:06:24] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Enabling CrazyEnchantments v2.2.8
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Loading the config.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded config.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Loading the BlockList.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded BlockList.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Loading the HeadMap.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded HeadMap.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Loading the Data.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Data.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantments.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantments.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Loading the GKitz.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded GKitz.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Loading the Messages.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Messages.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantment-Types.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantment-Types.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Loading the Tinker.yml
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Tinker.yml
[01:06:24] [Server thread/INFO]: [疯狂附魔]: === CrazyEnchantment Hook Status ===
[01:06:24] [Server thread/INFO]: [疯狂附魔]: VAULT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: FACTIONS_UUID NOT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: GRIEF_PREVENTION NOT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: SUPERIORSKYBLOCK NOT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: WORLDEDIT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: PLOT_SQUARED NOT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: NO_CHEAT_PLUS NOT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: ORAXEN NOT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: TOWNYADVANCED NOT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: MCMMO NOT FOUND
[01:06:24] [Server thread/INFO]: [疯狂附魔]: WORLDGUARD NOT FOUND
[01:06:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[01:06:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[01:06:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CrazyEnchantments' to create a bStats instance!
[01:06:24] [Server thread/INFO]: [CrazyEnchantments] G-Kitz support is now enabled.
[01:06:24] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v2.1.1
[01:06:24] [Server thread/INFO]: [CrazyCrates] DecentHolograms support has been enabled.
[01:06:24] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[01:06:24] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[01:06:24] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[01:06:24] [Server thread/INFO]: [CrazyCrates] All physical crate locations have been loaded.
[01:06:24] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[01:06:24] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[01:06:24] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[01:06:24] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[01:06:24] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[01:06:24] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[01:06:24] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[01:06:24] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[01:06:24] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[01:06:24] [Server thread/INFO]: [抽奖] Oraxen NOT FOUND
[01:06:24] [Server thread/INFO]: [抽奖] ItemsAdder NOT FOUND
[01:06:24] [Server thread/INFO]: [抽奖] HeadDatabase NOT FOUND
[01:06:24] [Server thread/INFO]: [抽奖] FancyHolograms NOT FOUND
[01:06:24] [Server thread/INFO]: [抽奖] DecentHolograms FOUND
[01:06:24] [Server thread/INFO]: [抽奖] CMI NOT FOUND
[01:06:24] [Server thread/INFO]: [抽奖] PlaceholderAPI FOUND
[01:06:24] [Server thread/INFO]: [CrazyCrates] PlaceholderAPI support is enabled!
[01:06:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [2.1.1]
[01:06:24] [Server thread/INFO]: [CrazyCrates] You can disable logging by going to the plugin-config.yml and setting verbose to false.
[01:06:24] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[01:06:25] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[01:06:25] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[01:06:25] [Server thread/INFO]: --------------------
[01:06:25] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[01:06:25] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[01:06:25] [Server thread/INFO]: --------------------
[01:06:25] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.52.1
[01:06:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.52.1]
[01:06:25] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.52.1
[01:06:25] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[01:06:25] [Server thread/INFO]: [BungeeTabListPlus] Enabling BungeeTabListPlus v3.6.4
[01:06:25] [Server thread/INFO]: [BetterChatBubbles] Enabling BetterChatBubbles v1.7.2
[01:06:25] [Server thread/INFO]: U883480R115811
[01:06:25] [Server thread/INFO]: [BaritoneRemover] Enabling BaritoneRemover v1.3.4
[01:06:25] [Server thread/INFO]: [BaritoneRemover] [ACF] Enabled Asynchronous Tab Completion Support!
[01:06:25] [Server thread/INFO]: [Atziluth] Enabling Atziluth v2.0.31
[01:06:25] [Server thread/INFO]:  
[01:06:25] [Server thread/INFO]: [Atziluth] 已加载... 1.20.4-R0.1-SNAPSHOT.
[01:06:25] [Server thread/INFO]:  
[01:06:25] [Server thread/INFO]: [Atziluth] 已获取到可寄生的插件... PlaceholderAPI v2.11.6.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册条件 eval-script.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册条件 invoke-script.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 attr-damage.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 add-attr.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 take-attr.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 damage-ap.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 eval-script.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 cache-fightdata.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 remove-fightdata.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 run-fightdata.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 invoke-script.
[01:06:25] [Server thread/INFO]: [Atziluth] 已注册技能 settempdata.
[01:06:25] [Server thread/INFO]: [Atziluth] 已获取到可寄生的插件... MythicMobs v5.7.0-SNAPSHOT-ef2bc42b.
[01:06:25] [Server thread/ERROR]: [Atziluth] [STDERR] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[01:06:25] [Server thread/WARN]: Nag author(s): '[Mkbakaa]' of 'Atziluth v2.0.31' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[01:06:25] [Server thread/ERROR]: [Atziluth] [STDERR] SLF4J: Defaulting to no-operation (NOP) logger implementation
[01:06:25] [Server thread/ERROR]: [Atziluth] [STDERR] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册命令 addsat.
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册命令 addfood.
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册命令 addhealth.
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册监听器 eliteno - world.bentobox.acidisland.events.EntityDamageByAcidEvent.
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册监听器 初次回岛 - world.bentobox.bentobox.api.events.island.IslandEnterEvent.
[01:06:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: slimeid [1.0.0]
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册 PlaceholderAPI 扩展 slimeid.
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册监听器 kqsw - org.bukkit.event.entity.PlayerDeathEvent.
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册监听器 muteno - org.bukkit.event.player.AsyncPlayerChatEvent.
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册监听器 xpadd - org.bukkit.event.player.PlayerExpChangeEvent.
[01:06:26] [Server thread/INFO]: [Atziluth] 已注册监听器 xpnoti - org.bukkit.event.player.PlayerExpChangeEvent.
[01:06:26] [Server thread/INFO]: [AntiRedstoneClock-Remastered] Enabling AntiRedstoneClock-Remastered v1.0.1
[01:06:26] [Server thread/WARN]: [AntiRedstoneClock-Remastered] PlotSquared hasn't been found!
[01:06:26] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.3.4
[01:06:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: animatedscoreboard [0.0.1]
[01:06:26] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[01:06:27] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[01:06:27] [Server thread/INFO]: [ajLeaderboards] Loaded 2 boards
[01:06:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[01:06:27] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[01:06:27] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[01:06:27] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[01:06:27] [Server thread/INFO]: Running delayed init tasks
[01:06:27] [Craft Scheduler Thread - 13 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[01:06:27] [Craft Scheduler Thread - 21 - TrChat/INFO]: [TrChat] Failed to catch cloud thesaurus of https://raw.githubusercontent.com/konsheng/Sensitive-lexicon/main/ThirdPartyCompatibleFormats/TrChat/SensitiveLexicon.json.Use cache instead.
[01:06:27] [Craft Scheduler Thread - 21 - TrChat/INFO]: java.net.UnknownHostException: raw.githubusercontent.com
[01:06:27] [Craft Scheduler Thread - 19 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[01:06:27] [Craft Scheduler Thread - 18 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] Loaded language pack!
[01:06:27] [Craft Scheduler Thread - 18 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] Initializing universal updater task...
[01:06:27] [Craft Scheduler Thread - 18 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] Found 6 updater tasks.
[01:06:27] [Craft Scheduler Thread - 18 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] Running task 1 (GuizhanLibPlugin)...
[01:06:27] [Craft Scheduler Thread - 39 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[01:06:27] [Craft Scheduler Thread - 18 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] Running task 2 (Galactifun)...
[01:06:27] [Craft Scheduler Thread - 18 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] Running task 3 (SoulJars)...
[01:06:27] [Craft Scheduler Thread - 18 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] Running task 4 (FluffyMachines)...
[01:06:27] [Craft Scheduler Thread - 18 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] Running task 5 (SFCalc)...
[01:06:27] [Craft Scheduler Thread - 18 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] Running task 6 (ElectricSpawners)...
[01:06:27] [Craft Scheduler Thread - 19 - DecentHolograms/INFO]: [DecentHolograms] Loaded 1 holograms!
[01:06:27] [Server thread/INFO]: [BentoBox] Hooking with Vault...
[01:06:27] [Server thread/INFO]: [BentoBox] Hooking with MythicMobs...
[01:06:27] [Server thread/INFO]: [BentoBox] Hooking with PlaceholderAPI...
[01:06:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bentobox [2.3.0]
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling game mode addons...
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling AcidIsland (1.18.2)...
[01:06:27] [Craft Scheduler Thread - 16 - Essentials/INFO]: [Essentials] 正在获取版本信息...
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling other addons...
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling Level (2.13.0)...
[01:06:27] [Server thread/WARN]: [BentoBox] [Level] Level Addon: No such world in blockconfig.yml : caveblock-world
[01:06:27] [Server thread/INFO]: [BentoBox] [Level] Level hooking into AcidIsland
[01:06:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: level [2.13.0]
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling Bank (1.7.1)...
[01:06:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bank [1.7.1]
[01:06:27] [Server thread/INFO]: [BentoBox] [Bank] Hooking into AcidIsland
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling Biomes (2.1.1)...
[01:06:27] [Server thread/INFO]: [BentoBox] Loading biomes...
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling Challenges (1.3.0)...
[01:06:27] [Server thread/INFO]: [BentoBox] [Challenges] Loading challenges...
[01:06:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: acidisland [1.18.2]
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling ControlPanel (1.13.1)...
[01:06:27] [Server thread/INFO]: [BentoBox] Loading control panels...
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling DimensionalTrees (1.7.0)...
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling Likes (2.3.1)...
[01:06:27] [Server thread/INFO]: [BentoBox] Loading likes...
[01:06:27] [Server thread/INFO]: [BentoBox] Enabling Warps (1.14.0)...
[01:06:27] [Server thread/INFO]: [BentoBox] [Warps] Loading warps...
[01:06:27] [Server thread/INFO]: [BentoBox] Addons successfully enabled.
[01:06:28] [Server thread/ERROR]: [BentoBox] *****************CRITICAL ERROR!******************
[01:06:28] [Server thread/ERROR]: [BentoBox] Island distance mismatch!
World 'acidisland_world' distance 288 != island range 128!
Island ID in database is AcidIsland04680b68-a5e8-4add-bc8d-de038cb0e8c7.
Island distance in config.yml cannot be changed mid-game! Fix config.yml or clean database.
[01:06:28] [Server thread/ERROR]: [BentoBox] Could not load islands! Disabling BentoBox...
[01:06:28] [Server thread/ERROR]: [BentoBox] *************************************************
[01:06:28] [Server thread/INFO]: [BentoBox] Disabling addons...
[01:06:28] [Server thread/INFO]: [BentoBox] Disabling ControlPanel...
[01:06:28] [Server thread/INFO]: [BentoBox] Disabling DimensionalTrees...
[01:06:28] [Server thread/INFO]: [BentoBox] Addons successfully disabled.
[01:06:28] [Server thread/INFO]: [BentoBox] Removing coops from islands...
[01:06:28] [Server thread/INFO]: [BentoBox] Saving islands - this has to be done sync so it may take a while with a lot of islands...
[01:06:28] [Server thread/INFO]: [BentoBox] Islands saved.
[01:06:28] [Server thread/INFO]: [BentoBox] Closing database.
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.2.7]
[01:06:28] [Server thread/INFO]: [Slimefun] Now running MetricsModule build #29
[01:06:28] [Server thread/INFO]: [Slimefun] with a total of 14/19 chart(s)!
[01:06:28] [Server thread/INFO]: [Slimefun] Metrics build #29 started.
[01:06:28] [Server thread/INFO]: [Slimefun] Collecting Snapshots of all Recipes...
[01:06:28] [Server thread/INFO]: [Slimefun] Found 1,174 Recipes!
[01:06:28] [Craft Scheduler Thread - 22 - SlimeFunRecipe/INFO]: [SlimefunRecipe] 您正在使用最新版的插件(v1.2.0)...
[01:06:28] [Server thread/INFO]: 
[01:06:28] [Server thread/INFO]: ######################### - Slimefun vf9f4bb9-Beta - #########################
[01:06:28] [Server thread/INFO]: 
[01:06:28] [Server thread/INFO]: 成功加载了 1342 个物品和 291 个研究
[01:06:28] [Server thread/INFO]: ( 556 物品来自本体, 786 个物品来自 13 扩展 )
[01:06:28] [Server thread/INFO]: 
[01:06:28] [Server thread/INFO]: 
[01:06:28] [Server thread/INFO]:  - 源码:      https://github.com/StarWishsama/Slimefun4
[01:06:28] [Server thread/INFO]:  - Bug 反馈:  https://github.com/StarWishsama/Slimefun4/issues
[01:06:28] [Server thread/INFO]: 
[01:06:28] [Craft Scheduler Thread - 39 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[01:06:28] [Craft Scheduler Thread - 28 - NoBuildPlus/INFO]: [NoBuildPlus] 暂时没有任何更新 你的版本为最新版!
[01:06:28] [Craft Scheduler Thread - 27 - ItemTag/INFO]: [ItemTag] New Update at https://spigotmc.org/resources/89634
[01:06:28] [Craft Scheduler Thread - 20 - DisplayEntityEditor/WARN]: [DisplayEntityEditor] 你使用的版本不是最新版本! 请在此下载更新版: https://www.spigotmc.org/resources/display-entity-editor.110267/
[01:06:28] [Craft Scheduler Thread - 14 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[01:06:28] [Server thread/INFO]: [dough: protection] Loading Protection Modules...
[01:06:28] [Server thread/INFO]: [dough: protection] This may happen more than once.
[01:06:28] [Server thread/INFO]: [dough: protection] Loaded Protection Module "CoreProtect"
[01:06:28] [Server thread/INFO]: [Slimefun] Hooked into Plugin: Orebfuscator v5.4.3
[01:06:28] [Craft Scheduler Thread - 25 - RealMines/WARN]: [RealMines] There is a new update available! Version: 1.7.4 https://www.spigotmc.org/resources/73707/
[01:06:28] [Server thread/INFO]: [Galactifun] ################# Galactifun Build 24 (git 8e97c63) #################
[01:06:28] [Server thread/INFO]: [Galactifun] 
[01:06:28] [Server thread/INFO]: [Galactifun] Galactifun是开源的,如果有任何问题, 请在此汇报: 
[01:06:28] [Server thread/INFO]: [Galactifun] https://github.com/SlimefunGuguProject/Galactifun/issues
[01:06:28] [Server thread/INFO]: [Galactifun] 加入Slimefun插件社区: discord.gg/SqD3gg5SAU
[01:06:28] [Server thread/INFO]: [Galactifun] 
[01:06:28] [Server thread/INFO]: [Galactifun] ###################################################
[01:06:28] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b${env.TRAVIS_BUILD_NUMBER})!
[01:06:28] [Server thread/INFO]: 头颅大全 » Loaded 57650 skulls in 8,052.697ms
[01:06:28] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit logging successfully initialized.
[01:06:28] [Server thread/INFO]: [Magic] Vault found, 'currency' cost types available
[01:06:28] [Server thread/INFO]: [Magic] Registered currencies: item,mana,xp,health,currency,sp,levels,hunger
[01:06:28] [Server thread/INFO]: [Magic] Loaded 2 spells
[01:06:28] [Server thread/INFO]: [Magic] Loaded 12 progression paths
[01:06:28] [Server thread/INFO]: [Magic] Loaded 0 crafting recipes
[01:06:28] [Server thread/INFO]: [Magic] SlimeFun detected, forcing apply_spawner_data to false
[01:06:28] [Server thread/INFO]: [Magic] LogBlock not found
[01:06:28] [Server thread/INFO]: [Magic] Integrating with Essentials for vanish detection
[01:06:28] [Server thread/INFO]: [Magic] Integrating with Essentials for Recall warps
[01:06:28] [Server thread/INFO]: [Magic] Essentials found, hooked up custom item handler
[01:06:28] [Server thread/INFO]: [Magic] Factions not found
[01:06:28] [Server thread/INFO]: [Magic] WorldGuard not found, region protection and pvp checks will not be used.
[01:06:28] [Server thread/INFO]: [Magic] Multiverse-Core found, will respect PVP settings
[01:06:28] [Server thread/INFO]: [Magic] Towny not found, region protection and pvp checks will not be used.
[01:06:28] [Server thread/INFO]: [Magic] Lockette nor LockettePro found, will not integrate.
[01:06:28] [Server thread/INFO]: [Magic] GriefPrevention not found, claim protection will not be used.
[01:06:28] [Server thread/INFO]: [Magic] NoCheatPlus not found, will not integrate.
[01:06:28] [Server thread/INFO]: [Magic] dynmap not found, not integrating.
[01:06:28] [Server thread/INFO]: [Magic] Citizens found, enabling magic and command traits
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: magic [10.9-84d5370]
[01:06:28] [Server thread/INFO]: [Magic] PlaceholderAPI integration enabled. Available placeholders:
[01:06:28] [Server thread/INFO]: [Magic] magic_path, magic_class, magic_wand, magic_spell, magic_mana, magic_mana_max, magic_sp, magic_spell_count
[01:06:28] [Server thread/INFO]: [Magic] All magic attributes also available with a magic_ prefix
[01:06:28] [Server thread/INFO]: [Magic] Add to messages/placeholders to add custom placeholders
[01:06:28] [Server thread/INFO]: [Magic] LightAPI not found, Light action will not work
[01:06:28] [Server thread/INFO]: [Magic] Loaded 0 arenas
[01:06:28] [Server thread/INFO]: [Magic] Finished loading configuration
[01:06:28] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for Magic
[01:06:28] [Server thread/INFO]: [CustomCrafting] [LOCAL] Validated 0 recipes from 0 pending recipes
[01:06:28] [Server thread/INFO]: [Citizens] 已载入 6 个NPC.
[01:06:28] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop mythicbook
[01:06:28] [Server thread/WARN]: [MythicMobs] --| File: D:\1.20.4\plugins\MythicMobs\mobs\mobs.yml
[01:06:28] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[01:06:28] [Server thread/INFO]: [dough: protection] Loaded Protection Module "SlimeGlue v1.0.2-b262a4a"
[01:06:28] [Server thread/INFO]: [SlimeGlue] Protection module is registered!
[01:06:28] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: EssentialsX Economy
[01:06:28] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[01:06:28] [Server thread/INFO]: [BentoBox] Added world AcidIsland (HARD)
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: Animations [1.0.5]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.2]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: moregradients [0.3-BETA]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: otherplayer [2.1.0]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.7]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rainbowcolor [1.2]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: string [1.0.4]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: utils [1.0.9]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
[01:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: gradient [1.0]
[01:06:28] [Server thread/INFO]: 17 placeholder hook(s) registered! 3 placeholder hook(s) have an update available.
[01:06:28] [Server thread/INFO]: Done (36.756s)! For help, type "help"
[01:06:28] [Server thread/INFO]: Timings Reset
[01:06:28] [Craft Scheduler Thread - 25 - Vault/INFO]: [Vault] Checking for Updates ... 
[01:06:28] [Craft Scheduler Thread - 22 - BentoBox/INFO]: [BentoBox] Loaded Blueprint Bundle 'default' for AcidIsland.
[01:06:28] [Craft Scheduler Thread - 22 - BentoBox/INFO]: [BentoBox] Loaded Blueprint Bundle 'desert_temple' for AcidIsland.
[01:06:28] [Server thread/INFO]: [Magic] Finished loading data.
[01:06:28] [Craft Scheduler Thread - 22 - BentoBox/INFO]: [BentoBox] Loaded blueprint 'end-island' for AcidIsland
[01:06:28] [Craft Scheduler Thread - 22 - BentoBox/INFO]: [BentoBox] Loaded blueprint 'island' for AcidIsland
[01:06:28] [Craft Scheduler Thread - 22 - BentoBox/INFO]: [BentoBox] Loaded blueprint 'nether-island' for AcidIsland
[01:06:28] [Craft Scheduler Thread - 22 - BentoBox/INFO]: [BentoBox] Loaded blueprint 'temple' for AcidIsland
[01:06:28] [Craft Scheduler Thread - 23 - ProtocolStringReplacer/INFO]: [ProtocolStringReplacer] 喜欢PSR吗? 欢迎加入我们的 QQ群: 422532220 !
[01:06:28] [Craft Scheduler Thread - 32 - Slimefun/INFO]: [Slimefun] Slimefun 已是最新版本。
[01:06:29] [Craft Scheduler Thread - 25 - Vault/INFO]: [Vault] No new version available
[01:06:29] [Craft Scheduler Thread - 24 - HotbarPets/WARN]: [HotbarPets] Plugin HotbarPets vBuild 3 zh-CN(ybw0014) (git 92415a4) generated an exception while executing task 42652
com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 25 path $
    at com.google.gson.JsonParser.parseReader(JsonParser.java:76) ~[gson-2.10.1.jar:?]
    at com.google.gson.JsonParser.parseString(JsonParser.java:51) ~[gson-2.10.1.jar:?]
    at com.google.gson.JsonParser.parse(JsonParser.java:115) ~[gson-2.10.1.jar:?]
    at io.github.thebusybiscuit.hotbarpets.guizhanlib.utils.JsonUtil.parse(JsonUtil.java:27) ~[HotbarPets-Build 3 zh-CN(ybw0014) (git 92415a4).jar:?]
    at io.github.thebusybiscuit.hotbarpets.guizhanlib.updater.UpdaterTask.getRepoInfo(UpdaterTask.java:78) ~[HotbarPets-Build 3 zh-CN(ybw0014) (git 92415a4).jar:?]
    at io.github.thebusybiscuit.hotbarpets.guizhanlib.updater.UpdaterTask.run(UpdaterTask.java:56) ~[HotbarPets-Build 3 zh-CN(ybw0014) (git 92415a4).jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.4.jar:git-Paper-496]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.4.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 25 path $
    at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1659) ~[gson-2.10.1.jar:?]
    at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1465) ~[gson-2.10.1.jar:?]
    at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:551) ~[gson-2.10.1.jar:?]
    at com.google.gson.stream.JsonReader.peek(JsonReader.java:433) ~[gson-2.10.1.jar:?]
    at com.google.gson.JsonParser.parseReader(JsonParser.java:71) ~[gson-2.10.1.jar:?]
    ... 11 more
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.core.items.builder.ItemBuilder.unbreakable(boolean)" because the return value of "io.lumine.mythic.core.items.builder.ItemBuilder.modelData(int)" is null
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:528)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:462)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:142)
[01:06:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:139)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:233)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[01:06:29] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[01:06:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1646)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1525)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1226)
[01:06:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:06:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:06:29] [Craft Scheduler Thread - 19 - TrChat/INFO]: [御灵飞讯] 你正在运行最新版的 TrChat.
[01:06:30] [Craft Scheduler Thread - 28 - FluffyMachines/INFO]: [FluffyMachines] FluffyMachines is up to date.
[01:06:31] [Craft Scheduler Thread - 27 - SoulJars/INFO]: [SoulJars] SoulJars is up to date.
[01:06:31] [Craft Scheduler Thread - 14 - GuizhanLibPlugin/INFO]: [GuizhanLibPlugin] GuizhanLibPlugin is up to date.
[01:06:31] [Craft Scheduler Thread - 39 - SFCalc/INFO]: [SFCalc] SFCalc is up to date.
[01:06:31] [Craft Scheduler Thread - 7 - ElectricSpawners/INFO]: [ElectricSpawners] ElectricSpawners is up to date.
[01:06:31] [Craft Scheduler Thread - 20 - Galactifun/INFO]: [Galactifun] Galactifun is up to date.
[01:06:32] [Craft Scheduler Thread - 10 - Skulls/INFO]: 头颅大全 » Loaded 147 history inserts
[01:06:32] [Craft Scheduler Thread - 29 - HoloMobHealth/INFO]: [HoloMobHealth] Loaded all 1 languages!
[01:06:57] [Craft Scheduler Thread - 37 - BentoBox/WARN]: [BentoBox] Plugin BentoBox v2.3.0 generated an exception while executing task 42820
java.lang.NullPointerException: Cannot invoke "world.bentobox.bentobox.managers.WebManager.getGitHub()" because the return value of "world.bentobox.bentobox.BentoBox.getWebManager()" is null
    at world.bentobox.biomes.web.WebManager.requestCatalogGitHubData(WebManager.java:72) ~[Biomes-2.1.1.jar:?]
    at world.bentobox.biomes.web.WebManager.lambda$new$1(WebManager.java:57) ~[Biomes-2.1.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.4.jar:git-Paper-496]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.4.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[01:06:57] [Craft Scheduler Thread - 27 - BentoBox/WARN]: [BentoBox] Plugin BentoBox v2.3.0 generated an exception while executing task 42824
java.lang.NullPointerException: Cannot invoke "world.bentobox.bentobox.managers.WebManager.getGitHub()" because the return value of "world.bentobox.bentobox.BentoBox.getWebManager()" is null
    at world.bentobox.challenges.web.WebManager.requestCatalogGitHubData(WebManager.java:67) ~[Challenges-1.3.0.jar:?]
    at world.bentobox.challenges.web.WebManager.lambda$new$1(WebManager.java:53) ~[Challenges-1.3.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.4.jar:git-Paper-496]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.4.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[01:07:00] [Server thread/INFO]: CommandAndOrder (/127.0.0.1:64930) lost connection: Disconnected
[01:07:02] [User Authenticator #0/INFO]: UUID of player CommandAndOrder is 03bdc593-6bc0-3004-88e2-ec3684a3c27a
[01:07:02] [User Authenticator #1/INFO]: UUID of player CommandAndOrder is 03bdc593-6bc0-3004-88e2-ec3684a3c27a
[01:07:03] [Server thread/INFO]: CommandAndOrder[/127.0.0.1:64945] logged in with entity id 774 at ([lobby]-46.055522380990894, 52.74178016302145, -8.229038794653757)
[01:07:03] [Server thread/INFO]: CommandAndOrder 再次漂流到他的岛屿
[01:07:03] [Server thread/INFO]: [DisplayEntityEditor] [STDOUT] eeee
[01:07:03] [Server thread/WARN]: Nag author(s): '[_GoldenShadow]' of 'DisplayEntityEditor v1.0.16' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[01:07:07] [Server thread/INFO]: CommandAndOrder issued server command: /version MythicMobs
[01:07:36] [Server thread/INFO]: CommandAndOrder issued server command: /mm i get example_item
[01:07:43] [Server thread/INFO]: CommandAndOrder issued server command: /mm debug 100
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Craft Scheduler Thread - 30 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Craft Scheduler Thread - 20 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Craft Scheduler Thread - 20 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Spawner clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Threat clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Craft Scheduler Thread - 37 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Craft Scheduler Thread - 18 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Craft Scheduler Thread - 43 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Craft Scheduler Thread - 37 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Craft Scheduler Thread - 18 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Craft Scheduler Thread - 43 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Craft Scheduler Thread - 30 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Craft Scheduler Thread - 18 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:43] [Craft Scheduler Thread - 20 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Craft Scheduler Thread - 29 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:43] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 43 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Craft Scheduler Thread - 37 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Server thread/INFO]: CommandAndOrder issued server command: /mm i get example_item
[01:07:44] [Server thread/WARN]: java.lang.IllegalArgumentException: ItemStack cannot be null
[01:07:44] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143)
[01:07:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.inventory.CraftInventory.addItem(CraftInventory.java:304)
[01:07:44] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.commands.items.GetCommand.onCommand(GetCommand.java:75)
[01:07:44] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[01:07:44] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[01:07:44] [Server thread/WARN]:     at MythicMobs-5.7.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:61)
[01:07:44] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[01:07:44] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[01:07:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.dispatchCommand(CraftServer.java:999)
[01:07:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[01:07:44] [Server thread/WARN]:     at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73)
[01:07:44] [Server thread/WARN]:     at net.minecraft.commands.execution.tasks.ExecuteCommand.a(ExecuteCommand.java:31)
[01:07:44] [Server thread/WARN]:     at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19)
[01:07:44] [Server thread/WARN]:     at net.minecraft.commands.execution.UnboundEntryAction.a(UnboundEntryAction.java:8)
[01:07:44] [Server thread/WARN]:     at net.minecraft.commands.execution.CommandQueueEntry.a(CommandQueueEntry.java:5)
[01:07:44] [Server thread/WARN]:     at net.minecraft.commands.execution.ExecutionContext.a(ExecutionContext.java:103)
[01:07:44] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:434)
[01:07:44] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:336)
[01:07:44] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:323)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2230)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$14(PlayerConnection.java:2190)
[01:07:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[01:07:44] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[01:07:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:149)
[01:07:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1465)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194)
[01:07:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:123)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bl(MinecraftServer.java:1442)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1365)
[01:07:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:133)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w_(MinecraftServer.java:1343)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1232)
[01:07:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[01:07:44] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 30 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Craft Scheduler Thread - 43 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 37 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 30 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 43 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 37 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Threat clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 24 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Craft Scheduler Thread - 20 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Craft Scheduler Thread - 24 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 36 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 29 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Craft Scheduler Thread - 36 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 24 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:44] [Craft Scheduler Thread - 9 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:44] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Craft Scheduler Thread - 29 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Craft Scheduler Thread - 9 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Craft Scheduler Thread - 29 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Craft Scheduler Thread - 9 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Craft Scheduler Thread - 29 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Craft Scheduler Thread - 30 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Craft Scheduler Thread - 24 - MythicMobs/INFO]: [MythicMobs] [c] Skill clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Spawner clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Random Spawning clock fired
[01:07:45] [Server thread/INFO]: [MythicMobs] [c] Threat clock fired
[01:07:45] [Server thread/INFO]: CommandAndOrder issued server command: /mm debug 0
[01:09:49] [Server thread/INFO]: [Magic] Server is shutting down, closing all wand inventories
[01:09:49] [Server thread/INFO]: Stopping the server
[01:09:49] [Server thread/INFO]: Stopping server
[01:09:49] [Server thread/INFO]: [BentoBox-Warps] Disabling BentoBox-Warps v1.14.0
[01:09:49] [Server thread/INFO]: [BentoBox-Likes] Disabling BentoBox-Likes v2.3.1
[01:09:49] [Server thread/INFO]: [BentoBox-Level] Disabling BentoBox-Level v2.13.0
[01:09:49] [Server thread/INFO]: [BentoBox-Challenges] Disabling BentoBox-Challenges v1.3.0
[01:09:49] [Server thread/INFO]: [BentoBox-Biomes] Disabling BentoBox-Biomes v2.1.1
[01:09:49] [Server thread/INFO]: [BentoBox-Bank] Disabling BentoBox-Bank v1.7.1
[01:09:49] [Server thread/INFO]: [BentoBox-AcidIsland] Disabling BentoBox-AcidIsland v1.18.2
[01:09:49] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.8.0
[01:09:49] [pool-67-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[01:09:49] [pool-67-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[01:09:49] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[01:09:49] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[01:09:49] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 disabled.
[01:09:49] [Server thread/INFO]: [AnimatedScoreboard] Disabling AnimatedScoreboard v0.3.4
[01:09:49] [Server thread/INFO]: [AntiRedstoneClock-Remastered] Disabling AntiRedstoneClock-Remastered v1.0.1
[01:09:49] [Server thread/INFO]: [Atziluth] Disabling Atziluth v2.0.31
[01:09:49] [Server thread/INFO]: [BaritoneRemover] Disabling BaritoneRemover v1.3.4
[01:09:49] [Server thread/INFO]: [BetterChatBubbles] Disabling BetterChatBubbles v1.7.2
[01:09:49] [Server thread/INFO]: [BungeeTabListPlus] Disabling BungeeTabListPlus v3.6.4
[01:09:49] [Server thread/INFO]: [ConditionalEvents] Disabling ConditionalEvents v4.52.1
[01:09:49] [Server thread/INFO]: [ConditionalEvents] Has been disabled! Version: 4.52.1
[01:09:49] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v22.4
[01:09:49] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[01:09:50] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v22.4
[01:09:50] [Server thread/INFO]: [CrazyCrates] Disabling CrazyCrates v2.1.1
[01:09:50] [Server thread/INFO]: [CrazyEnchantments] Disabling CrazyEnchantments v2.2.8
[01:09:50] [Server thread/INFO]: [CustomCrafting] Disabling CustomCrafting v4.16.9.1
[01:09:50] [Server thread/INFO]: [DisplayEntityEditor] Disabling DisplayEntityEditor v1.0.16
[01:09:50] [Server thread/INFO]: [DivineDrop] Disabling DivineDrop v2.14
[01:09:50] [Server thread/INFO]: [ElectricSpawners] Disabling ElectricSpawners vBuild 5 (git 6fa0de2)
[01:09:50] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.21.0-dev+81-cde7184
[01:09:50] [Server thread/INFO]: [ExtraGear] Disabling ExtraGear vBuild 2 zh-CN(ybw0014) (git ff13031)
[01:09:50] [Server thread/INFO]: [GlobalGamerules] Disabling GlobalGamerules v1.0.0
[01:09:50] [Server thread/INFO]: [HoloMobHealth] Disabling HoloMobHealth v2.3.7.0
[01:09:50] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion holomobhealth
[01:09:50] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin HoloMobHealth was disabled.
[01:09:50] [Server thread/INFO]: [HoloMobHealth] HoloMobHealth has been Disabled!
[01:09:50] [Server thread/INFO]: [HotbarPets] Disabling HotbarPets vBuild 3 zh-CN(ybw0014) (git 92415a4)
[01:09:50] [Server thread/INFO]: [ItemTag] Disabling ItemTag v3.2.1
[01:09:50] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion itemtag
[01:09:50] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin ItemTag was disabled.
[01:09:50] [Server thread/INFO]: [MyCommand] Disabling MyCommand v5.7.4
[01:09:50] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[01:09:50] [Server thread/INFO]: | Tasks : Stopped all tasks.
[01:09:50] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*    Bye!   *-=-=-=-=-=-=-=-=-=-=-*
[01:09:50] [Server thread/INFO]: [MythicDungeons] Disabling MythicDungeons v1.3.1-SNAPSHOT
[01:09:50] [Server thread/INFO]: [MythicDungeons] Cleaning up dungeons...
[01:09:50] [Server thread/INFO]: [NoBuildPlus] Disabling NoBuildPlus v1.3.4
[01:09:50] [Server thread/INFO]: [OnlineTime] Disabling OnlineTime v2.0.4
[01:09:50] [Server thread/INFO]: [OpenInv] Disabling OpenInv v4.4.5
[01:09:50] [Server thread/INFO]: [PointLogger] Disabling PointLogger v1.0.2
[01:09:50] [Server thread/INFO]: [PlugManX] Disabling PlugManX v2.3.8
[01:09:50] [Server thread/INFO]: [ProtocolStringReplacer] Disabling ProtocolStringReplacer v2.19.4
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Disabling QuickShop-Hikari v6.2.0.0
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the shutdown sequence
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] QuickShop is finishing remaining work, this may need a while...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Shutting down error reporter...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Unregistering PlaceHolderAPI hooks...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Successfully unregistered PlaceholderAPI hook!
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Unloading all loaded shops...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Stopping shop auto save...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Saving all in-memory changed shops...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Cleaning up shop manager...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Unloading loaded shops...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Saving shops, please allow up to 30 seconds for flush changes into database...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Stopping log watcher...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Shutting down scheduled timers...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Shutting down event calendar watcher...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Shutting down 3rd-party integrations...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Unload PlaceHolderAPI module successfully!
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Unload packet listeners successfully!
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari] Shutting down database connections...
[01:09:50] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[01:09:50] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Cleaning up resources...
[01:09:50] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete (41ms)
[01:09:50] [Server thread/INFO]: [RealMines] Disabling RealMines v1.7.5
[01:09:50] [Server thread/INFO]: [ScriptBlockPlus] Disabling ScriptBlockPlus v2.2.8
[01:09:50] [Server thread/INFO]: [ServerVariables] Disabling ServerVariables v2.4.1
[01:09:50] [Server thread/INFO]: [ServerVariables] Has been disabled! Version: 2.4.1
[01:09:50] [Server thread/INFO]: [SFCalc] Disabling SFCalc vBuild 6 (git 3441e14)
[01:09:50] [Server thread/INFO]: [SimpleStorage] Disabling SimpleStorage vBuild 5 zh-CN(ybw0014) (git c443c7b)
[01:09:50] [Server thread/INFO]: [SlimeFunRecipe] Disabling SlimeFunRecipe v1.2.0
[01:09:50] [Server thread/INFO]: [SlimeGlue] Disabling SlimeGlue v1.0.2-b262a4a
[01:09:50] [Server thread/INFO]: [SoundMuffler] Disabling SoundMuffler vBuild 1 zh-CN(baoad) (git b1678a8)
[01:09:50] [Server thread/INFO]: [TrChat] Disabling TrChat v2.1.0
[01:09:50] [Server thread/INFO]: [TrMenu] Disabling TrMenu v3.3.0b-SNAPSHOT
[01:09:50] [Server thread/INFO]: [WorldEditSUI] Disabling WorldEditSUI v1.7.3
[01:09:50] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.8
[01:09:50] [Server thread/INFO]: [WolfyUtilities] Disabling WolfyUtilities v4.16.15.1
[01:09:50] [Server thread/INFO]: [WolfyUtilities] Save stored Custom Items
[01:09:50] [Server thread/INFO]: [Shopkeepers] Disabling Shopkeepers v2.20.0-SNAPSHOT+88c37723
[01:09:50] [Server thread/INFO]: [ItemEdit] Disabling ItemEdit v3.2.1
[01:09:50] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion itemedit
[01:09:50] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin ItemEdit was disabled.
[01:09:50] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.12.4
[01:09:50] [Server thread/INFO]: [FluffyMachines] Disabling FluffyMachines vBuild 35 (git 8a81689)
[01:09:50] [Server thread/INFO]: [SoulJars] Disabling SoulJars vBuild 9 (git f13e461)
[01:09:50] [Server thread/INFO]: [ExoticGarden] Disabling ExoticGarden vBuild 17 (git 2a33c6d)
[01:09:50] [Server thread/INFO]: [Magic] Disabling Magic v10.9-84d5370
[01:09:50] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion magic
[01:09:50] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Magic was disabled.
[01:09:50] [Server thread/INFO]: [Skulls] Disabling Skulls v3.13.0
[01:09:50] [Server thread/INFO]: [SkinsRestorer] Disabling SkinsRestorer v15.0.13
[01:09:50] [Server thread/INFO]: [PlayerPoints] Disabling PlayerPoints v3.2.7
[01:09:50] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.7.0-SNAPSHOT-ef2bc42b
[01:09:50] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[01:09:50] [Server thread/INFO]: [MythicMobs] - 
[01:09:50] [Server thread/INFO]: [MythicMobs] - Unloading Mythic...
[01:09:50] [Server thread/INFO]: [MythicMobs] - 
[01:09:50] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[01:09:50] [Server thread/INFO]: [MythicMobs] - Spawners saved and unloaded...
[01:09:50] [Server thread/INFO]: [MythicMobs] - Mobs saved and unloaded...
[01:09:50] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[01:09:50] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[01:09:50] [Server thread/INFO]: [MythicMobs] - Variables saved...
[01:09:50] [Server thread/INFO]: [MythicMobs] - All active settings have been saved!
[01:09:50] [Server thread/INFO]: [MythicMobs] - Mythic has been unloaded!
[01:09:50] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[01:09:50] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[01:09:50] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[01:09:50] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.0-dev+81-cde7184
[01:09:50] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[01:09:50] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.44-SNAPSHOT
[01:09:50] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.12
[01:09:50] [Server thread/INFO]: [Galactifun] Disabling Galactifun vBuild 24 (git 8e97c63)
[01:09:50] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3399)
[01:09:50] [Server thread/INFO]: [GuizhanLibPlugin] Disabling GuizhanLibPlugin vBuild 43 (git 26e3dd7)
[01:09:50] [Server thread/INFO]: [Slimefun] Disabling Slimefun vf9f4bb9-Beta
[01:09:50] [Server thread/INFO]: [Slimefun-Data-Controller] 数据保存完成.
[01:09:50] [Server thread/INFO]: [Slimefun-Data-Controller] 数据保存完成.
[01:09:50] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Shutdown initiated...
[01:09:50] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Shutdown completed.
[01:09:50] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Shutdown initiated...
[01:09:50] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Shutdown completed.
[01:09:50] [Server thread/INFO]: [Slimefun] 已备份 Slimefun 数据至: 2024-05-26-01-09.zip
[01:09:50] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.10.1-SNAPSHOT-776;3dc949e
[01:09:50] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[01:09:50] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.6
[01:09:50] [Server thread/INFO]: [Orebfuscator] Disabling Orebfuscator v5.4.3
[01:09:50] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[01:09:50] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.2.1-SNAPSHOT-688
[01:09:50] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.126
[01:09:50] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[01:09:50] [Server thread/INFO]: [LuckPerms] Closing storage...
[01:09:50] [Server thread/INFO]: [LuckPerms] Goodbye!
[01:09:50] [Server thread/INFO]: Saving players
[01:09:50] [Server thread/INFO]: CommandAndOrder lost connection: Server closed
[01:09:50] [Server thread/INFO]: CommandAndOrder left the game
[01:09:50] [Server thread/INFO]: Saving worlds
[01:09:50] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[01:09:50] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[01:09:50] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[01:09:50] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[01:09:51] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world' in 0.62s
[01:09:51] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[01:09:51] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[01:09:51] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[01:09:51] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[01:09:51] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[01:09:51] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_nether' in 0.44s
[01:09:51] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[01:09:51] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[01:09:51] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[01:09:51] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[01:09:51] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.06s
[01:09:52] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[01:09:52] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_galactifun_venus]'/minecraft:world_galactifun_venus
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_galactifun_venus'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_galactifun_venus'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_galactifun_venus'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_galactifun_venus' in 0.13s
[01:09:52] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[01:09:52] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_galactifun_io]'/minecraft:world_galactifun_io
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_galactifun_io'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_galactifun_io'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_galactifun_io'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_galactifun_io' in 0.15s
[01:09:52] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_galactifun_io): All chunks are saved
[01:09:52] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_galactifun_europa]'/minecraft:world_galactifun_europa
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_galactifun_europa'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_galactifun_europa'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_galactifun_europa'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_galactifun_europa' in 0.06s
[01:09:52] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[01:09:52] [Server thread/INFO]: Saving chunks for level 'ServerLevel[lobby]'/minecraft:lobby
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'lobby'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'lobby'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'lobby'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saved 650 block chunks, 650 entity chunks, 0 poi chunks in world 'lobby' in 0.22s
[01:09:52] [Server thread/INFO]: ThreadedAnvilChunkStorage (lobby): All chunks are saved
[01:09:52] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_galactifun_enceladus]'/minecraft:world_galactifun_enceladus
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_galactifun_enceladus'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_galactifun_enceladus'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_galactifun_enceladus'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_galactifun_enceladus' in 0.06s
[01:09:52] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[01:09:52] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_galactifun_titan]'/minecraft:world_galactifun_titan
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_galactifun_titan'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_galactifun_titan'
[01:09:52] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_galactifun_titan'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_galactifun_titan' in 0.32s
[01:09:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_galactifun_titan): All chunks are saved
[01:09:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_galactifun_mars]'/minecraft:world_galactifun_mars
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_galactifun_mars'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_galactifun_mars'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_galactifun_mars'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_galactifun_mars' in 0.16s
[01:09:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_galactifun_mars): All chunks are saved
[01:09:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_galactifun_the_moon]'/minecraft:world_galactifun_the_moon
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_galactifun_the_moon'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_galactifun_the_moon'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_galactifun_the_moon'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_galactifun_the_moon' in 0.10s
[01:09:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[01:09:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[void]'/minecraft:void
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'void'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'void'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'void'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'void' in 0.06s
[01:09:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (void): All chunks are saved
[01:09:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[acidisland_world/bentobox]'/minecraft:acidisland_world/bentobox
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'acidisland_world/bentobox'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'acidisland_world/bentobox'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'acidisland_world/bentobox'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'acidisland_world/bentobox' in 0.08s
[01:09:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (bentobox): All chunks are saved
[01:09:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[acidisland_world_the_end]'/minecraft:acidisland_world_the_end
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'acidisland_world_the_end'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'acidisland_world_the_end'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'acidisland_world_the_end'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'acidisland_world_the_end' in 0.14s
[01:09:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[01:09:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_galactifun_earth_orbit]'/minecraft:world_galactifun_earth_orbit
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_galactifun_earth_orbit'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_galactifun_earth_orbit'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_galactifun_earth_orbit'
[01:09:53] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_galactifun_earth_orbit' in 0.08s
[01:09:54] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[01:09:54] [Server thread/INFO]: Saving chunks for level 'ServerLevel[acidisland_world_the_end/bentobox]'/minecraft:acidisland_world_the_end/bentobox
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'acidisland_world_the_end/bentobox'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'acidisland_world_the_end/bentobox'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'acidisland_world_the_end/bentobox'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'acidisland_world_the_end/bentobox' in 0.12s
[01:09:54] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[01:09:54] [Server thread/INFO]: Saving chunks for level 'ServerLevel[acidisland_world]'/minecraft:acidisland_world
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'acidisland_world'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'acidisland_world'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'acidisland_world'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'acidisland_world' in 0.42s
[01:09:54] [Server thread/INFO]: ThreadedAnvilChunkStorage (acidisland_world): All chunks are saved
[01:09:54] [Server thread/INFO]: Saving chunks for level 'ServerLevel[acidisland_world_nether/bentobox]'/minecraft:acidisland_world_nether/bentobox
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'acidisland_world_nether/bentobox'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'acidisland_world_nether/bentobox'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'acidisland_world_nether/bentobox'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'acidisland_world_nether/bentobox' in 0.12s
[01:09:54] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[01:09:54] [Server thread/INFO]: Saving chunks for level 'ServerLevel[acidisland_world_nether]'/minecraft:acidisland_world_nether
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'acidisland_world_nether'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'acidisland_world_nether'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'acidisland_world_nether'
[01:09:54] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'acidisland_world_nether' in 0.12s
[01:09:54] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[01:09:54] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[01:09:54] [Server thread/INFO]: Flushing Chunk IO
[01:09:54] [Server thread/INFO]: Closing Thread Pool
[01:09:54] [Server thread/INFO]: Closing Server