Paste #126868: Unnamed Server Log Paste

Date: 2024/09/27 08:36:35 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[15:31:37] [ServerMain/WARN]: You specified a resource pack without providing a sha1 hash. Pack will be updated on the client only if you change the name of the pack.
[15:31:37] [ServerMain/WARN]: resource-pack-id missing, using default of 06cd73b9-5ab9-32f3-a2bf-f5071995b926
[15:31:37] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:31:38] [ServerMain/INFO]: Loaded 1295 recipes
[15:31:39] [Server thread/INFO]: Starting minecraft server version 1.21.1
[15:31:39] [Server thread/INFO]: Loading properties
[15:31:39] [Server thread/INFO]: This server is running CraftBukkit version 4290-Spigot-5a6439b-b95736b (MC: 1.21.1) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[15:31:39] [Server thread/INFO]: *** This version of Spigot contains changes to some enums. If you notice that plugins no longer work after updating, please report this to the developers of those plugins first. ***
[15:31:39] [Server thread/INFO]: *** If you cannot update those plugins, you can try setting `settings.compatibility.enum-compatibility-mode` to `true` in `bukkit.yml`. ***
[15:31:39] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:31:39] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:31:39] [Server thread/INFO]: Debug logging is disabled
[15:31:39] [Server thread/INFO]: Default game type: SURVIVAL
[15:31:39] [Server thread/INFO]: Generating keypair
[15:31:39] [Server thread/INFO]: Starting Minecraft server on *:2207
[15:31:39] [Server thread/INFO]: Using epoll channel type
[15:31:40] [Server thread/INFO]: [nightcore] Loading 2 libraries... please wait
[15:31:40] [Server thread/INFO]: [nightcore] Loaded library /home/minecraft-3/server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[15:31:40] [Server thread/INFO]: [nightcore] Loaded library /home/minecraft-3/server/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[15:31:40] [Server thread/INFO]: [nightcore] Loaded library /home/minecraft-3/server/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[15:31:40] [Server thread/INFO]: [AdvancedSeasons] Loading 1 libraries... please wait
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-all/4.1.82.Final/netty-all-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-dns/4.1.82.Final/netty-codec-dns-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-haproxy/4.1.82.Final/netty-codec-haproxy-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-http/4.1.82.Final/netty-codec-http-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-http2/4.1.82.Final/netty-codec-http2-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-memcache/4.1.82.Final/netty-codec-memcache-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-mqtt/4.1.82.Final/netty-codec-mqtt-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-redis/4.1.82.Final/netty-codec-redis-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-smtp/4.1.82.Final/netty-codec-smtp-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-socks/4.1.82.Final/netty-codec-socks-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-stomp/4.1.82.Final/netty-codec-stomp-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-codec-xml/4.1.82.Final/netty-codec-xml-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-handler-proxy/4.1.82.Final/netty-handler-proxy-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-resolver-dns/4.1.82.Final/netty-resolver-dns-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-rxtx/4.1.82.Final/netty-transport-rxtx-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-sctp/4.1.82.Final/netty-transport-sctp-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-udt/4.1.82.Final/netty-transport-udt-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-classes-kqueue/4.1.82.Final/netty-transport-classes-kqueue-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-resolver-dns-classes-macos/4.1.82.Final/netty-resolver-dns-classes-macos-4.1.82.Final.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-native-kqueue/4.1.82.Final/netty-transport-native-kqueue-4.1.82.Final-osx-x86_64.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-transport-native-kqueue/4.1.82.Final/netty-transport-native-kqueue-4.1.82.Final-osx-aarch_64.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-resolver-dns-native-macos/4.1.82.Final/netty-resolver-dns-native-macos-4.1.82.Final-osx-x86_64.jar
[15:31:41] [Server thread/INFO]: [AdvancedSeasons] Loaded library /home/minecraft-3/server/libraries/io/netty/netty-resolver-dns-native-macos/4.1.82.Final/netty-resolver-dns-native-macos-4.1.82.Final-osx-aarch_64.jar
[15:31:42] [Server thread/INFO]: [VehiclesWASD] Loading 2 libraries... please wait
[15:31:42] [Server thread/INFO]: [VehiclesWASD] Loaded library /home/minecraft-3/server/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[15:31:42] [Server thread/INFO]: [VehiclesWASD] Loaded library /home/minecraft-3/server/libraries/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar
[15:31:44] [Server thread/INFO]: [MobsToEggs] Loading 1 libraries... please wait
[15:31:44] [Server thread/INFO]: [MobsToEggs] Loaded library /home/minecraft-3/server/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.9.22/kotlin-stdlib-1.9.22.jar
[15:31:44] [Server thread/INFO]: [MobsToEggs] Loaded library /home/minecraft-3/server/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[15:31:44] [Server thread/INFO]: [MiniaturePets] Loading 1 libraries... please wait
[15:31:44] [Server thread/INFO]: [MiniaturePets] Loaded library /home/minecraft-3/server/libraries/io/github/classgraph/classgraph/4.8.108/classgraph-4.8.108.jar
[15:31:44] [Server thread/INFO]: [Roulette] Loading 3 libraries... please wait
[15:31:44] [Server thread/INFO]: [Roulette] Loaded library /home/minecraft-3/server/libraries/org/xerial/sqlite-jdbc/3.46.1.0/sqlite-jdbc-3.46.1.0.jar
[15:31:44] [Server thread/INFO]: [Roulette] Loaded library /home/minecraft-3/server/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[15:31:44] [Server thread/INFO]: [Roulette] Loaded library /home/minecraft-3/server/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[15:31:44] [Server thread/INFO]: [Roulette] Loaded library /home/minecraft-3/server/libraries/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar
[15:31:44] [Server thread/INFO]: [AdvancedJobs] Loading 2 libraries... please wait
[15:31:44] [Server thread/INFO]: [AdvancedJobs] Loaded library /home/minecraft-3/server/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[15:31:44] [Server thread/INFO]: [AdvancedJobs] Loaded library /home/minecraft-3/server/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[15:31:44] [Server thread/INFO]: [AdvancedJobs] Loaded library /home/minecraft-3/server/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[15:31:45] [Server thread/INFO]: [Chunky] Loading Chunky v1.4.10
[15:31:45] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.6
[15:31:45] [Server thread/INFO]: [OPItems] Loading OPItems v1.9.7
[15:31:45] [Server thread/INFO]: [ChestSort] Loading ChestSort v14.1.0
[15:31:45] [Server thread/INFO]: [Core] Loading Core v0.6.4
[15:31:45] [Server thread/INFO]: [Core] Checking update for Core v0.6.4
[15:31:45] [Server thread/INFO]: [ShulkerRespawner] Loading ShulkerRespawner v1.17_1.0.16
[15:31:45] [Server thread/INFO]: [CopperItems] Loading CopperItems v2.0
[15:31:45] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.13.2
[15:31:46] [Server thread/INFO]: [AntiElytra] Loading AntiElytra v1.4.1-SNAPSHOT
[15:31:46] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.137
[15:31:46] [Server thread/INFO]: [KcBloodEffect] Loading KcBloodEffect v1.0.2
[15:31:46] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
[15:31:46] [Server thread/INFO]: [OpenInv] Loading OpenInv v5.1.1
[15:31:46] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.11
[15:31:46] [Server thread/INFO]: [craftableinvframes] Loading craftableinvframes v${version}
[15:31:46] [Server thread/INFO]: [DeathCoords] Loading DeathCoords vV1.0
[15:31:46] [Server thread/INFO]: [ArmorStandEditor] Loading ArmorStandEditor v1.5.8
[15:31:46] [Server thread/INFO]: [AntiAutoFishing] Loading AntiAutoFishing v1.3.3
[15:31:46] [Server thread/INFO]: [Katanas] Loading Katanas v2.0
[15:31:46] [Server thread/INFO]: [nightcore] Loading nightcore v2.6.3
[15:31:46] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.3.0-SNAPSHOT-726
[15:31:46] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.1) has not yet been tested! Proceed with caution.
[15:31:46] [Server thread/INFO]: [VoidSpawn] Loading VoidSpawn v1.20.0
[15:31:46] [Server thread/INFO]: [TutorialCreator] Loading TutorialCreator v1.27.0
[15:31:46] [Server thread/INFO]: [UberEnchant] Loading UberEnchant v8.11.5
[15:31:46] [Server thread/INFO]: [XP] Loading XP v1.2.1
[15:31:46] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.3-SNAPSHOT (b111-3db8e59)
[15:31:47] [Server thread/WARN]: [floodgate] en_ is not a supported Floodgate language.
[15:31:47] [Server thread/INFO]: [floodgate] Took 985ms to boot Floodgate
[15:31:47] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[15:31:47] [Server thread/INFO]: [RealScoreboard] Loading RealScoreboard v1.4.4
[15:31:47] [Server thread/INFO]: [OITogglePersist] Loading OITogglePersist v5.1.1
[15:31:47] [Server thread/INFO]: [Orebfuscator] Loading Orebfuscator v5.5.0
[15:31:47] [Server thread/INFO]: [AdvancementRewards] Loading AdvancementRewards v1.0
[15:31:47] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser-Spigot v2.4.3-SNAPSHOT
[15:31:48] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[15:31:48] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[15:31:48] [Server thread/INFO]: [GUIPlus] Loading GUIPlus v2.94
[15:31:48] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.3.6+6892-3d660b8
[15:31:49] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@569bd530]
[15:31:49] [Server thread/INFO]: [Essentials] Loading Essentials v2.21.0-dev+115-6157668
[15:31:49] [Server thread/INFO]: [DropHeads] Loading DropHeads v3.9.7
[15:31:49] [Server thread/INFO]: [AdvancedPortals] Loading AdvancedPortals v1.0.0
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.9.0
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[15:31:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[15:31:49] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.21.0-dev+115-6157668
[15:31:49] [Server thread/INFO]: [TAB] Loading TAB v4.1.8
[15:31:49] [Server thread/INFO]: [AdvancedSeasons] Loading AdvancedSeasons v1.4.14
[15:31:49] [Server thread/INFO]: [UltimateKits] Loading UltimateKits v3.1.2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loading dependency org.jooq:jooq:3.14.16 from https://repo1.maven.org/maven2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loaded dependency 'jooq-3.14.16' successfully.
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] ----------------------------
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loading dependency org.reactivestreams:reactive-streams:1.0.2 from https://repo1.maven.org/maven2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loaded dependency 'reactive-streams-1.0.2' successfully.
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] ----------------------------
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loading dependency com.h2database:h2:1.4.200 from https://repo1.maven.org/maven2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loaded dependency 'h2-1.4.200' successfully.
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] ----------------------------
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loading dependency org.apache.commons:commons-lang3:3.14.0 from https://repo1.maven.org/maven2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loaded dependency 'commons-lang3-3.14.0' successfully.
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] ----------------------------
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loading dependency org.apache.commons:commons-text:1.12.0 from https://repo1.maven.org/maven2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loaded dependency 'commons-text-1.12.0' successfully.
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] ----------------------------
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loading dependency com.zaxxer:HikariCP:4.0.3 from https://repo1.maven.org/maven2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loaded dependency 'HikariCP-4.0.3' successfully.
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] ----------------------------
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loading dependency org.mariadb.jdbc:mariadb-java-client:3.2.0 from https://repo1.maven.org/maven2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loaded dependency 'mariadb-java-client-3.2.0' successfully.
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] ----------------------------
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loading dependency com.github.cryptomorin:XSeries:11.2.1 from https://repo1.maven.org/maven2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loaded dependency 'XSeries-11.2.1' successfully.
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] ----------------------------
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loading dependency org.slf4j:slf4j-api:2.0.11 from https://repo1.maven.org/maven2
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] Loaded dependency 'slf4j-api-2.0.11' successfully.
[15:31:49] [Server thread/INFO]: [UltimateKits] [CraftaroCore] ----------------------------
[15:31:49] [Server thread/INFO]: [InteractionVisualizer] Loading InteractionVisualizer v1.18.11.0
[15:31:49] [Server thread/INFO]: [QuickShop-Hikari] Loading QuickShop-Hikari v6.2.0.7
[15:31:49] [Server thread/INFO]: QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[15:31:49] [Server thread/INFO]: Bootloader preparing for startup, please wait...
[15:31:49] [Server thread/INFO]: Initializing libraries...
[15:32:02] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[15:32:02] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 25ms
[15:32:02] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 150ms
[15:32:02] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 726ms
[15:32:02] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 1191ms
[15:32:02] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: DNF
[15:32:02] [Server thread/INFO]: Loading 12 libraries (0 skipped libraries)...
[15:32:02] [Server thread/INFO]: Loading library org.apache.commons:commons-lang3:3.14.0 [1/12]
[15:32:02] [Server thread/WARN]: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[15:32:02] [Server thread/WARN]: SLF4J: Defaulting to no-operation (NOP) logger implementation
[15:32:02] [Server thread/WARN]: SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[15:32:02] [Server thread/INFO]: Loading library org.apache.commons:commons-compress:1.25.0 [2/12]
[15:32:02] [Server thread/INFO]: Loading library com.google.code.gson:gson:2.10.1 [3/12]
[15:32:02] [Server thread/INFO]: Loading library com.google.guava:guava:33.1.0-jre [4/12]
[15:32:02] [Server thread/INFO]: Loading library com.rollbar:rollbar-java:1.9.0 [5/12]
[15:32:02] [Server thread/INFO]: Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/12]
[15:32:02] [Server thread/INFO]: Loading library com.h2database:h2:2.1.214 [7/12]
[15:32:02] [Server thread/INFO]: Loading library com.konghq:unirest-java:3.14.5 [8/12]
[15:32:02] [Server thread/INFO]: Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/12]
[15:32:02] [Server thread/INFO]: Loading library org.dom4j:dom4j:2.1.4 [10/12]
[15:32:03] [Server thread/INFO]: Loading library com.vdurmont:semver4j:3.1.0 [11/12]
[15:32:03] [Server thread/INFO]: Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/12]
[15:32:03] [Server thread/INFO]: Initialing Unirest...
[15:32:03] [Server thread/INFO]: Initializing platform...
[15:32:03] [Server thread/INFO]: Platform detected: Spigot
[15:32:03] [Server thread/WARN]: Use Paper or Paper's fork to get best performance and enhanced features!
[15:32:03] [Server thread/INFO]: Initialize logging service
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[15:32:03] [Server thread/INFO]: Platform initialized: com.ghostchu.quickshop.platform.spigot.v1_21_1.Spigot1210Platform
[15:32:03] [Server thread/INFO]: Boot QuickShop instance...
[15:32:03] [Server thread/INFO]: Creating QuickShop instance...
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[15:32:03] [Server thread/INFO]: Downloading Crowdin distribution manifest from remote server...
[15:32:03] [Server thread/INFO]: Downloading translations for 0 locales...
[15:32:03] [Server thread/INFO]: Downloading translations for 0 locales...
[15:32:03] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[15:32:04] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[15:32:04] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[15:32:04] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[15:32:04] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[15:32:04] [Server thread/INFO]: QuickShop-Hikari - Bootstrap -> Complete (14643ms). Waiting for enable...
[15:32:04] [Server thread/INFO]: [AdvancedPets] Loading AdvancedPets v2.12.8
[15:32:04] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.11+068ad68
[15:32:04] [Server thread/INFO]: [BetterTeams] Loading BetterTeams v4.10.0
[15:32:04] [Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[15:32:04] [Server thread/INFO]: [BetterTeams] File is up to date
[15:32:04] [Server thread/INFO]: [UltraBar] Loading UltraBar v2.3.2.1
[15:32:04] [Server thread/INFO]: [packetevents] Loading packetevents v2.5.0
[15:32:06] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.21.0-dev+115-6157668
[15:32:06] [Server thread/INFO]: [LevelledMobs] Loading LevelledMobs v4.1.2 b60
[15:32:06] [Server thread/INFO]: [LevelledMobs] Loading commands
[15:32:06] [Server thread/WARN]: [LevelledMobs] Loaded class net.kyori.adventure.text.Component from ArmorStandEditor v1.5.8 which is not a depend or softdepend of this plugin.
[15:32:06] [Server thread/INFO]: [MoneyFromMobs] Loading MoneyFromMobs v4.9
[15:32:06] [Server thread/INFO]: [ntdLuckyBlock] Loading ntdLuckyBlock v2.8.24
[15:32:06] [Server thread/INFO]: [VehiclesWASD] Loading VehiclesWASD v1.0.6
[15:32:06] [Server thread/INFO]: [Oneblock] Loading Oneblock v1.2.3
[15:32:06] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.12
[15:32:06] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.35-SNAPSHOT (build 3572)
[15:32:06] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.23.0
[15:32:07] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (557 ms).
[15:32:07] [Server thread/INFO]: [Shopkeepers] Loading config.
[15:32:07] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[15:32:07] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[15:32:07] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[15:32:07] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.28.0
[15:32:07] [Server thread/INFO]: [MobsToEggs] Loading MobsToEggs v1.7.13
[15:32:07] [Server thread/INFO]: [Multiverse-Portals] Loading Multiverse-Portals v4.2.3
[15:32:07] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.18.4
[15:32:07] [Server thread/INFO]: [AuraSkills] Loading AuraSkills v2.2.3
[15:32:07] [Server thread/INFO]: [MiniaturePets] Loading MiniaturePets v3.0.5
[15:32:07] [Server thread/INFO]: [dtlTradersPlus] Loading dtlTradersPlus v6.4.29
[15:32:07] [Server thread/INFO]: [SCore] Loading SCore v5.24.9.21
[15:32:07] [Server thread/INFO]: [IP] Loading IP v5.3.0
[15:32:07] [Server thread/INFO]: [Roulette] Loading Roulette v3.0.1
[15:32:07] [Server thread/INFO]: [Quests] Loading Quests v5.1.3-b503
[15:32:07] [Server thread/INFO]: [Multiverse-Inventories] Loading Multiverse-Inventories v4.2.6
[15:32:07] [Server thread/INFO]: [vzBackpack] Loading vzBackpack v0.3.2-alpha
[15:32:07] [Server thread/INFO]: [QuestsGUI] Loading QuestsGUI v2.0.0-beta
[15:32:07] [Server thread/INFO]: [GSit] Loading GSit v1.10.0
[15:32:07] [Server thread/INFO]: [AdvancedJobs] Loading AdvancedJobs v1.4.8
[15:32:07] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.6.13
[15:32:07] [Server thread/INFO]: [Bank] Loading Bank v4.8.1-RELEASE
[15:32:07] [Server thread/INFO]: [Core] Checking update for Bank v4.8.1-RELEASE
[15:32:08] [Server thread/INFO]: [Core] while parsing a block mapping
[15:32:08] [Server thread/INFO]:  in 'reader', line 35, column 7:
[15:32:08] [Server thread/INFO]:           Locked: '&a<player>'的帳戶已被鎖定'
[15:32:08] [Server thread/INFO]:           ^
[15:32:08] [Server thread/INFO]: expected <block end>, but found '<scalar>'
[15:32:08] [Server thread/INFO]:  in 'reader', line 35, column 27:
[15:32:08] [Server thread/INFO]:           Locked: '&a<player>'的帳戶已被鎖定'
[15:32:08] [Server thread/INFO]:                               ^
[15:32:08] [Server thread/INFO]: 
[15:32:09] [Server thread/INFO]: [Bank] Block loaded
[15:32:09] [Server thread/INFO]: [Bank] Sign loaded
[15:32:09] [Server thread/INFO]: [Bank] Headdb loaded
[15:32:09] [Server thread/INFO]: [Bank] Bank loaded
[15:32:09] [Server thread/INFO]: [UltimateAirdrops] Loading UltimateAirdrops v0.4.9-BETA
[15:32:09] [Server thread/INFO]: [ExecutableEvents] Loading ExecutableEvents v3.24.9.21
[15:32:09] [Server thread/INFO]: [LotterySix] Loading LotterySix v1.10.17.0
[15:32:09] [Server thread/INFO]: [Econoblocks] Loading Econoblocks v2.1.0
[15:32:09] [Server thread/INFO]: [ExecutableItems] Loading ExecutableItems v7.24.9.21
[15:32:09] [Server thread/INFO]: [SupremeBosses] Loading SupremeBosses v4.7
[15:32:09] [Server thread/INFO]: [LiteDungeon] Loading LiteDungeon v2.9.3
[15:32:09] [Server thread/INFO]: [PWarp] Loading PWarp v3.0.6-SNAPSHOT
[15:32:09] [Server thread/INFO]: [ItemJoin] Loading ItemJoin v6.1.0-RELEASE-b1031
[15:32:09] [Server thread/INFO]: [Vulcan] Loading Vulcan v2.9.0
[15:32:09] [Server thread/INFO]: [Core] Enabling Core v0.6.4
[15:32:09] [Server thread/INFO]: [Core] Attempting to load default AnvilUtil
[15:32:09] [Server thread/INFO]: [Core] Loaded default, enjoy :)
[15:32:09] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.137
[15:32:09] [Server thread/WARN]: [LuckPerms] Loaded class net.kyori.adventure.text.Component from ArmorStandEditor v1.5.8 which is not a depend or softdepend of this plugin.
[15:32:10] [Server thread/INFO]:         __    
[15:32:10] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.137
[15:32:10] [Server thread/INFO]:   |___ |      Running on Bukkit - CraftBukkit
[15:32:10] [Server thread/INFO]: 
[15:32:10] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:32:10] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[15:32:10] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:32:10] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:32:11] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1511ms)
[15:32:11] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[15:32:11] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[15:32:11] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.3
[15:32:11] [Server thread/WARN]: [nightcore] Loaded class net.milkbowl.vault.permission.Permission from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[15:32:11] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[15:32:11] [Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
[15:32:11] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[15:32:11] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[15:32:11] [Server thread/WARN]: [nightcore] ========== WARNING ==========
[15:32:11] [Server thread/WARN]: [nightcore] Enabled Mojang's DataFixer for ItemStacks to update/fix NBT structure from <= 1.20.4 to 1.20.6+
[15:32:11] [Server thread/WARN]: [nightcore] This may significally affect server's performance.
[15:32:11] [Server thread/WARN]: [nightcore] Please, re-save all configuration(s) using in-game GUI editor(s) (if there is any).
[15:32:11] [Server thread/WARN]: [nightcore] Then disable this 'feature' in the config.yml of nightcore.
[15:32:11] [Server thread/INFO]: [nightcore] Plugin loaded in 476 ms!
[15:32:11] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[15:32:11] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[15:32:11] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.21.0-dev+115-6157668 which is not a depend or softdepend of this plugin.
[15:32:11] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[15:32:11] [Server thread/INFO]: [nightcore] Found permissions provider: SuperPerms
[15:32:11] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:32:11] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[15:32:11] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[15:32:11] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:32:11] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.6+6892-3d660b8
[15:32:12] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:32:12] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:32:12] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[15:32:13] [Server thread/INFO]: [WorldEdit] ====================================================
[15:32:13] [Server thread/INFO]: [WorldEdit]  WorldEdit works better if you use Paper 
[15:32:13] [Server thread/INFO]: [WorldEdit]  as your server software. 
[15:32:13] [Server thread/INFO]: [WorldEdit]   
[15:32:13] [Server thread/INFO]: [WorldEdit]  Paper offers significant performance improvements,
[15:32:13] [Server thread/INFO]: [WorldEdit]  bug fixes, security enhancements and optional
[15:32:13] [Server thread/INFO]: [WorldEdit]  features for server owners to enhance their server.
[15:32:13] [Server thread/INFO]: [WorldEdit]   
[15:32:13] [Server thread/INFO]: [WorldEdit]  Paper includes Timings v2, which is significantly
[15:32:13] [Server thread/INFO]: [WorldEdit]  better at diagnosing lag problems over v1.
[15:32:13] [Server thread/INFO]: [WorldEdit]   
[15:32:13] [Server thread/INFO]: [WorldEdit]  All of your plugins should still work, and the
[15:32:13] [Server thread/INFO]: [WorldEdit]  Paper community will gladly help you fix any issues.
[15:32:13] [Server thread/INFO]: [WorldEdit]   
[15:32:13] [Server thread/INFO]: [WorldEdit]  Join the Paper Community @ https://papermc.io
[15:32:13] [Server thread/INFO]: [WorldEdit] ====================================================
[15:32:13] [Server thread/INFO]: [VehiclesWASD] Enabling VehiclesWASD v1.0.6
[15:32:14] [Server thread/INFO]: [VehiclesWASD] Using {Essentials v2.21.0-dev+115-6157668} as the economy provider.
[15:32:14] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:32:14] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v6.1.0-RELEASE-b1031
[15:32:14] [Server thread/INFO]: Preparing level "world"
[15:32:14] [Server thread/INFO]: -------- World Settings For [world] --------
[15:32:14] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:14] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:14] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:14] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:14] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:14] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:14] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:14] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:14] [Server thread/INFO]: View Distance: 7
[15:32:14] [Server thread/INFO]: Simulation Distance: 10
[15:32:14] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:14] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:14] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:14] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:14] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:14] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:14] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[15:32:14] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:14] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:14] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:14] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:14] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:14] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:14] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:14] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:14] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:14] [Server thread/INFO]: View Distance: 7
[15:32:14] [Server thread/INFO]: Simulation Distance: 10
[15:32:14] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:14] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:14] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:14] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:14] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:14] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:15] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[15:32:15] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:15] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:15] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:15] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:15] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:15] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:15] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:15] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:15] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:15] [Server thread/INFO]: View Distance: 7
[15:32:15] [Server thread/INFO]: Simulation Distance: 10
[15:32:15] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:15] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:15] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:15] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:15] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:15] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:15] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:32:15] [Server thread/INFO]: Time elapsed: 24 ms
[15:32:15] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[15:32:15] [Worker-Main-3/INFO]: Preparing spawn area: 100%
[15:32:15] [Server thread/INFO]: Time elapsed: 333 ms
[15:32:15] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:32:15] [Worker-Main-6/INFO]: Preparing spawn area: 100%
[15:32:15] [Server thread/INFO]: Time elapsed: 91 ms
[15:32:15] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.10
[15:32:15] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[15:32:15] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.kyori.adventure.text.Component from ArmorStandEditor v1.5.8 which is not a depend or softdepend of this plugin.
[15:32:15] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[15:32:15] [Server thread/INFO]: [OPItems] Enabling OPItems v1.9.7
[15:32:15] [Server thread/INFO]: [OPItems] OPItems is loading...
[15:32:16] [Server thread/INFO]: [OPItems] CLogger Disabled!
[15:32:16] [Server thread/INFO]: [OPItems]Looking for Updates
[15:32:16] [Server thread/INFO]: Name: OPItems v1.9.7
[15:32:16] [Server thread/INFO]: Result: NO_UPDATE
[15:32:16] [Server thread/INFO]: Update Type: RELEASE
[15:32:16] [Server thread/INFO]: [OPItems]Successfully Enabled
[15:32:16] [Server thread/INFO]: 
[15:32:16] [Server thread/INFO]: |-----------------------------|
[15:32:16] [Server thread/INFO]: |        OPItems 1.9.7        |
[15:32:16] [Server thread/INFO]: |             by              |
[15:32:16] [Server thread/INFO]: |            cel20            |
[15:32:16] [Server thread/INFO]: |-----------------------------|
[15:32:16] [Server thread/INFO]: 
[15:32:16] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.1.0
[15:32:16] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.11+068ad68
[15:32:16] [Server thread/INFO]: [ChestSort] Use permissions: true
[15:32:16] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[15:32:16] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[15:32:16] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[15:32:16] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[15:32:16] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[15:32:16] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[15:32:16] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[15:32:16] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[15:32:16] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[15:32:16] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[15:32:16] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[15:32:16] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[15:32:16] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[15:32:16] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[15:32:16] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[15:32:16] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[15:32:16] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[15:32:16] [Server thread/INFO]: [ChestSort] Check for updates: true
[15:32:16] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[15:32:16] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[15:32:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.1.0]
[15:32:16] [Server thread/INFO]: [ShulkerRespawner] Enabling ShulkerRespawner v1.17_1.0.16
[15:32:16] [Server thread/INFO]: [ShulkerRespawner] **************************************
[15:32:16] [Server thread/INFO]: [ShulkerRespawner]  v1.17_1.0.16 Loading...
[15:32:16] [Server thread/INFO]: [ShulkerRespawner] Server Version: 4290-Spigot-5a6439b-b95736b (MC: 1.21.1)
[15:32:16] [Server thread/INFO]: [ShulkerRespawner] [Warning] Version 1.21.1 has not yet been tested! Proceed with caution.
[15:32:16] [Server thread/INFO]: [ShulkerRespawner] Loading config file...
[15:32:16] [Server thread/INFO]: [ShulkerRespawner] plugins/ShulkerRespawner/config.yml
[15:32:16] [Server thread/INFO]: [ShulkerRespawner] Checking for updates...
[15:32:17] [Server thread/INFO]: [ShulkerRespawner] *!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*
[15:32:17] [Server thread/INFO]: [ShulkerRespawner] * Version is up to date!
[15:32:17] [Server thread/INFO]: [ShulkerRespawner] * Donate: https://ko-fi.com/joelgodofwar
[15:32:17] [Server thread/INFO]: [ShulkerRespawner] *!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*
[15:32:17] [Server thread/INFO]: [ShulkerRespawner]  v1.17_1.0.16 is ENABLED - Loading took 690 ms.
[15:32:17] [Server thread/INFO]: [CopperItems] Enabling CopperItems v2.0
[15:32:17] [Server thread/INFO]: [CopperItems] Datapacks folder already exists.
[15:32:17] [Server thread/INFO]: [CopperItems] Datapack is downloaded already!
[15:32:17] [Server thread/INFO]: ***********************************
[15:32:17] [Server thread/INFO]: | Copper Items have been enabled! |
[15:32:17] [Server thread/INFO]: ***********************************
[15:32:17] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.13.2
[15:32:17] [Server thread/INFO]: [NBTAPI] Checking bindings...
[15:32:17] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[15:32:17] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[15:32:17] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[15:32:17] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[15:32:17] [Server thread/INFO]: [AntiElytra] Enabling AntiElytra v1.4.1-SNAPSHOT
[15:32:17] [Server thread/INFO]: AntiElytra has been activated!
[15:32:17] [Server thread/INFO]: [KcBloodEffect] Enabling KcBloodEffect v1.0.2
[15:32:17] [Server thread/INFO]: [KcBloodEffect] 插件启用成功,作者QQ:3116078709
[15:32:17] [Server thread/INFO]: [OpenInv] Enabling OpenInv v5.1.1
[15:32:17] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[15:32:18] [Server thread/INFO]: [craftableinvframes] Enabling craftableinvframes v${version}
[15:32:18] [Server thread/INFO]: [DeathCoords] Enabling DeathCoords vV1.0
[15:32:18] [Server thread/INFO]: [ArmorStandEditor] Enabling ArmorStandEditor v1.5.8
[15:32:19] [Server thread/INFO]: [ArmorStandEditor] Your version of this plugin is up to date!
[15:32:19] [Server thread/INFO]: [ArmorStandEditor] Plugin successfully enabled.
[15:32:19] [Server thread/INFO]: [AntiAutoFishing] Enabling AntiAutoFishing v1.3.3
[15:32:19] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[15:32:19] [Server thread/INFO]: Plugin Name: AntiAutoFishing
[15:32:19] [Server thread/INFO]: Plugin Version: 1.3.3
[15:32:19] [Server thread/INFO]: Server Version: 1.21.1-R0.1-SNAPSHOT
[15:32:19] [Server thread/INFO]: Author: CodingGuru
[15:32:19] [Server thread/INFO]: Discord: https://discord.gg/CbJxH5NPvX
[15:32:19] [Server thread/INFO]: Updates: No new updates were found for this plugin.
[15:32:19] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[15:32:19] [Server thread/INFO]: [Katanas] Enabling Katanas v2.0
[15:32:19] [Server thread/INFO]: **********************************
[15:32:19] [Server thread/INFO]: | Katanas 2.0 have been enabled! |
[15:32:19] [Server thread/INFO]: **********************************
[15:32:19] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[15:32:19] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[15:32:19] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[15:32:19] [Server thread/INFO]: [TutorialCreator] Enabling TutorialCreator v1.27.0
[15:32:20] [Server thread/INFO]: [TutorialCreator] Successfully loaded ProtocolLib
[15:32:20] [Server thread/INFO]: [TutorialCreator] Loaded 2 Tutorials successfully.
[15:32:20] [Server thread/INFO]: [UberEnchant] Enabling UberEnchant v8.11.5
[15:32:20] [Server thread/WARN]: [UberEnchant] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[15:32:20] [Server thread/WARN]: [UberEnchant] Vault/Economy plugin not found, commands will work only for those with permissions!
[15:32:20] [Server thread/INFO]: [XP] Enabling XP v1.2.1
[15:32:20] [Server thread/INFO]: [XPAD]v1.2.1 Enabled!
[15:32:20] [Server thread/INFO]: [XP] [XPAD]Plugin updated!
[15:32:20] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b111-3db8e59)
[15:32:21] [Server thread/INFO]: [RealScoreboard] Enabling RealScoreboard v1.4.4
[15:32:21] [Server thread/INFO]: [RealScoreboard]    ____            _ ____                     _                         _
[15:32:21] [Server thread/INFO]: [RealScoreboard]   |  _ \ ___  __ _| / ___|  ___ ___  _ __ ___| |__   ___   __ _ _ __ __| |
[15:32:21] [Server thread/INFO]: [RealScoreboard]   | |_) / _ \/ _` | \___ \ / __/ _ \| '__/ _ \ '_ \ / _ \ / _` | '__/ _` |
[15:32:21] [Server thread/INFO]: [RealScoreboard]   |  _ <  __/ (_| | |___) | (_| (_) | | |  __/ |_) | (_) | (_| | | | (_| |
[15:32:21] [Server thread/INFO]: [RealScoreboard]   |_| \_\___|\__,_|_|____/ \___\___/|_|  \___|_.__/ \___/ \__,_|_|  \__,_|
[15:32:21] [Server thread/INFO]: [RealScoreboard]   Made by: JoseGamer_PT                               Version: 1.4.4
[15:32:21] [Server thread/INFO]: [RealScoreboard] 
[15:32:21] [Server thread/INFO]: [RealScoreboard] Loaded 1 scoreboards.
[15:32:21] [Server thread/INFO]: [RealScoreboard] Your config version: 18
[15:32:21] [Server thread/INFO]: [RealScoreboard] Server version: 1.21.1-R0.1-SNAPSHOT
[15:32:21] [Server thread/INFO]: [RealScoreboard] Finished loading in 0.433 seconds.
[15:32:21] [Server thread/INFO]: [RealScoreboard] <------------------ RealScoreboard v1.4.4 ------------------>
[15:32:21] [Server thread/INFO]: [OITogglePersist] Enabling OITogglePersist v5.1.1
[15:32:21] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.5.0
[15:32:23] [Server thread/INFO]: [AdvancementRewards] Enabling AdvancementRewards v1.0
[15:32:23] [Server thread/INFO]: [AdvancementRewards] AdvancementRewards has been enabled.
[15:32:23] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.4.3-SNAPSHOT
[15:32:23] [Server thread/INFO]: [GUIPlus] Enabling GUIPlus v2.94
[15:32:24] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+115-6157668
[15:32:25] [Server thread/INFO]: You are running a server with limited API functionality. EssentialsX will still work, but certain features may be disabled.
[15:32:25] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[15:32:25] [Server thread/INFO]: No kits found to migrate.
[15:32:25] [Server thread/INFO]: Loaded 42679 items from items.json.
[15:32:25] [Server thread/INFO]: Using locale en
[15:32:25] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[15:32:25] [Server thread/WARN]: Loaded class {0} from {1} which is not a depend or softdepend of this plugin.
[15:32:25] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[15:32:25] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[15:32:25] [Server thread/INFO]: Using Vault based permissions (LuckPerms)
[15:32:25] [Server thread/INFO]: [DropHeads] Enabling DropHeads v3.9.7
[15:32:26] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v1.0.0
[15:32:26] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[15:32:26] [Server thread/INFO]: [AdvancedPortals] Paper config not detected, ignoring paper settings
[15:32:26] [Server thread/WARN]: [AdvancedPortals] Proxy features disabled for Advanced Portals as bungee isn't enabled on the server (spigot.yml).If you are using Paper proxies.velocity.enabled (config/paper-global.yml) or settings.velocity-support.enabled (paper.yml) may not be enabled 
[15:32:26] [Server thread/INFO]: Advanced portals have been successfully enabled!
[15:32:26] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[15:32:26] [Server thread/WARN]: [ajLeaderboards] Loaded class net.kyori.adventure.text.Component from ArmorStandEditor v1.5.8 which is not a depend or softdepend of this plugin.
[15:32:26] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[15:32:26] [Server thread/INFO]: [ajLeaderboards] Loaded 8 boards
[15:32:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[15:32:27] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[15:32:27] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[15:32:27] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+115-6157668
[15:32:27] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[15:32:27] [Server thread/INFO]: [TAB] Enabling TAB v4.1.8
[15:32:27] [Server thread/INFO]: [TAB] Loaded NMS hook in 130ms
[15:32:27] [Server thread/WARN]: [TAB] Loaded class net.kyori.adventure.text.minimessage.MiniMessage from QuickShop-Hikari v6.2.0.7 which is not a depend or softdepend of this plugin.
[15:32:27] [Server thread/WARN]: [TAB] Loaded class net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer from ArmorStandEditor v1.5.8 which is not a depend or softdepend of this plugin.
[15:32:27] [Server thread/INFO]: [TAB] [WARN] File plugins/TAB/errors.log has reached its size limit (1MB). No new errors will be logged. Take a look at the existing reported errors, as they may have caused the plugin to not work properly in the past and if not fixed, will most likely cause problems in the future as well.
[15:32:27] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[15:32:27] [Server thread/INFO]: [TAB] Enabled in 377ms
[15:32:27] [Server thread/INFO]: [AdvancedSeasons] Enabling AdvancedSeasons v1.4.14
[15:32:27] [Server thread/WARN]: [AdvancedSeasons] Minecraft Version: MC1_21_R1, is paper: false
[15:32:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedseasons [1.0.0]
[15:32:28] [Server thread/INFO]: [UltimateKits] Enabling UltimateKits v3.1.2
[15:32:28] [Server thread/INFO]:  
[15:32:28] [Server thread/INFO]: =============================
[15:32:28] [Server thread/INFO]: UltimateKits 3.1.2 by Songoda <3!
[15:32:28] [Server thread/INFO]: Action: Enabling...
[15:32:28] [Server thread/INFO]: [UltimateKits] Loaded locale "en_US"
[15:32:28] [Server thread/INFO]: HikariPool-1 - Starting...
[15:32:28] [Server thread/INFO]: HikariPool-1 - Start completed.
[15:32:28] [Server thread/INFO]: [UltimateKits] Data handler connected using H2.
[15:32:28] [Server thread/INFO]: [UltimateKits] [CraftaroCore] [CraftaroCore] Hooked UltimateKits.
[15:32:28] [Server thread/INFO]: =============================
[15:32:28] [Server thread/INFO]:  
[15:32:28] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.11.0
[15:32:28] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into OpenInv!
[15:32:29] [pool-38-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[15:32:30] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[15:32:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[15:32:31] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.7
[15:32:31] [Server thread/INFO]: QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[15:32:31] [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
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Item display, loading ProtocolLib support...
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded ProtocolLib support!
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[15:32:31] [Server thread/INFO]: HikariPool-1 - Starting...
[15:32:31] [Server thread/INFO]: HikariPool-1 - Start completed.
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[15:32:31] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[15:32:32] [Server thread/WARN]: [QuickShop-Hikari] Loaded class com.sk89q.worldguard.bukkit.listener.EventAbstractionListener from WorldGuard v7.0.11+068ad68 which is not a depend or softdepend of this plugin.
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Used 30ms to fetch 249 shops from database.
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Used 165ms to load 0 shops into memory (249 shops will be loaded after chunks/world loaded).
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[15:32:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.7]
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[15:32:32] [Server thread/WARN]: [ProtocolLib] Loaded class net.kyori.adventure.text.Component from ArmorStandEditor v1.5.8 which is not a depend or softdepend of this plugin.
[15:32:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[15:32:32] [Server thread/INFO]: QuickShop-Hikari - Bootstrap -> All Complete. (1019ms)
[15:32:32] [Server thread/INFO]: [AdvancedPets] Enabling AdvancedPets v2.12.8
[15:32:32] [Server thread/INFO]: [AdvancedPets] Loaded 24,661 custom heads
[15:32:33] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[15:32:38] [Server thread/INFO]: [AdvancedPets] Reindeer.amob model wasn't loaded - it requires ModelEngine: https://mobs.advancedplugins.net/supported-plugins/modelengine 
[15:32:38] [Server thread/INFO]: [AdvancedPets] Mammoth.amob model wasn't loaded - it requires ModelEngine: https://mobs.advancedplugins.net/supported-plugins/modelengine 
[15:32:38] [Server thread/INFO]: [AdvancedPets] Bear.amob model wasn't loaded - it requires ModelEngine: https://mobs.advancedplugins.net/supported-plugins/modelengine 
[15:32:38] [Server thread/INFO]: [AdvancedPets] Loaded 23 mob configurations.
[15:32:38] [Server thread/INFO]: [AdvancedPets] Loaded 6 pet abilities.
[15:32:38] [Server thread/INFO]: [AdvancedPets] Loaded 6 Skin Packs.
[15:32:38] [Server thread/ERROR]: [AdvancedPets] Plugin AdvancedPets v2.12.8 has failed to register events for class net.advancedplugins.pets.listeners.etc.VanillaPetFix because com/destroystokyo/paper/event/entity/CreeperIgniteEvent does not exist.
[15:32:38] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11+068ad68
[15:32:38] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[15:32:38] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[15:32:38] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[15:32:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[15:32:38] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:32:38] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.10.0
[15:32:38] [Server thread/INFO]: [BetterTeams] Checking if the file zh_tw.yml is up to date
[15:32:38] [Server thread/INFO]: [BetterTeams] File is up to date
[15:32:38] [Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[15:32:38] [Server thread/INFO]: [BetterTeams] File is up to date
[15:32:38] [Server thread/INFO]: [BetterTeams] ==================================================================
[15:32:38] [Server thread/INFO]: [BetterTeams] Messages are missing from your selected language, the following messages are using english:
[15:32:38] [Server thread/INFO]: [BetterTeams] - internalError: &4Something went wrong while executing that command, please report it to your server owners
[15:32:38] [Server thread/INFO]: [BetterTeams] - loading: &6Loading
[15:32:38] [Server thread/INFO]: [BetterTeams] - placeholder.inteam: true
[15:32:38] [Server thread/INFO]: [BetterTeams] - placeholder.notinteam: false
[15:32:38] [Server thread/INFO]: [BetterTeams] - placeholder.noTitle: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - invite.hover: &6Click to join &b{0}
[15:32:38] [Server thread/INFO]: [BetterTeams] - info.online: &a
[15:32:38] [Server thread/INFO]: [BetterTeams] - info.offline: &c
[15:32:38] [Server thread/INFO]: [BetterTeams] - kick.title: &4You have been kicked from your team
[15:32:38] [Server thread/INFO]: [BetterTeams] - ban.title: &4You have been banned from your team
[15:32:38] [Server thread/INFO]: [BetterTeams] - ally.ally_title: &6Your team is now allied with &b{0}
[15:32:38] [Server thread/INFO]: [BetterTeams] - neutral.remove_title: &4You are no longer allied with &b{0}
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.versionstorage: &6Storage Method: &b{0}
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.versionversion: &6Minecraft Version: &b{0}
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.versionlanguage: &6Language Selected: &b{0}
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.versiononline: &6Online mode: &b{0}
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.versionplayers: &6Player count: &b{0}
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.bal.toSmall: &4The balance must be greater than 0
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.bal.success: &6That teams balance has been changed
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.teleport.success: &6All online members of that team were teleported
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.teleport.player.success: &6That player was teleported
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.ally.same: &4You cannot make a team an ally of itself
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.ally.already: &4Those teams are already allies
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.ally.success: &6Those two teams are now allies
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.neutral.same: &4You cannot enter the same team twice
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.neutral.not: &4Those teams are not allies
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.neutral.success: &6Those teams are no longer allies
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.import.fail: &4The messages import failed, check the console for errors
[15:32:38] [Server thread/INFO]: [BetterTeams] - admin.import.success: &6The messages have been successfully imported
[15:32:38] [Server thread/INFO]: [BetterTeams] - help.header: &6---- &bBetterTeams Help &6----
[15:32:38] [Server thread/INFO]: [BetterTeams] - help.footer: &6---- &bPage {0}/{1} - /{2} help <page> &6----
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.leave: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.sethome: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.create: <name> [tag]
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.rank: [team]
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.tag: [tag]
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.disband: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.info: [team/player]
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.delwarp: <name> [password]
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.chest: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.neutral: <team>
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.pvp: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.baltop: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.list: [page]
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.home: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.help: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.unban: <player>
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.demote: <player>
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.kick: <player>
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.chat: [message]
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.name: <name>
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.deposit: <amount>
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.invite: <player>
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.open: 
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.warp: <name>
[15:32:38] [Server thread/INFO]: [BetterTeams] - helpArg.withdraw: <amount>
[15:32:38] [Server thread/INFO]: [BetterTeams] - command.debug: debug
[15:32:38] [Server thread/INFO]: [BetterTeams] - command.teleport: teleport
[15:32:38] [Server thread/INFO]: [BetterTeams] - command.importmessages: importmessages
[15:32:38] [Server thread/INFO]: [BetterTeams] - command.money: money
[15:32:38] [Server thread/INFO]: [BetterTeams] If you are able to help with translation please join the discord server and make yourself known (https://discord.gg/JF9DNs3)
[15:32:38] [Server thread/INFO]: [BetterTeams] A file called `missingmessages.txt` has been created within this plugins folder. To contribute to the community translations, translate the messages within it and submit it to the discord
[15:32:38] [Server thread/INFO]: [BetterTeams] ==================================================================
[15:32:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.10.0]
[15:32:39] [Server thread/INFO]: Display team name config value: prefix
[15:32:39] [Server thread/INFO]: Loading below name. Type: PREFIX
[15:32:39] [Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@25f844f5
[15:32:39] [Server thread/INFO]: [UltraBar] Enabling UltraBar v2.3.2.1
[15:32:39] [Server thread/INFO]: [UltraBar] WorldGuard detected. WorldGuard addon activated.
[15:32:39] [Server thread/INFO]: [UltraBar] PlaceholderAPI detected. PlaceholderAPI addon activated.
[15:32:39] [Server thread/INFO]: [UltraBar] Your server is running version v1_21_R1!
[15:32:39] [Server thread/INFO]: [UltraBar] UltraBar is enabled and running fine! V: 2.3.2.1
[15:32:39] [Server thread/INFO]: [UltraBar] Bstat metrics for this plugin is enabled. Disable it in the config if you do not want it on.
[15:32:39] [Server thread/INFO]: [packetevents] Enabling packetevents v2.5.0
[15:32:39] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[15:32:39] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+115-6157668
[15:32:39] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[15:32:39] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.1.2 b60
[15:32:39] [Server thread/INFO]: [LevelledMobs] Enabling commands
[15:32:39] [Server thread/INFO]: [LevelledMobs] Using NMS version v1_21_R1 for nametag support
[15:32:39] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[15:32:39] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[15:32:39] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[15:32:39] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[15:32:39] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[15:32:39] [Server thread/INFO]: [LevelledMobs] Current rules hash: 2f72c9f239f5079990adc64238878cb9eb707f7a23321e0df750415d7a201a5b
[15:32:39] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[15:32:39] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[15:32:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.1.2 b60]
[15:32:39] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[15:32:39] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[15:32:39] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 259ms)
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Enabling MoneyFromMobs v4.9
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Successfully loaded Looting multiplier of 0% per level of enchantment
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Successfully loaded World multiplier of 5% For World: world1
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Successfully loaded World multiplier of 10% For World: world2
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Successfully loaded Permission multiplier of 5% For Permission Group: PermissionGroup1
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Successfully loaded Permission multiplier of 10% For Permission Group: PermissionGroup2
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Successfully loaded Player Death multiplier of 5% For Permission Group: PermissionGroup1
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Successfully loaded Player Death multiplier of 10% For Permission Group: PermissionGroup2
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Found LevelledMobs and successfully loaded multiplier of 15% per level of mob
[15:32:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: moneyfrommobs [4.9]
[15:32:39] [Server thread/INFO]: [MoneyFromMobs] Found PlaceholderAPI and expansion successfully registered 
[15:32:39] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.5.0)
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Enabling ntdLuckyBlock v2.8.24
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Starting LuckyBlock (ntdLuckyBlock) v2.8.24, build131(22/09/2024), free
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock]   ╭╮╱╱╭╮╱╭┳━━━┳╮╭━┳╮╱╱╭┳━━╮╭╮╱╱╭━━━┳━━━┳╮╭━╮
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock]   ┃┃╱╱┃┃╱┃┃╭━╮┃┃┃╭┫╰╮╭╯┃╭╮┃┃┃╱╱┃╭━╮┃╭━╮┃┃┃╭╯
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock]   ┃┃╱╱┃┃╱┃┃┃╱╰┫╰╯╯╰╮╰╯╭┫╰╯╰┫┃╱╱┃┃╱┃┃┃╱╰┫╰╯╯
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock]   ┃┃╱╭┫┃╱┃┃┃╱╭┫╭╮┃╱╰╮╭╯┃╭━╮┃┃╱╭┫┃╱┃┃┃╱╭┫╭╮┃
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock]   ┃╰━╯┃╰━╯┃╰━╯┃┃┃╰╮╱┃┃╱┃╰━╯┃╰━╯┃╰━╯┃╰━╯┃┃┃╰╮
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock]   ╰━━━┻━━━┻━━━┻╯╰━╯╱╰╯╱╰━━━┻━━━┻━━━┻━━━┻╯╰━╯ NTD
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock]           Made with love by DenBeKKer
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] 
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] =-= SUPPORT  BUG REPORTING  FEATURE REQUESTING =-=
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock]  > Discord - https://discord.gg/vbYW3sperj
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock]  > Vkontakte - https://vk.com/danirodplay (Rus)
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] =-= SUPPORT  BUG REPORTING  FEATURE REQUESTING =-=
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Loaded main material version
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Loading NMS for your platform (4290-Spigot-5a6439b-b95736b (MC: 1.21.1), unknown)...
[15:32:39] [Server thread/WARN]: [ntdLuckyBlock] Loading unverified language file! It may contains exceptions or illegal words. Check before using is recommended
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Loading language file "zh_cn" by SnowCutieOwO
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Vault connected
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] WorldEdit connected
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] WorldGuard connected
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] TokenManager not found
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] SlimeFun not found
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Found 3/5 compatible plugins
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Loading system...
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Loaded 11 internal custom items...
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Loaded 11 custom items... (Total)
[15:32:39] [Server thread/WARN]: org.bukkit.configuration.InvalidConfigurationException: while parsing a block mapping
[15:32:39] [Server thread/WARN]:  in 'reader', line 14, column 3:
[15:32:39] [Server thread/WARN]:       '0':
[15:32:39] [Server thread/WARN]:       ^
[15:32:39] [Server thread/WARN]: expected <block end>, but found '<block mapping start>'
[15:32:39] [Server thread/WARN]:  in 'reader', line 121, column 4:
[15:32:39] [Server thread/WARN]:        '36':
[15:32:39] [Server thread/WARN]:        ^
[15:32:39] [Server thread/WARN]: 
[15:32:39] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:110)
[15:32:39] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160)
[15:32:39] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128)
[15:32:39] [Server thread/WARN]:     at me.DenBeKKer.ntdLuckyBlock.util.Config.load(Unknown Source)
[15:32:39] [Server thread/WARN]:     at me.DenBeKKer.ntdLuckyBlock.util.Config.copy(Unknown Source)
[15:32:39] [Server thread/WARN]:     at me.DenBeKKer.ntdLuckyBlock.LBMain$LuckyBlockType.load(Unknown Source)
[15:32:39] [Server thread/WARN]:     at me.DenBeKKer.ntdLuckyBlock.LBMain.do(Unknown Source)
[15:32:39] [Server thread/WARN]:     at me.DenBeKKer.ntdLuckyBlock.LBMain.onEnable(Unknown Source)
[15:32:39] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:267)
[15:32:39] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[15:32:39] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:492)
[15:32:39] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:575)
[15:32:39] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:489)
[15:32:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:641)
[15:32:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:426)
[15:32:39] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:269)
[15:32:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1017)
[15:32:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[15:32:39] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[15:32:39] [Server thread/WARN]: Caused by: while parsing a block mapping
[15:32:39] [Server thread/WARN]:  in 'reader', line 14, column 3:
[15:32:39] [Server thread/WARN]:       '0':
[15:32:39] [Server thread/WARN]:       ^
[15:32:39] [Server thread/WARN]: expected <block end>, but found '<block mapping start>'
[15:32:39] [Server thread/WARN]:  in 'reader', line 121, column 4:
[15:32:39] [Server thread/WARN]:        '36':
[15:32:39] [Server thread/WARN]:        ^
[15:32:39] [Server thread/WARN]: 
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:654)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:284)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:207)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157)
[15:32:39] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575)
[15:32:39] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:103)
[15:32:39] [Server thread/WARN]:     ... 18 more
[15:32:39] [Server thread/ERROR]: [ntdLuckyBlock] 幸運方塊 RED 不能載入... 報錯: texture not set
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] 載入了 15 種幸運方塊...
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] System loaded (took 49 ms)...
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] If you love my plugin, support me with 5 stars review(https://www.spigotmc.org/resources/92026/) or consider to purchase premium plugin version (https://www.spigotmc.org/resources/94872/)
[15:32:39] [Server thread/INFO]: [ntdLuckyBlock] Enabled (took 154 ms)... 
[15:32:39] [Server thread/INFO]: [Oneblock] Enabling Oneblock v1.2.3
[15:32:39] [Server thread/INFO]: [Oneblock] 
┏━┓····┏━━┓·····┏┓
┃┃┣━┳┳━┫┏┓┣┓┏━┳━┫┣┓
┃┃┃┃┃┃┻┫┏┓┃┗┫╋┃━┫━┫
┗━┻┻━┻━┻━━┻━┻━┻━┻┻┛ by MrMarL
[15:32:39] [Server thread/INFO]: [Oneblock] PlaceholderAPI has been found!
[15:32:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: OB [1.2.0]
[15:32:39] [Server thread/ERROR]: [Oneblock] Plugin Oneblock v1.2.3 has failed to register events for class Oneblock.Oneblock$ItemsAdderEvent because dev/lone/itemsadder/api/Events/ItemsAdderLoadDataEvent does not exist.
[15:32:39] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[15:32:39] [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--].
[15:32:39] [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.
[15:32:39] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:39] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:39] [Server thread/INFO]: -------- World Settings For [test] --------
[15:32:39] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:39] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:39] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:39] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:39] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:39] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:39] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:39] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:39] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:39] [Server thread/INFO]: View Distance: 7
[15:32:39] [Server thread/INFO]: Simulation Distance: 10
[15:32:39] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:39] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:39] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:39] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:39] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:39] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:39] [Server thread/INFO]: Preparing start region for dimension minecraft:test
[15:32:40] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[15:32:40] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[15:32:40] [Server thread/INFO]: Time elapsed: 717 ms
[15:32:40] [Server thread/INFO]: [WorldGuard] (test) TNT ignition is PERMITTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] (test) Lighters are PERMITTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] (test) Lava fire is PERMITTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] (test) Fire spread is UNRESTRICTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'test'
[15:32:40] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:40] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Used 1ms to fetch 0 shops from database.
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:40] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Money2
[15:32:40] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:32:40] [Server thread/INFO]: -------- World Settings For [Money_nether] --------
[15:32:40] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:40] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:40] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:40] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:40] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:40] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:40] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:40] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:40] [Server thread/INFO]: View Distance: 7
[15:32:40] [Server thread/INFO]: Simulation Distance: 10
[15:32:40] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:40] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:40] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:40] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:40] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:40] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:40] [Server thread/INFO]: Preparing start region for dimension minecraft:money_nether
[15:32:40] [Worker-Main-6/INFO]: Preparing spawn area: 0%
[15:32:40] [Server thread/INFO]: Time elapsed: 78 ms
[15:32:40] [Server thread/INFO]: [WorldGuard] (Money_nether) TNT ignition is PERMITTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] (Money_nether) Lighters are PERMITTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] (Money_nether) Lava fire is PERMITTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] (Money_nether) Fire spread is UNRESTRICTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Money_nether'
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:40] [Server thread/INFO]: -------- World Settings For [parkour1] --------
[15:32:40] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:40] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:40] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:40] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:40] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:40] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:40] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:40] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:40] [Server thread/INFO]: View Distance: 7
[15:32:40] [Server thread/INFO]: Simulation Distance: 10
[15:32:40] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:40] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:40] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:40] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:40] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:40] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:40] [Server thread/INFO]: Preparing start region for dimension minecraft:parkour1
[15:32:40] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[15:32:40] [Server thread/INFO]: Time elapsed: 63 ms
[15:32:40] [Server thread/INFO]: [WorldGuard] (parkour1) TNT ignition is PERMITTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] (parkour1) Lighters are PERMITTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] (parkour1) Lava fire is PERMITTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] (parkour1) Fire spread is UNRESTRICTED.
[15:32:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'parkour1'
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:40] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:40] [Server thread/INFO]: -------- World Settings For [parkour2] --------
[15:32:40] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:40] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:40] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:40] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:40] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:40] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:40] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:40] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:40] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:40] [Server thread/INFO]: View Distance: 7
[15:32:40] [Server thread/INFO]: Simulation Distance: 10
[15:32:40] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:40] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:40] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:40] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:40] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:40] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:40] [Server thread/INFO]: Preparing start region for dimension minecraft:parkour2
[15:32:40] [Worker-Main-5/INFO]: Preparing spawn area: 0%
[15:32:41] [Server thread/INFO]: Time elapsed: 241 ms
[15:32:41] [Server thread/INFO]: [WorldGuard] (parkour2) TNT ignition is PERMITTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] (parkour2) Lighters are PERMITTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] (parkour2) Lava fire is PERMITTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] (parkour2) Fire spread is UNRESTRICTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'parkour2'
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:41] [Server thread/INFO]: -------- World Settings For [Money] --------
[15:32:41] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:41] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:41] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:41] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:41] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:41] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:41] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:41] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:41] [Server thread/INFO]: View Distance: 7
[15:32:41] [Server thread/INFO]: Simulation Distance: 10
[15:32:41] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:41] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:41] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:41] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:41] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:41] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:41] [Server thread/INFO]: Preparing start region for dimension minecraft:money
[15:32:41] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[15:32:41] [Server thread/INFO]: Time elapsed: 155 ms
[15:32:41] [Server thread/INFO]: [WorldGuard] (Money) TNT ignition is PERMITTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] (Money) Lighters are PERMITTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] (Money) Lava fire is PERMITTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] (Money) Fire spread is UNRESTRICTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Money'
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:41] [Server thread/INFO]: -------- World Settings For [parkour3] --------
[15:32:41] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:41] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:41] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:41] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:41] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:41] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:41] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:41] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:41] [Server thread/INFO]: View Distance: 7
[15:32:41] [Server thread/INFO]: Simulation Distance: 10
[15:32:41] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:41] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:41] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:41] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:41] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:41] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:41] [Server thread/INFO]: Preparing start region for dimension minecraft:parkour3
[15:32:41] [Server thread/INFO]: Time elapsed: 148 ms
[15:32:41] [Server thread/INFO]: [WorldGuard] (parkour3) TNT ignition is PERMITTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] (parkour3) Lighters are PERMITTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] (parkour3) Lava fire is PERMITTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] (parkour3) Fire spread is UNRESTRICTED.
[15:32:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'parkour3'
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:41] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:41] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:41] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:41] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Boss
[15:32:41] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:32:41] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:41] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:41] [Server thread/INFO]: -------- World Settings For [ObShop] --------
[15:32:41] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:41] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:41] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:41] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:41] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:41] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:41] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:41] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:41] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:41] [Server thread/INFO]: View Distance: 7
[15:32:41] [Server thread/INFO]: Simulation Distance: 10
[15:32:41] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:41] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:41] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:41] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:41] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:41] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:41] [Server thread/INFO]: Preparing start region for dimension minecraft:obshop
[15:32:42] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[15:32:42] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[15:32:42] [Server thread/INFO]: Time elapsed: 712 ms
[15:32:42] [Server thread/INFO]: [WorldGuard] (ObShop) TNT ignition is PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (ObShop) Lighters are PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (ObShop) Lava fire is PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (ObShop) Fire spread is UNRESTRICTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ObShop'
[15:32:42] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:42] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Used 1ms to fetch 48 shops from database.
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Used 38ms to load 48 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:42] [Server thread/INFO]: -------- World Settings For [parkour4] --------
[15:32:42] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:42] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:42] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:42] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:42] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:42] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:42] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:42] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:42] [Server thread/INFO]: View Distance: 7
[15:32:42] [Server thread/INFO]: Simulation Distance: 10
[15:32:42] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:42] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:42] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:42] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:42] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:42] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:42] [Server thread/INFO]: Preparing start region for dimension minecraft:parkour4
[15:32:42] [Server thread/INFO]: Time elapsed: 0 ms
[15:32:42] [Server thread/INFO]: [WorldGuard] (parkour4) TNT ignition is PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (parkour4) Lighters are PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (parkour4) Lava fire is PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (parkour4) Fire spread is UNRESTRICTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'parkour4'
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:42] [Server thread/INFO]: -------- World Settings For [parkour5] --------
[15:32:42] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:42] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:42] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:42] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:42] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:42] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:42] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:42] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:42] [Server thread/INFO]: View Distance: 7
[15:32:42] [Server thread/INFO]: Simulation Distance: 10
[15:32:42] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:42] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:42] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:42] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:42] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:42] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:42] [Server thread/INFO]: Preparing start region for dimension minecraft:parkour5
[15:32:42] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[15:32:42] [Server thread/INFO]: Time elapsed: 51 ms
[15:32:42] [Server thread/INFO]: [WorldGuard] (parkour5) TNT ignition is PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (parkour5) Lighters are PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (parkour5) Lava fire is PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (parkour5) Fire spread is UNRESTRICTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'parkour5'
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Used 1ms to fetch 0 shops from database.
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:42] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Parkour1
[15:32:42] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:32:42] [Server thread/INFO]: -------- World Settings For [WorldSpawn1] --------
[15:32:42] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:42] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:42] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:42] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:42] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:42] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:42] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:42] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:42] [Server thread/INFO]: View Distance: 7
[15:32:42] [Server thread/INFO]: Simulation Distance: 10
[15:32:42] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:42] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:42] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:42] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:42] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:42] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:42] [Server thread/INFO]: Preparing start region for dimension minecraft:worldspawn1
[15:32:42] [Worker-Main-6/INFO]: Preparing spawn area: 0%
[15:32:42] [Server thread/INFO]: Time elapsed: 72 ms
[15:32:42] [Server thread/INFO]: [WorldGuard] (WorldSpawn1) TNT ignition is PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (WorldSpawn1) Lighters are PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (WorldSpawn1) Lava fire is PERMITTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] (WorldSpawn1) Fire spread is UNRESTRICTED.
[15:32:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WorldSpawn1'
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Used 2ms to fetch 89 shops from database.
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:42] [Server thread/INFO]: [QuickShop-Hikari] Used 13ms to load 0 shops into memory (89 shops will be loaded after chunks/world loaded).
[15:32:42] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: WorldSpawn
[15:32:42] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:32:42] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:42] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:42] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: w1
[15:32:42] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:32:42] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:42] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:42] [Server thread/INFO]: -------- World Settings For [parkour] --------
[15:32:42] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:42] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:42] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:42] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:42] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:42] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:42] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:42] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:42] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:42] [Server thread/INFO]: View Distance: 7
[15:32:42] [Server thread/INFO]: Simulation Distance: 10
[15:32:42] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:42] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:42] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:42] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:42] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:42] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:42] [Server thread/INFO]: Preparing start region for dimension minecraft:parkour
[15:32:43] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[15:32:43] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[15:32:43] [Server thread/INFO]: Time elapsed: 619 ms
[15:32:43] [Server thread/INFO]: [WorldGuard] (parkour) TNT ignition is PERMITTED.
[15:32:43] [Server thread/INFO]: [WorldGuard] (parkour) Lighters are PERMITTED.
[15:32:43] [Server thread/INFO]: [WorldGuard] (parkour) Lava fire is PERMITTED.
[15:32:43] [Server thread/INFO]: [WorldGuard] (parkour) Fire spread is UNRESTRICTED.
[15:32:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'parkour'
[15:32:43] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:43] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:43] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:43] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:43] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:43] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:43] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:43] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:43] [Server thread/INFO]: -------- World Settings For [Mission] --------
[15:32:43] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:43] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:43] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:43] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:43] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:43] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:43] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:43] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:43] [Server thread/INFO]: View Distance: 7
[15:32:43] [Server thread/INFO]: Simulation Distance: 10
[15:32:43] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:43] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:43] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:43] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:43] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:43] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:43] [Server thread/INFO]: Preparing start region for dimension minecraft:mission
[15:32:43] [Worker-Main-6/INFO]: Preparing spawn area: 0%
[15:32:43] [Worker-Main-6/INFO]: Preparing spawn area: 0%
[15:32:43] [Server thread/INFO]: Time elapsed: 636 ms
[15:32:43] [Server thread/INFO]: [WorldGuard] (Mission) TNT ignition is PERMITTED.
[15:32:43] [Server thread/INFO]: [WorldGuard] (Mission) Lighters are PERMITTED.
[15:32:43] [Server thread/INFO]: [WorldGuard] (Mission) Lava fire is PERMITTED.
[15:32:43] [Server thread/INFO]: [WorldGuard] (Mission) Fire spread is UNRESTRICTED.
[15:32:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Mission'
[15:32:43] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:43] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:43] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:43] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:43] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:43] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:43] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: w2
[15:32:43] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:32:43] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:43] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:43] [Server thread/INFO]: -------- World Settings For [Blackshop] --------
[15:32:43] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:43] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:43] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:43] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:43] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:43] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:43] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:43] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:43] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:43] [Server thread/INFO]: View Distance: 7
[15:32:43] [Server thread/INFO]: Simulation Distance: 10
[15:32:43] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:43] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:43] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:43] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:43] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:43] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:43] [Server thread/INFO]: Preparing start region for dimension minecraft:blackshop
[15:32:44] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[15:32:44] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[15:32:44] [Server thread/INFO]: Time elapsed: 665 ms
[15:32:44] [Server thread/INFO]: [WorldGuard] (Blackshop) TNT ignition is PERMITTED.
[15:32:44] [Server thread/INFO]: [WorldGuard] (Blackshop) Lighters are PERMITTED.
[15:32:44] [Server thread/INFO]: [WorldGuard] (Blackshop) Lava fire is PERMITTED.
[15:32:44] [Server thread/INFO]: [WorldGuard] (Blackshop) Fire spread is UNRESTRICTED.
[15:32:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Blackshop'
[15:32:44] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:44] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:44] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:44] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:44] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:44] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:44] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:44] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:44] [Server thread/INFO]: -------- World Settings For [NL] --------
[15:32:44] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:44] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:44] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:44] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:44] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:44] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:44] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:44] [Server thread/INFO]: View Distance: 7
[15:32:44] [Server thread/INFO]: Simulation Distance: 10
[15:32:44] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:44] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:44] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:44] [Server thread/INFO]: Preparing start region for dimension minecraft:nl
[15:32:45] [Worker-Main-7/INFO]: Preparing spawn area: 0%
[15:32:45] [Worker-Main-7/INFO]: Preparing spawn area: 0%
[15:32:45] [Server thread/INFO]: Time elapsed: 604 ms
[15:32:45] [Server thread/INFO]: [WorldGuard] (NL) TNT ignition is PERMITTED.
[15:32:45] [Server thread/INFO]: [WorldGuard] (NL) Lighters are PERMITTED.
[15:32:45] [Server thread/INFO]: [WorldGuard] (NL) Lava fire is PERMITTED.
[15:32:45] [Server thread/INFO]: [WorldGuard] (NL) Fire spread is UNRESTRICTED.
[15:32:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'NL'
[15:32:45] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[15:32:45] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:32:45] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:45] [Server thread/INFO]: [QuickShop-Hikari] Used 1ms to fetch 0 shops from database.
[15:32:45] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:45] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:45] [Server thread/INFO]: -------- World Settings For [OneBlock] --------
[15:32:45] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:45] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:45] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:45] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:45] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:45] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:45] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:45] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:45] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:45] [Server thread/INFO]: View Distance: 7
[15:32:45] [Server thread/INFO]: Simulation Distance: 10
[15:32:45] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:45] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:45] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:45] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:45] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:45] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:45] [Server thread/INFO]: Preparing start region for dimension minecraft:oneblock
[15:32:45] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[15:32:45] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[15:32:45] [Server thread/INFO]: Time elapsed: 566 ms
[15:32:45] [Server thread/INFO]: [WorldGuard] (OneBlock) TNT ignition is PERMITTED.
[15:32:45] [Server thread/INFO]: [WorldGuard] (OneBlock) Lighters are PERMITTED.
[15:32:45] [Server thread/INFO]: [WorldGuard] (OneBlock) Lava fire is PERMITTED.
[15:32:45] [Server thread/INFO]: [WorldGuard] (OneBlock) Fire spread is UNRESTRICTED.
[15:32:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'OneBlock'
[15:32:45] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:45] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:32:45] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:45] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:45] [Server thread/INFO]: [Multiverse-Core] 18 - World(s) loaded.
[15:32:45] [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.
[15:32:45] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[15:32:45] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3572)
[15:32:45] [Server thread/INFO]: [Citizens] Loading external libraries
[15:32:46] [Server thread/WARN]: [Citizens] Loaded class net.kyori.adventure.text.Component from ArmorStandEditor v1.5.8 which is not a depend or softdepend of this plugin.
[15:32:46] [Server thread/WARN]: [Citizens] Loaded class org.geysermc.floodgate.api.InstanceHolder from floodgate v2.2.3-SNAPSHOT (b111-3db8e59) which is not a depend or softdepend of this plugin.
[15:32:46] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[15:32:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[15:32:46] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[15:32:46] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.0
[15:32:46] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[15:32:46] [Server thread/INFO]: [Shopkeepers] Loading the data of 24 shopkeepers ...
[15:32:46] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.28.0
[15:32:46] [Server thread/INFO]: [MobsToEggs] Enabling MobsToEggs v1.7.13
[15:32:46] [Server thread/INFO]: [MobsToEggs] Loading files for MobsToEggs...
[15:32:46] [Server thread/INFO]: [MobsToEggs] Loading language: zh-t
[15:32:46] [Server thread/INFO]: [MobsToEggs] Using Dependencies:
[15:32:46] [Server thread/INFO]: [MobsToEggs] ✔️ [Vault, WorldGuard, NBTAPI]
[15:32:46] [Server thread/INFO]: [MobsToEggs] ❌ [MythicMobs, StackMob, Towny]
[15:32:46] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[15:32:46] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: GobackWorld (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:32:46] [Server thread/WARN]: [Multiverse-Portals] Portal GobackWorld has an invalid LOCATION!
[15:32:46] [Server thread/WARN]: [Multiverse-Portals] Portal 'GobackWorld' not loaded due to invalid location!
[15:32:46] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Testin (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:32:46] [Server thread/WARN]: [Multiverse-Portals] Portal Testin has an invalid LOCATION!
[15:32:46] [Server thread/WARN]: [Multiverse-Portals] Portal 'Testin' not loaded due to invalid location!
[15:32:46] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Testout (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:32:46] [Server thread/WARN]: [Multiverse-Portals] Portal Testout has an invalid LOCATION!
[15:32:46] [Server thread/WARN]: [Multiverse-Portals] Portal 'Testout' not loaded due to invalid location!
[15:32:47] [Server thread/INFO]: [Multiverse-Portals] 25 - Portals(s) loaded
[15:32:47] [Server thread/WARN]: [Multiverse-Portals] Portal GoCreative has an invalid DESTINATION!
[15:32:47] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[15:32:47] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[15:32:47] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
[15:32:47] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:179) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:178) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:198) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:196) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:158) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:189) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:174) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:197) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:190) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:199) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:159) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:181) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:32:47] [Server thread/INFO]: [GriefPrevention] 73 total claims loaded.
[15:32:47] [pool-155-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (42aad8401b73c52bb4edd11d9a73aa8a6e1619c1)
[15:32:47] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[15:32:47] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[15:32:47] [Server thread/INFO]: [GriefPrevention] Boot finished.
[15:32:47] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.3
[15:32:48] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[15:32:48] [Server thread/WARN]: [AuraSkills] Loaded class net.kyori.adventure.text.Component from ArmorStandEditor v1.5.8 which is not a depend or softdepend of this plugin.
[15:32:48] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[15:32:48] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[15:32:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.3]
[15:32:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.3]
[15:32:48] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[15:32:48] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[15:32:48] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[15:32:48] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[15:32:48] [Server thread/INFO]: [AuraSkills] Loaded 150 config options in 70 ms
[15:32:48] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[15:32:48] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[15:32:49] [Server thread/INFO]: [MiniaturePets] Enabling MiniaturePets v3.0.5
[15:32:49] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[15:32:49] [Server thread/WARN]: You are using invalid version of Minecraft [v1_21_R1]! Disabling...
[15:32:50] [Server thread/INFO]: [MiniaturePets] Loading reflections.
[15:32:50] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[15:32:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:💻console(1271690124253593624)
[15:32:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: miniaturepets [3.0.5]
[15:32:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[15:32:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[15:32:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[15:32:51] [Server thread/INFO]: [MiniaturePets] Loaded 36,570 custom heads
[15:32:51] [Server thread/INFO]: [MiniaturePets] Loaded 10 mob configurations.
[15:32:51] [Server thread/INFO]: [dtlTradersPlus] Enabling dtlTradersPlus v6.4.29
[15:32:52] [Server thread/INFO]: dtlTradersPlus> Welcome to dtlTradersPlus v6.4.29!
[15:32:52] [Server thread/INFO]: dtlTradersPlus> Trying to hook into any Vault supported plugin...
[15:32:52] [Server thread/INFO]: dtlTradersPlus> Vault found! Trying to hook...
[15:32:52] [Server thread/INFO]: dtlTradersPlus> Found economy plugin: EssentialsX Economy
[15:32:52] [Server thread/INFO]: dtlTradersPlus> An error occurred while copying a config file...
[15:32:52] [Server thread/WARN]: java.io.FileNotFoundException: plugins/dtlTradersPlus/shops/.yml/.yml.yml (Not a directory)
[15:32:52] [Server thread/WARN]:     at java.base/java.io.FileOutputStream.open0(Native Method)
[15:32:52] [Server thread/WARN]:     at java.base/java.io.FileOutputStream.open(FileOutputStream.java:289)
[15:32:52] [Server thread/WARN]:     at java.base/java.io.FileOutputStream.<init>(FileOutputStream.java:230)
[15:32:52] [Server thread/WARN]:     at java.base/java.io.FileOutputStream.<init>(FileOutputStream.java:179)
[15:32:52] [Server thread/WARN]:     at com.degitise.minevid.dtlTraders.data.configs.Config.copy(Config.java:157)
[15:32:52] [Server thread/WARN]:     at com.degitise.minevid.dtlTraders.data.configs.Config.saveDefault(Config.java:150)
[15:32:52] [Server thread/WARN]:     at com.degitise.minevid.dtlTraders.data.configs.Config.<init>(Config.java:28)
[15:32:52] [Server thread/WARN]:     at com.degitise.minevid.dtlTraders.guis.guiservices.GuiListService.reloadGUIs(GuiListService.java:71)
[15:32:52] [Server thread/WARN]:     at com.degitise.minevid.dtlTraders.guis.guiservices.GuiListService.<init>(GuiListService.java:53)
[15:32:52] [Server thread/WARN]:     at com.degitise.minevid.dtlTraders.Main.onEnable(Main.java:200)
[15:32:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:267)
[15:32:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[15:32:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:492)
[15:32:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:575)
[15:32:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:489)
[15:32:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:641)
[15:32:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:426)
[15:32:52] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:269)
[15:32:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1017)
[15:32:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[15:32:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[15:32:52] [Server thread/INFO]: dtlTradersPlus> Loaded 28 guis from the guis config!
[15:32:52] [Server thread/INFO]: dtlTradersPlus> Hooking into Citizens!
[15:32:52] [Server thread/INFO]: dtlTradersPlus> Hooking into PlaceholderAPI
[15:32:52] [Server thread/INFO]: dtlTradersPlus> dtlTraders is managed by Degitise. www.degitise.com
[15:32:52] [Server thread/INFO]: [SCore] Enabling SCore v5.24.9.21
[15:32:52] [Server thread/INFO]: ================ SCore ================
[15:32:52] [Server thread/INFO]: SCore Version of the server 4290-Spigot-5a6439b-b95736b (MC: 1.21.1) !
[15:32:52] [Server thread/INFO]: SCore ExecutableItems hooked !  (7.24.9.21) Load After
[15:32:52] [Server thread/INFO]: SCore ExecutableEvents hooked !  (3.24.9.21) Load After
[15:32:52] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[15:32:52] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.11+068ad68)  Load Before
[15:32:52] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[15:32:52] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.12)  Load Before
[15:32:52] [Server thread/INFO]: SCore GriefPrevention hooked !  (16.18.4)  Load Before
[15:32:52] [Server thread/INFO]: SCore ProtocolLib hooked !
[15:32:52] [Server thread/INFO]: SCore Locale setup: EN
[15:32:52] [Server thread/INFO]: SCore NBTAPI hooked !  (2.13.2)  Load Before
[15:32:52] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.11)  Load Before
[15:32:52] [Server thread/INFO]: SCore TAB hooked !  (4.1.8)  Load Before
[15:32:52] [Server thread/INFO]: SCore WorldEdit hooked !  (7.3.6+6892-3d660b8)  Load Before
[15:32:52] [Server thread/INFO]: SCore Language of the editor setup on EN
[15:32:52] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[15:32:52] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[15:32:52] [Server thread/INFO]: SCore Connection to the db...
[15:32:52] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[15:32:52] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[15:32:52] [Server thread/INFO]: SCore Creating table Commands if not exists...
[15:32:52] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[15:32:52] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[15:32:52] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[15:32:52] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[15:32:52] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[15:32:52] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[15:32:52] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[15:32:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[15:32:52] [Server thread/INFO]: ================ SCore ================
[15:32:52] [Server thread/INFO]: [IP] Enabling IP v5.3.0
[15:32:52] [Server thread/INFO]: [IP] Registered PlaceholderAPI hook
[15:32:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: witp [5.3.0]
[15:32:53] [Server thread/INFO]: -------- World Settings For [witp] --------
[15:32:53] [Server thread/INFO]: Mob Spawn Range: 6
[15:32:53] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:32:53] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:32:53] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:32:53] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:32:53] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:32:53] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:32:53] [Server thread/INFO]: Max TNT Explosions: 100
[15:32:53] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:32:53] [Server thread/INFO]: View Distance: 7
[15:32:53] [Server thread/INFO]: Simulation Distance: 10
[15:32:53] [Server thread/INFO]: Item Despawn Rate: 6000
[15:32:53] [Server thread/INFO]: Item Merge Radius: 2.5
[15:32:53] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:32:53] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:32:53] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:32:53] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:32:55] [Server thread/INFO]: Preparing start region for dimension minecraft:witp
[15:32:55] [Server thread/INFO]: Time elapsed: 3 ms
[15:32:55] [Server thread/INFO]: [WorldGuard] (witp) TNT ignition is PERMITTED.
[15:32:55] [Server thread/INFO]: [WorldGuard] (witp) Lighters are PERMITTED.
[15:32:55] [Server thread/INFO]: [WorldGuard] (witp) Lava fire is PERMITTED.
[15:32:55] [Server thread/INFO]: [WorldGuard] (witp) Fire spread is UNRESTRICTED.
[15:32:55] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'witp'
[15:32:55] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:32:55] [Server thread/INFO]: [QuickShop-Hikari] Used 1ms to fetch 0 shops from database.
[15:32:55] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:32:55] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:32:56] [Server thread/INFO]: [Roulette] Enabling Roulette v3.0.1
[15:32:56] [Server thread/INFO]: [Roulette] Using Essentials v2.21.0-dev+115-6157668 as the economy provider.
[15:32:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: roulette [3.0.1]
[15:32:56] [Server thread/INFO]: [Roulette] All chips have been loaded from chips.yml!
[15:32:56] [Server thread/INFO]: [Roulette] No games have been loaded from games.yml, why don't you create one?
[15:32:56] [Server thread/INFO]: [GlowingEntities] Found server version 1.21.1
[15:32:56] [Server thread/INFO]: [GlowingEntities] Loaded mappings V1_21
[15:32:56] [Server thread/INFO]: [Quests] Enabling Quests v5.1.3-b503
[15:32:56] [Server thread/INFO]: [Quests] Loaded language zh-TW. Translations via Crowdin
[15:32:56] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.35-SNAPSHOT (build 3572)
[15:32:56] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[15:32:56] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.6
[15:32:56] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'default' are not loaded: w2, d1
[15:32:56] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'Test' are not loaded: boss
[15:32:56] [Server thread/INFO]: [Multiverse-Inventories 4.2.6] enabled.
[15:32:56] [Server thread/INFO]: [vzBackpack] Enabling vzBackpack v0.3.2-alpha
[15:32:56] [Server thread/INFO]: 

                                                                                      
                      _____                 _                           _             
               _____ (_____)               (_) _                       (_) _          
         _   _(_____)(_)__(_)  ____    ___ (_)(_)  ____    ____    ___ (_)(_)         
        (_) (_) _(_) (_____)  (____) _(___)(___)  (____)  (____) _(___)(___)          
        (_)_(_)(_)__ (_)__(_)( )_( )(_)___ (_)(_) (_)_(_)( )_( )(_)___ (_)(_)         
          (_) (_____)(_____)  (__)_) (____)(_) (_)(____)  (__)_) (____)(_) (_)        
                                                  (_)                                 
                                                  (_)                                 
                                                                                      
                                 by Virus5947 & Xames                                 
                                                                                      
 
[15:32:57] [Server thread/INFO]: [vzBackpack] Spigot 1.21.1 與 vzBackpack v0.3.2-alpha ✓ 相容
[15:32:57] [Server thread/INFO]: [vzBackpack] 正在註冊食譜..
[15:32:57] [Server thread/INFO]: [vzBackpack] 食譜註冊成功! ✓
[15:32:57] [Server thread/INFO]: [vzBackpack] 註冊命令..
[15:32:57] [Server thread/INFO]: [vzBackpack] 命令註冊成功! ✓
[15:32:57] [Server thread/INFO]: [vzBackpack] 插件現已啟用。 ✓ [693ms]
[15:32:57] [Server thread/INFO]: [QuestsGUI] Enabling QuestsGUI v2.0.0-beta
[15:32:58] [Server thread/INFO]: [QuestsGUI] Initializing QuestsGUI separated YAML storage...
[15:32:58] [Server thread/INFO]: [GSit] Enabling GSit v1.10.0
[15:32:58] [Server thread/INFO]: [GSit] 插件已成功啟用。
[15:32:58] [Server thread/INFO]: [GSit] 成功連結到 GriefPrevention!
[15:32:58] [Server thread/INFO]: [GSit] 成功連結到 PlaceholderAPI!
[15:32:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.10.0]
[15:32:58] [Server thread/INFO]: [GSit] 成功連結到 WorldGuard!
[15:32:58] [Server thread/INFO]: [AdvancedJobs] Enabling AdvancedJobs v1.4.8
[15:32:58] [Server thread/WARN]: [AdvancedJobs] Loaded class dev.aurelium.auraskills.api.event.loot.LootDropEvent from AuraSkills v2.2.3 which is not a depend or softdepend of this plugin.
[15:32:59] [Server thread/INFO]: [Citizens] Hooked into Citizens
[15:32:59] [Server thread/INFO]: [Shopkeepers] Hooked into Shopkeepers
[15:32:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedjobs [1.0.0]
[15:32:59] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[15:32:59] [Server thread/INFO]: [BetterRTP] Cooldown = 300
[15:32:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[15:32:59] [Server thread/INFO]: [Bank] Enabling Bank v4.8.1-RELEASE
[15:33:00] [Server thread/INFO]: [Bank] Bank Enabled
[15:33:00] [Server thread/WARN]: [Core] Loaded class me.dablakbandit.bank.inventory.admin.BankAdminInventories from Bank v4.8.1-RELEASE which is not a depend or softdepend of this plugin.
[15:33:00] [Server thread/INFO]: [UltimateAirdrops] Enabling UltimateAirdrops v0.4.9-BETA
[15:33:00] [Server thread/INFO]: [UltimateAirdrops]<-------------------------------------------------------------->
[15:33:00] [Server thread/INFO]: [UltimateAirdrops] Has been successfully enabled (version: 0.4.9-BETA)
[15:33:00] [Server thread/INFO]: [UltimateAirdrops] Thanks for using UltimateAirdrops by KeySet Studios :)
[15:33:00] [Server thread/INFO]: [UltimateAirdrops]<-------------------------------------------------------------->
[15:33:00] [Server thread/INFO]: [UltimateAirdrops] NOTE: This plugin will change its name to "ksAirdrops" in upcoming versions
[15:33:00] [Server thread/INFO]: [ExecutableEvents] Enabling ExecutableEvents v3.24.9.21
[15:33:00] [Server thread/INFO]: ================ ExecutableEvents ================
[15:33:01] [Server thread/INFO]: ExecutableEvents Amount of Executable Events configurations loaded: 1
[15:33:01] [Server thread/INFO]: ================ ExecutableEvents ================
[15:33:01] [Server thread/INFO]: [LotterySix] Enabling LotterySix v1.10.17.0
[15:33:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lotterysix [1.10.17.0]
[15:33:02] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.lotterysix.discordsrv.DiscordSRVHook subscribed (1 methods)
[15:33:02] [Server thread/INFO]: [LotterySix] LotterySix has hooked into DiscordSRV!
[15:33:02] [Server thread/INFO]: [LotterySix] LotterySix has hooked into Floodgate!
[15:33:02] [Server thread/INFO]: [LotterySix] LotterySix has been Enabled!
[15:33:02] [Server thread/INFO]: [Econoblocks] Enabling Econoblocks v2.1.0
[15:33:02] [Server thread/INFO]: [Econoblocks] --------------
[15:33:02] [Server thread/INFO]: [Econoblocks] Econoblocks by flrp (v2.1.0)
[15:33:02] [Server thread/INFO]: [Econoblocks] Consider Ko-fi to support me for keeping these plugins free.
[15:33:02] [Server thread/INFO]: [Econoblocks] --------------
[15:33:02] [Server thread/INFO]: [Econoblocks] Starting...
[15:33:02] [Server thread/INFO]: [Econoblocks] Loaded 3 loot tables.
[15:33:02] [Server thread/INFO]: [Econoblocks] Loaded 19 loot containers for blocks.
[15:33:02] [Server thread/INFO]: [Econoblocks] Loaded 0 modified loot tables.
[15:33:02] [Server thread/INFO]: [Econoblocks] World cannot be found (real_world 1.1), skipping.
[15:33:02] [Server thread/INFO]: [Econoblocks] Loaded 1 multiplier groups.
[15:33:02] [Server thread/INFO]: [Econoblocks] Hooking into Vault.
[15:33:02] [Server thread/INFO]: [Econoblocks] No hologram plugin found.
[15:33:02] [Server thread/INFO]: [Econoblocks] SQLite found. Unlocking database usage.
[15:33:02] [Server thread/INFO]: [Econoblocks] Loaded 0 multiplier profiles from the database.
[15:33:02] [Server thread/INFO]: [Econoblocks] Loaded 4 stored blocks from the database.
[15:33:02] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 1 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[15:33:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: econoblocks [2.1.0]
[15:33:02] [Server thread/INFO]: [Econoblocks] Done!
[15:33:02] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.24.9.21
[15:33:02] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[15:33:02] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[15:33:02] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[15:33:03] [Server thread/ERROR]: [ExecutableItems] Plugin ExecutableItems v7.24.9.21 has failed to register events for class com.ssomar.executableitems.listeners.item.ItemLeaveInventoryListener1v12Plus because io/papermc/paper/event/player/PlayerFlowerPotManipulateEvent does not exist.
[15:33:04] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 174
[15:33:04] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[15:33:04] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[15:33:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[15:33:04] [Server thread/INFO]: [SupremeBosses] Enabling SupremeBosses v4.7
[15:33:04] [Server thread/INFO]: Server Version not compatible or not found. If you are running a version bellow 1.13 the plugin doesn't work. Otherwise contact support via e-mail or discord. Link in spigot
[15:33:04] [Server thread/INFO]: [LiteDungeon] Enabling LiteDungeon v2.9.3
[15:33:05] [Server thread/WARN]: [LiteDungeon] Loaded class dev.aurelium.auraskills.api.skill.Skill from AuraSkills v2.2.3 which is not a depend or softdepend of this plugin.
[15:33:05] [Server thread/INFO]: -------- World Settings For [LiteDungeon_Default] --------
[15:33:05] [Server thread/INFO]: Mob Spawn Range: 6
[15:33:05] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 64 / Ra 48 / Mi 8 / Tiv true / Isa false
[15:33:05] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[15:33:05] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:33:05] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:33:05] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:33:05] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:33:05] [Server thread/INFO]: Max TNT Explosions: 100
[15:33:05] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:33:05] [Server thread/INFO]: View Distance: 7
[15:33:05] [Server thread/INFO]: Simulation Distance: 10
[15:33:05] [Server thread/INFO]: Item Despawn Rate: 6000
[15:33:05] [Server thread/INFO]: Item Merge Radius: 2.5
[15:33:05] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:33:05] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:33:05] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:33:05] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:33:05] [Server thread/INFO]: Preparing start region for dimension minecraft:litedungeon_default
[15:33:05] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[15:33:05] [Server thread/INFO]: Time elapsed: 28 ms
[15:33:05] [Server thread/INFO]: [WorldGuard] (LiteDungeon_Default) TNT ignition is PERMITTED.
[15:33:05] [Server thread/INFO]: [WorldGuard] (LiteDungeon_Default) Lighters are PERMITTED.
[15:33:05] [Server thread/INFO]: [WorldGuard] (LiteDungeon_Default) Lava fire is PERMITTED.
[15:33:05] [Server thread/INFO]: [WorldGuard] (LiteDungeon_Default) Fire spread is UNRESTRICTED.
[15:33:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'LiteDungeon_Default'
[15:33:05] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[15:33:05] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to fetch 0 shops from database.
[15:33:05] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[15:33:05] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[15:33:05] [Server thread/WARN]: [Multiverse-Core] Hmm Multiverse does not know about this world but it's loaded in memory.
[15:33:05] [Server thread/WARN]: [Multiverse-Core] To let Multiverse know about it, use:
[15:33:05] [Server thread/WARN]: [Multiverse-Core] /mv import LiteDungeon_Default NORMAL
[15:33:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ldungeon [1.0]
[15:33:05] [Server thread/INFO]: [PWarp] Enabling PWarp v3.0.6-SNAPSHOT
[15:33:05] [Server thread/INFO]: [PWarp] Successfully hooked into Vault!
[15:33:05] [Server thread/INFO]: [PWarp] Successfully hooked into GriefPrevention!
[15:33:05] [Server thread/INFO]: [PWarp] Successfully hooked into Essentials!
[15:33:05] [Server thread/INFO]: [PWarp] PWarp has been enabled!
[15:33:05] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.0
[15:33:06] [Server thread/INFO]: [Vulcan] Server Version: 1.21 detected!
[15:33:06] [Server thread/INFO]: [Vulcan] Floodgate 2.0 found. Enabling hook!
[15:33:06] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[15:33:07] [Server thread/INFO]: [Vulcan] BStats enabled!
[15:33:07] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[15:33:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.0]
[15:33:07] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[15:33:07] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[15:33:07] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:33:07] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:33:07] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[15:33:07] [Server thread/INFO]: [Geyser-Spigot] 
[15:33:07] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.4.3-b680 (git-master-84dac08)
[15:33:07] [Server thread/INFO]: [Geyser-Spigot] 
[15:33:07] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[15:33:07] [ForkJoinPool.commonPool-worker-6/WARN]: [PlaceholderAPI] Loaded class net.ess3.api.IEssentials from Essentials v2.21.0-dev+115-6157668 which is not a depend or softdepend of this plugin.
[15:33:12] [epollEventLoopGroup-4-1/INFO]: [Geyser-Spigot] Started Geyser on UDP port 2207
[15:33:12] [Server thread/INFO]: [Geyser-Spigot] Done (5.49s)! Run /geyser help for help!
[15:33:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateairdrops [0.4.9-BETA]
[15:33:12] [Server thread/INFO]: [UltimateAirdrops] Enabled Soft-Dependencies: DecentHolograms, GriefPrevention, PlaceHolderAPI, WorldGuard
[15:33:12] [Server thread/INFO]: [UltimateAirdrops] Missing Soft-Dependencies: HolographicDisplay, RedProtect, Dynmap
[15:33:12] [Server thread/INFO]: Done (58.643s)! For help, type "help"
[15:33:12] [Craft Scheduler Thread - 0/INFO]: [ItemJoin] Hooked into { Multiverse-Core, Multiverse-Inventories, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens, ChestSort, Vault }
[15:33:13] [Server thread/INFO]: [ItemJoin] 14/14 Custom item(s) loaded!
[15:33:13] [Craft Scheduler Thread - 3/INFO]: [DecentHolograms] Loading holograms... 
[15:33:13] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[15:33:13] [Craft Scheduler Thread - 4/INFO]: Fetching version information...
[15:33:13] [Craft Scheduler Thread - 3/WARN]: [DecentHolograms] Cannot retrieve World from value WorldSpawn! It's neither a valid name nor UUID.
[15:33:13] [Craft Scheduler Thread - 3/WARN]: [DecentHolograms] Cannot retrieve World from value WorldSpawn! It's neither a valid name nor UUID.
[15:33:13] [Craft Scheduler Thread - 6/INFO]: [RealScoreboard] The plugin is updated to the latest version.
[15:33:13] [Craft Scheduler Thread - 3/WARN]: [DecentHolograms] Failed to load hologram from file 'TEST.yml'!
java.lang.NullPointerException: location is marked non-null but is null
    at eu.decentsoftware.holograms.api.holograms.objects.HologramObject.<init>(HologramObject.java:37) ~[?:?]
    at eu.decentsoftware.holograms.api.holograms.objects.UpdatingHologramObject.<init>(UpdatingHologramObject.java:26) ~[?:?]
    at eu.decentsoftware.holograms.api.holograms.Hologram.<init>(Hologram.java:292) ~[?:?]
    at eu.decentsoftware.holograms.api.holograms.Hologram.fromFile(Hologram.java:129) ~[?:?]
    at eu.decentsoftware.holograms.api.holograms.HologramManager.loadHolograms(HologramManager.java:193) ~[?:?]
    at eu.decentsoftware.holograms.api.holograms.HologramManager.reload(HologramManager.java:174) ~[?:?]
    at org.bukkit.craftbukkit.v1_21_R1.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.21.1-R0.1-SNAPSHOT.jar:4290-Spigot-5a6439b-b95736b]
    at org.bukkit.craftbukkit.v1_21_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54) ~[spigot-1.21.1-R0.1-SNAPSHOT.jar:4290-Spigot-5a6439b-b95736b]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
[15:33:13] [Craft Scheduler Thread - 3/WARN]: [DecentHolograms] Cannot retrieve World from value D1! It's neither a valid name nor UUID.
[15:33:13] [Craft Scheduler Thread - 3/INFO]: [DecentHolograms] Loaded 44 holograms!
[15:33:13] [Craft Scheduler Thread - 9/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[15:33:13] [Craft Scheduler Thread - 0/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[15:33:14] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[15:33:14] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[15:33:14] [Server thread/INFO]: [AuraSkills] Loaded 21 pattern rewards and 0 level rewards
[15:33:14] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[15:33:14] [Craft Scheduler Thread - 9/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[15:33:14] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[15:33:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.28.0]
[15:33:14] [Craft Scheduler Thread - 5/INFO]: [IP] Checking for updates
[15:33:14] [Craft Scheduler Thread - 17/INFO]: [IP] Loaded all schematics!
[15:33:14] [Server thread/INFO]: Loaded 1295 recipes
[15:33:14] [Craft Scheduler Thread - 5/INFO]: [IP] No new version found
[15:33:15] [Craft Scheduler Thread - 5/INFO]: [vzBackpack] 正在連接資料庫..
[15:33:15] [Craft Scheduler Thread - 5/INFO]: [vzBackpack] > 使用 SQLite
[15:33:15] [Craft Scheduler Thread - 5/INFO]: [vzBackpack] 成功連接資料庫! ✓
[15:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[15:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[15:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[15:33:15] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[15:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[15:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[15:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.7]
[15:33:15] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[15:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[15:33:15] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[15:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.5]
[15:33:15] [Server thread/INFO]: 8 placeholder hook(s) registered!
[15:33:15] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: EssentialsX Economy
[15:33:15] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[15:33:16] [Craft Scheduler Thread - 10/INFO]: [UltimateAirdrops] There is a new update available!
[15:33:16] [Craft Scheduler Thread - 10/INFO]: [UltimateAirdrops] You can download it at: https://bit.ly/UltimateAirdrops-Spigot
[15:33:16] [Server thread/INFO]: [Citizens] Loaded 93 NPCs.
[15:33:16] [Server thread/INFO]: [Multiverse-Inventories] First run!
[15:33:16] [Server thread/WARN]: [SupremeBosses] Task #1310 for SupremeBosses v4.7 generated an exception
java.lang.NullPointerException: Cannot invoke "String.contains(java.lang.CharSequence)" because the return value of "eu.decentsoftware.holograms.api.holograms.HologramLine.getText()" is null
    at com.realgotqkura.CBossesMain.main$2.run(main.java:170) ~[?:?]
    at org.bukkit.craftbukkit.v1_21_R1.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.21.1-R0.1-SNAPSHOT.jar:4290-Spigot-5a6439b-b95736b]
    at org.bukkit.craftbukkit.v1_21_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:415) ~[spigot-1.21.1-R0.1-SNAPSHOT.jar:4290-Spigot-5a6439b-b95736b]
    at net.minecraft.server.MinecraftServer.c(MinecraftServer.java:1425) ~[spigot-1.21.1-R0.1-SNAPSHOT.jar:4290-Spigot-5a6439b-b95736b]
    at net.minecraft.server.dedicated.DedicatedServer.c(DedicatedServer.java:406) ~[spigot-1.21.1-R0.1-SNAPSHOT.jar:4290-Spigot-5a6439b-b95736b]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1321) ~[spigot-1.21.1-R0.1-SNAPSHOT.jar:4290-Spigot-5a6439b-b95736b]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.21.1-R0.1-SNAPSHOT.jar:4290-Spigot-5a6439b-b95736b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[spigot-1.21.1-R0.1-SNAPSHOT.jar:4290-Spigot-5a6439b-b95736b]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
[15:33:16] [Craft Scheduler Thread - 10/INFO]: [Vault] Checking for Updates ... 
[15:33:16] [Craft Scheduler Thread - 14/INFO]: [ItemJoin] Checking for updates...
[15:33:16] [Craft Scheduler Thread - 10/INFO]: [Vault] No new version available
[15:33:16] [Server thread/INFO]: WWWade (/49.216.237.2:33795) lost connection: Disconnected
[15:33:16] [Craft Scheduler Thread - 14/INFO]: [ItemJoin] You are up to date!
[15:33:16] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3708ms or 74 ticks behind
[15:33:16] [Server thread/WARN]: [Shopkeepers] Shopkeeper 2: There is no Citizens NPC with unique id a5ef395e-6593-43ed-b957-0b579f95b4f4
[15:33:16] [Server thread/WARN]: [Shopkeepers] Shopkeeper 3: There is no Citizens NPC with unique id a6b32f18-0cc8-4d7a-9cba-7a22c0e23b3f
[15:33:16] [Server thread/WARN]: [Shopkeepers] Shopkeeper 4: There is no Citizens NPC with unique id 3ac830eb-7e69-4b7c-8fb5-caf10675bf3f
[15:33:16] [Server thread/WARN]: [Shopkeepers] Shopkeeper 5: There is no Citizens NPC with unique id 6997f674-02ad-4769-8e76-a5237ea8a246
[15:33:16] [Server thread/WARN]: [Shopkeepers] Shopkeeper 6: There is no Citizens NPC with unique id b5254df2-b259-45cd-9ed2-e06fceece622
[15:33:16] [Server thread/WARN]: [Shopkeepers] Shopkeeper 7: There is no Citizens NPC with unique id 91dfdb99-6a54-4a57-a153-3a88a2c3c3b6
[15:33:16] [Server thread/WARN]: [Shopkeepers] Shopkeeper 8: There is no Citizens NPC with unique id 78033e3e-73a0-4b44-a3a7-e8621acab9f4
[15:33:16] [Server thread/WARN]: [Shopkeepers] Shopkeeper 9: There is no Citizens NPC with unique id 8e986bad-87a6-4901-a0ff-70ed4fd1c928
[15:33:16] [Server thread/WARN]: [Shopkeepers] Found 8 invalid Citizen shopkeepers! Either enable the setting 'delete-invalid-citizen-shopkeepers' inside the config, or use the command '/shopkeepers cleanupCitizenShopkeepers' to automatically delete these shopkeepers and get rid of these warnings.
[15:33:16] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 1 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[15:33:17] [Server thread/WARN]: me.pikamug.quests.exceptions.StageFormatException: Stage cannot be empty, see quest 9 stage 1
[15:33:17] [Server thread/WARN]:     at me.pikamug.quests.storage.implementation.file.BukkitQuestYamlStorage.loadQuestStages(BukkitQuestYamlStorage.java:842)
[15:33:17] [Server thread/WARN]:     at me.pikamug.quests.storage.implementation.file.BukkitQuestYamlStorage.init(BukkitQuestYamlStorage.java:110)
[15:33:17] [Server thread/WARN]:     at me.pikamug.quests.BukkitQuestsPlugin.lambda$delayLoadQuestInfo$3(BukkitQuestsPlugin.java:661)
[15:33:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_21_R1.scheduler.CraftTask.run(CraftTask.java:82)
[15:33:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_21_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:415)
[15:33:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.c(MinecraftServer.java:1425)
[15:33:17] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.c(DedicatedServer.java:406)
[15:33:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1321)
[15:33:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071)
[15:33:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[15:33:17] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[15:33:17] [Server thread/ERROR]: [Quests] 000016 must have at least one stage!
[15:33:18] [Server thread/INFO]: [Quests] Loaded 106 Quest(s), 7 Action(s), 1 Condition(s) and 798 Phrase(s)
[15:33:18] [Server thread/WARN]: [Quests] Unable to consider custom objectives because quest for 000002 was null
[15:33:18] [Server thread/INFO]: pocket-world-cb8cb504-6bcb-46ad-ba89-b55a9e6a6899
[15:33:18] [User Authenticator #1/INFO]: UUID of player Hugo10098_ is cb8cb504-6bcb-46ad-ba89-b55a9e6a6899
[15:33:18] [Server thread/INFO]: [AdvancedSeasons] Successfully hooked into ProtocolLib, PlaceholderAPI, Geyser-Spigot, Essentials, Vault, LuckPerms.
[15:33:18] [Server thread/INFO]: [AdvancedPets] Successfully hooked into ProtocolLib, PlaceholderAPI, Geyser-Spigot, Essentials, Vault, LuckPerms.
[15:33:18] [Server thread/INFO]: [AdvancedJobs] Successfully hooked into ProtocolLib, AuraSkills, WorldGuard, GriefPrevention, PlaceholderAPI, Geyser-Spigot, Essentials, Vault, LuckPerms, DiscordSRV.
[15:33:20] [Craft Scheduler Thread - 5/INFO]: [Oneblock] Waiting for the initialization of the world
[15:33:20] [Craft Scheduler Thread - 5/INFO]: [Oneblock] Trying to initialize the world again...
[15:33:21] [Craft Scheduler Thread - 9/INFO]: [Oneblock] The initialization of the world was successful!
[15:33:21] [Server thread/INFO]: [UberEnchant] Found: 0 Registered UberEnchantments.
[15:33:21] [Server thread/INFO]: [UberEnchant] Loaded: 0 UberEnchantments.
[15:33:21] [Server thread/INFO]: [UberEnchant] Custom enchantment table mechanics are disabled!
[15:33:21] [Server thread/INFO]: [UberEnchant] Custom anvil mechanics are disabled!
[15:33:22] [Craft Scheduler Thread - 10/INFO]: [vzBackpack] 更新者:插件是最新的!
[15:33:22] [TAB Processing Thread/INFO]: [TAB] [WARN] Player Hugo10098_'s group (服主) is not in sorting list! Sorting list: owner,admin,mod,helper,builder,vip,default. Player will be sorted on the bottom.
[15:33:23] [Bank - Loader Thread/INFO]: [Bank] Loading cb8cb504-6bcb-46ad-ba89-b55a9e6a6899
[15:33:23] [Server thread/INFO]: [DiscordSRV] Player Hugo10098_ joined with silent joining permission, not sending a join message
[15:33:23] [Server thread/INFO]: Hugo10098_[/219.78.185.28:60696] logged in with entity id 1876 at ([WorldSpawn1]-94.24171431949031, 44.0, -217.79904989467212)
[15:33:23] [Craft Scheduler Thread - 17/INFO]: [RealScoreboard] Using 1.17+ ping method.
[15:33:23] [Server thread/INFO]: [地域服主]Hugo10098_進入了MADHOUSE[98]伺服器!
[15:33:27] [Server thread/INFO]: pocket-world-2ac68581-40f5-41c4-8ce3-719bc280423d
[15:33:27] [User Authenticator #2/INFO]: UUID of player Shandow__K is 2ac68581-40f5-41c4-8ce3-719bc280423d
[15:33:32] [Server thread/INFO]: pocket-world-919750a4-deab-4374-b21e-ea81b72ad287
[15:33:32] [User Authenticator #3/INFO]: UUID of player BoBoMyBABY is 919750a4-deab-4374-b21e-ea81b72ad287
[15:33:35] [Server thread/INFO]: BoBoMyBABY[/59.148.122.29:52334] logged in with entity id 2037 at ([world]145.30000001192093, 119.0, -18.37687850997298)
[15:33:35] [Bank - Loader Thread/INFO]: [Bank] Loading 919750a4-deab-4374-b21e-ea81b72ad287
[15:33:35] [Bank - Loader Thread/INFO]: [Bank] Loaded 919750a4-deab-4374-b21e-ea81b72ad287 after 34ms
[15:33:35] [Server thread/INFO]: [精神病患者]BoBoMyBABY進入了MADHOUSE[98]伺服器!
[15:33:41] [Server thread/INFO]: Shandow__K[/175.98.12.248:63589] logged in with entity id 2033 at ([world]4576.926637195292, 96.19366615334314, -1656.1093355421315)
[15:33:41] [Bank - Loader Thread/INFO]: [Bank] Loading 2ac68581-40f5-41c4-8ce3-719bc280423d
[15:33:41] [Bank - Loader Thread/INFO]: [Bank] Loaded 2ac68581-40f5-41c4-8ce3-719bc280423d after 3ms
[15:33:41] [Server thread/INFO]: [精神病患者]Shandow__K進入了MADHOUSE[98]伺服器!
[15:33:43] [Server thread/INFO]: Hugo10098_ issued server command: /citizens reload
[15:33:44] [Server thread/INFO]: Hugo10098_ issued server command: /citizens reload
[15:33:44] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[15:33:48] [Server thread/INFO]: Hugo10098_ issued server command: /gm 0
[15:33:50] [Server thread/INFO]: Hugo10098_ fell from a high place
[15:34:01] [Server thread/INFO]: pocket-world-56f18f6c-17b5-44ac-b012-cd9fcccfbf3c
[15:34:01] [User Authenticator #4/INFO]: UUID of player toast_152cm is 56f18f6c-17b5-44ac-b012-cd9fcccfbf3c
[15:34:11] [Server thread/INFO]: pocket-world-a239b909-2ecc-4f61-9ce9-b1860a0c2b62
[15:34:11] [User Authenticator #5/INFO]: UUID of player 0Veliona0 is a239b909-2ecc-4f61-9ce9-b1860a0c2b62
[15:34:15] [Server thread/INFO]: 0Veliona0[/36.227.49.132:58088] logged in with entity id 3408 at ([world_nether]1842.518145153795, 36.0, -132.23943281325208)
[15:34:15] [Server thread/INFO]: [精神病患者]0Veliona0進入了MADHOUSE[98]伺服器!
[15:34:15] [Bank - Loader Thread/INFO]: [Bank] Loading a239b909-2ecc-4f61-9ce9-b1860a0c2b62
[15:34:15] [Bank - Loader Thread/INFO]: [Bank] Loaded a239b909-2ecc-4f61-9ce9-b1860a0c2b62 after 3ms
[15:34:22] [Server thread/INFO]: pocket-world-deed2127-14d7-4624-b9bf-cb33f6029519
[15:34:22] [User Authenticator #6/INFO]: UUID of player REDTEA_0217 is deed2127-14d7-4624-b9bf-cb33f6029519
[15:34:23] [Bank - Loader Thread/INFO]: [Bank] Loading 56f18f6c-17b5-44ac-b012-cd9fcccfbf3c
[15:34:23] [Bank - Loader Thread/INFO]: [Bank] Loaded 56f18f6c-17b5-44ac-b012-cd9fcccfbf3c after 3ms
[15:34:23] [Server thread/INFO]: toast_152cm[/175.98.12.248:53822] logged in with entity id 3273 at ([world]4622.145391834198, 100.0, -1579.3153964662208)
[15:34:23] [Server thread/INFO]: [精神病患者]toast_152cm進入了MADHOUSE[98]伺服器!
[15:34:39] [Server thread/INFO]: REDTEA_0217[/175.98.12.248:63608] logged in with entity id 3558 at ([world]4502.300000011921, 63.875, -1571.4008952227555)
[15:34:39] [Bank - Loader Thread/INFO]: [Bank] Loading deed2127-14d7-4624-b9bf-cb33f6029519
[15:34:39] [Server thread/INFO]: [精神病患者]REDTEA_0217進入了MADHOUSE[98]伺服器!
[15:34:39] [Bank - Loader Thread/INFO]: [Bank] Loaded deed2127-14d7-4624-b9bf-cb33f6029519 after 3ms
[15:34:46] [Server thread/INFO]: Hugo10098_ issued server command: /tp BoBoMyBABY
[15:35:32] [Server thread/INFO]: Hugo10098_ issued server command: /gm 1