Paste #74082: Untitled Paste

Date: 2020/08/08 21:30:42 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


[21:27:09] [Server thread/INFO]: Starting minecraft server version 1.15.2
[21:27:09] [Server thread/INFO]: Loading properties
[21:27:09] [Server thread/INFO]: This server is running Paper version git-Paper-384 (MC: 1.15.2) (Implementing API version 1.15.2-R0.1-SNAPSHOT)
[21:27:10] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:27:10] [Server thread/INFO]: Using 4 threads for Netty based IO
[21:27:10] [Server thread/INFO]: Debug logging is disabled
[21:27:10] [Server thread/INFO]: Default game type: SURVIVAL
[21:27:10] [Server thread/INFO]: Generating keypair
[21:27:11] [Server thread/INFO]: Starting Minecraft server on 72.46.128.246:25603
[21:27:11] [Server thread/INFO]: Using epoll channel type
[21:27:12] [Server thread/INFO]: [Oh The Dungeons You'll Go] MC Version: 1.15.x
[21:27:12] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[21:27:16] [Server thread/WARN]: Legacy plugin WooMinecraft v1.2.0-1.14.4 does not specify an api-version.
[21:27:16] [Server thread/WARN]: Legacy plugin PluginHiderPlus v5.2 does not specify an api-version.
[21:27:17] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.1.26
[21:27:17] [Server thread/INFO]: [MMOInventory] Loading MMOInventory v1.2
[21:27:17] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.1.6
[21:27:17] [Server thread/INFO]: [MMOLib] Loading MMOLib v1.2.6
[21:27:17] [Server thread/INFO]: [MMOLib] Detected Bukkit Version: v1_15_R1
[21:27:17] [Server thread/INFO]: [Oh_the_dungeons_youll_go] Loading Oh_the_dungeons_youll_go v5.3
[21:27:17] [Server thread/INFO]: [Core] Loading Core v0.2.5
[21:27:17] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.5.1
[21:27:17] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.15.2) has not yet been tested! Proceed with caution.
[21:27:18] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.15
[21:27:18] [Server thread/INFO]: [AutomaticInventory] Loading AutomaticInventory v2.10.1-a8f1fec
[21:27:18] [Server thread/INFO]: [WooMinecraft] Loading WooMinecraft v1.2.0-1.14.4
[21:27:18] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[21:27:18] [Server thread/INFO]: [PluginHiderPlus] Loading PluginHiderPlus v5.2
[21:27:18] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.0-beta-01+0eb9ac7
[21:27:18] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@50854c23]
[21:27:18] [Server thread/INFO]: [DynamicShop] Loading DynamicShop v2.11.8
[21:27:18] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v5.13.0-Premium
[21:27:18] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.3;5407315
[21:27:18] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.27-SNAPSHOT (build 2060)
[21:27:18] [Server thread/INFO]: [BentoBox] Loading BentoBox v1.13.1
[21:27:18] [Server thread/INFO]: [CraftBook] Loading CraftBook v3.10.2;21180b0
[21:27:18] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v2.18.2
[21:27:18] [Server thread/INFO]: [Bank] Loading Bank v4.1.4-BETA
[21:27:18] [Server thread/INFO]: [Bank] Saving upgrade.yml
[21:27:18] [Server thread/INFO]: [Bank] Saving upgrade.yml
[21:27:18] [Server thread/INFO]: [Bank] --=---=--=---=--=---=--=---=--
[21:27:18] [Server thread/INFO]: [Bank]  Bank plugin needs an upgrade
[21:27:18] [Server thread/INFO]: [Bank]  Please edit the upgrade.yml
[21:27:18] [Server thread/INFO]: [Bank] --=---=--=---=--=---=--=---=--
[21:27:28] [Server thread/INFO]: [Bank] Bank Loaded
[21:27:28] [Server thread/INFO]: [Denizen] Loading Denizen v1.1.5-SNAPSHOT (build 1713-REL)
[21:27:28] [Server thread/INFO]: [WorldEditSUI] Loading WorldEditSUI v1.7.1
[21:27:28] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.1.0-b775
[21:27:28] [Server thread/INFO]: [ExtraHardMode] Loading ExtraHardMode v3.14.0-e490375
[21:27:28] [Server thread/INFO]: [Multiverse-Inventories] Loading Multiverse-Inventories v3.0.0-b459
[21:27:28] [Server thread/INFO]: [Multiverse-Portals] Loading Multiverse-Portals v4.1.0-b805
[21:27:28] [Server thread/INFO]: [ChatControl] Loading ChatControl v8.6.6
[21:27:28] [Server thread/INFO]: [MobArena] Loading MobArena v0.104.2
[21:27:28] [Server thread/INFO]: [BattleArena] Loading BattleArena v3.9.16.4
[21:27:28] [Server thread/INFO]: [MBedwars] Loading MBedwars v4.0.18.2
[21:27:28] [Server thread/INFO]: [DeadChest] Loading DeadChest v4.0.0
[21:27:28] [Server thread/INFO]: [CMI] Loading CMI v8.7.5.1
[21:27:28] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v4.10.0-SNAPSHOT-3347
[21:27:28] [Server thread/INFO]: [MMOCore] Loading MMOCore v1.4.2-SNAPSHOT
[21:27:28] [Server thread/INFO]: [Multiverse-NetherPortals] Loading Multiverse-NetherPortals v4.1.0-b763
[21:27:28] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.1.3
[21:27:28] [Server thread/INFO]: [Lands] Loading Lands v4.8.5
[21:27:28] [Server thread/INFO]: [MMOItems] Loading MMOItems v5.5.4
[21:27:28] [Server thread/INFO]: [MMOItems] Hooked onto WorldGuard
[21:27:29] [Server thread/INFO]: [OTD_MythicTweak] Loading OTD_MythicTweak v4.0
[21:27:29] [Server thread/INFO]: [MythicArtifacts] Loading MythicArtifacts v0.1.30-SNAPSHOT
[21:27:29] [Server thread/INFO]: [MMOItemsPerWorldDrops] Loading MMOItemsPerWorldDrops v1.2
[21:27:29] [Server thread/INFO]: [MyPet] Loading MyPet v3.1
[21:27:29] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Error-Reporter ENABLED
[21:27:29] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:27:29] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.1.26
[21:27:29] [Server thread/INFO]:         __    
[21:27:29] [Server thread/INFO]:   |    |__)   LuckPerms v5.1.26
[21:27:29] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[21:27:29] [Server thread/INFO]: 
[21:27:29] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:27:29] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[21:27:29] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:27:29] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:27:30] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 585ms)
[21:27:30] [Server thread/INFO]: [Oh_the_dungeons_youll_go] Enabling Oh_the_dungeons_youll_go v5.3
[21:27:30] [Server thread/INFO]: configdir is plugins/Oh_the_dungeons_youll_go/forge_sandbox/doomlike
[21:27:30] [Server thread/INFO]: themesdir is plugins/Oh_the_dungeons_youll_go/forge_sandbox/doomlike/themes
[21:27:30] [Server thread/INFO]: [Core] Checking update for Core v0.2.5[Core] Checking update for Bank v4.1.4-BETA[Core] Unable to check update for Bank v4.1.4-BETA[Core] Attempting to load default ItemUtils[Core] Loaded default, enjoy :)[OTD] Installing files plugins/Oh_the_dungeons_youll_go/forge_sandbox/doomlike/chests.cfg
[21:27:30] [Server thread/INFO]: Loading chest loot file (chests.cfg)
[21:27:30] [Server thread/INFO]: Found 1 special chest configs.
[21:27:30] [Server thread/INFO]: Loading chest loot file (oceanic_chests.cfg)
[21:27:30] [Server thread/INFO]: Found 12 themes.
[21:27:30] [Server thread/INFO]: [Oh The Dungeons You'll Go] Update checking...
[21:27:30] [Server thread/INFO]: [Core] Enabling Core v0.2.5
[21:27:30] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.5.1
[21:27:30] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[21:27:30] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[21:27:30] [Server thread/WARN]: [Vault] Loaded class com.Zrips.CMI.Modules.Economy.Economy from CMI v8.7.5.1 which is not a depend, softdepend or loadbefore of this plugin.
[21:27:30] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[21:27:30] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[21:27:30] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[21:27:30] [Server thread/WARN]: [LuckPerms] Loaded class net.milkbowl.vault.permission.Permission from Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER} which is not a depend, softdepend or loadbefore of this plugin.
[21:27:30] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[21:27:30] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.0-beta-01+0eb9ac7
[21:27:30] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[21:27:30] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_15_R2 as the Bukkit adapter
[21:27:31] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v5.13.0-Premium
[21:27:31] [Server thread/INFO]: Version is PlotSquared-5.13.0-Premium
[21:27:31] [Server thread/INFO]: [P2] PlotSquared hooked into WorldEdit.
[21:27:31] [Server thread/INFO]: PlotSquared scripting engine started
[21:27:31] [Server thread/INFO]: [P2] PlotSquared is now enabled
[21:27:31] [Server thread/INFO]: [P2] PlotSquared version licensed to Spigot user 888480
[21:27:31] [Server thread/INFO]: [P2] https://www.spigotmc.org/resources/77506
[21:27:31] [Server thread/INFO]: [P2] Download ID: -1333718668
[21:27:31] [Server thread/INFO]: [P2] Thanks for supporting us :)
[21:27:31] [Server thread/INFO]: [P2] (UUID) Using LuckPerms as a complementary UUID service
[21:27:31] [Server thread/INFO]: [P2] (UUID) Using Paper as a complementary UUID service
[21:27:31] [Server thread/INFO]: [P2] (UUID) 4 UUIDs will be cached.
[21:27:32] [Server thread/INFO]: [P2] Using platform world manager: bukkit-multiverse
[21:27:32] [Server thread/INFO]: [BentoBox] Enabling BentoBox v1.13.1
[21:27:32] [Server thread/INFO]: [BentoBox] Loading Settings from config.yml...
[21:27:32] [Server thread/INFO]: [BentoBox] Hooking with Vault...
[21:27:32] [Server thread/INFO]: [BentoBox] Loading addons...
[21:27:33] [Server thread/INFO]: [BentoBox] Loaded 10 addons.
[21:27:33] [Server thread/INFO]: Preparing level "world"
[21:27:33] [Server thread/INFO]: Reloading ResourceManager: Default, bukkit
[21:27:33] [Server thread/INFO]: Loaded 6 recipes
[21:27:34] [Server thread/INFO]: -------- World Settings For [world] --------
[21:27:34] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:34] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:34] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:34] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:34] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27:34] [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
[21:27:34] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:34] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:34] [Server thread/INFO]: View Distance: 8
[21:27:34] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:34] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:34] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:34] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:34] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:34] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:34] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:27:34] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: world
[21:27:34] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[21:27:34] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:34] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:34] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:34] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:34] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27:34] [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
[21:27:34] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:34] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:34] [Server thread/INFO]: View Distance: 8
[21:27:34] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:34] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:34] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:34] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:34] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:34] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:34] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: world_nether
[21:27:34] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[21:27:34] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:34] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:34] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:34] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:34] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:34] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27:34] [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
[21:27:34] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:34] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:34] [Server thread/INFO]: View Distance: 8
[21:27:34] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:34] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:34] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:34] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:34] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:34] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:34] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: world_the_end
[21:27:34] [Server thread/INFO]: Preparing start region for dimension 'world'/minecraft:overworld
[21:27:35] [Server thread/INFO]: Loaded 0 spawn chunks for world world
[21:27:35] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:35] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:35] [Server thread/INFO]: Time elapsed: 850 ms
[21:27:35] [Server thread/INFO]: Preparing start region for dimension 'world_nether'/minecraft:the_nether
[21:27:35] [Server thread/INFO]: Loaded 0 spawn chunks for world world_nether
[21:27:35] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:36] [Server-Worker-3/INFO]: Preparing spawn area: 39%
[21:27:36] [Server thread/INFO]: Time elapsed: 598 ms
[21:27:36] [Server thread/INFO]: Preparing start region for dimension 'world_the_end'/minecraft:the_end
[21:27:36] [Server thread/INFO]: Loaded 0 spawn chunks for world world_the_end
[21:27:36] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:36] [Server thread/INFO]: Time elapsed: 220 ms
[21:27:36] [Server thread/INFO]: [MMOInventory] Enabling MMOInventory v1.2
[21:27:36] [Server thread/INFO]: [MMOInventory] Detected Bukkit Version: v1_15_R1
[21:27:36] [Server thread/INFO]: [MMOInventory] Successfully registered 14 inventory slots.
[21:27:36] [Server thread/WARN]: [MMOInventory] Loaded class net.Indyuce.mmoitems.comp.inventory.PlayerInventory from MMOItems v5.5.4 which is not a depend, softdepend or loadbefore of this plugin.
[21:27:36] [Server thread/INFO]: [MMOInventory] Hooked onto MMOItems
[21:27:36] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.1.6
[21:27:36] [Server thread/INFO]: [ClearLag] Loading modules...
[21:27:36] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[21:27:36] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[21:27:36] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[21:27:36] [Server thread/INFO]: [MMOLib] Enabling MMOLib v1.2.6
[21:27:36] [Thread-18/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.15]...
[21:27:36] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.15
[21:27:36] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_15_R1
[21:27:36] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #666
[21:27:36] [Server thread/INFO]: [LibsDisguises] Build Date: 08/07/2020 06:11
[21:27:36] [Server thread/INFO]: [LibsDisguises] Registered to: 888480 (36)
[21:27:36] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[21:27:37] [Thread-18/INFO]: [ClearLag] No updates found!
[21:27:37] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[21:27:37] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise VoidCreature
[21:27:37] [Server thread/INFO]: [LibsDisguises] Loaded 2 custom disguises
[21:27:37] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[21:27:37] [Server thread/INFO]: [LibsDisguises] The author sees Metrics disabled, the author is sad
[21:27:37] [Server thread/INFO]: [AutomaticInventory] Enabling AutomaticInventory v2.10.1-a8f1fec
[21:27:37] [Server thread/INFO]: [AutomaticInventory] AutomaticInventory enabled.
[21:27:37] [Server thread/INFO]: [WooMinecraft] Enabling WooMinecraft v1.2.0-1.14.4*
[21:27:37] [Server thread/INFO]: [WooMinecraft] Commands Initialized
[21:27:37] [Server thread/INFO]: [WooMinecraft] Donation system enabled!
[21:27:37] [Server thread/INFO]: [PluginHiderPlus] Enabling PluginHiderPlus v5.2*
[21:27:37] [Server thread/INFO]: [DynamicShop] Enabling DynamicShop v2.11.8
[21:27:37] [Server thread/INFO]: [DynamicShop] Vault Found
[21:27:37] [Server thread/INFO]: [DynamicShop] Jobs Reborn Not Found
[21:27:37] [Server thread/INFO]: [DynamicShop] Enabled! :)
[21:27:37] [Server thread/INFO]: -------------------------------------------------------
[21:27:37] [Server thread/INFO]: [DynamicShop] Plugin is up to date!
[21:27:37] [Server thread/INFO]: Please rate my plugin if you like it
[21:27:37] [Server thread/INFO]: https://spigotmc.org/resources/65603
[21:27:37] [Server thread/INFO]: -------------------------------------------------------
[21:27:37] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.3;5407315
[21:27:37] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[21:27:37] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[21:27:37] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[21:27:37] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[21:27:37] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:27:38] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.27-SNAPSHOT (build 2060)
[21:27:38] [Server thread/INFO]: [CraftBook] Enabling CraftBook v3.10.2;21180b0
[21:27:38] [Server thread/INFO]: [CraftBook] Loading persistent data from YAML!
[21:27:38] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v2.18.2
[21:27:38] [Server thread/INFO]: [CoreProtect] Invalid WorldEdit version found.
[21:27:38] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled!
[21:27:38] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[21:27:38] [Server thread/INFO]: --------------------
[21:27:38] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Check out CoreEdit!
[21:27:38] [Server thread/INFO]: [CoreProtect] Download: www.coreedit.net/download/
[21:27:38] [Server thread/INFO]: --------------------
[21:27:38] [Server thread/INFO]: [Bank] Enabling Bank v4.1.4-BETA
[21:27:38] [Server thread/INFO]: [Denizen] Enabling Denizen v1.1.5-SNAPSHOT (build 1713-REL)
[21:27:38] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[21:27:38] [Server thread/INFO]: +> [Denizen]  _/_ _  ._  _ _ 
[21:27:38] [Server thread/INFO]: +> [Denizen] (/(-/ )/ /_(-/ )  scriptable minecraft 
[21:27:38] [Server thread/INFO]: +> [Denizen]  
[21:27:38] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[21:27:38] [Server thread/INFO]: +> [Denizen] Chat with us at:  https://discord.gg/Q6pZGSR 
[21:27:38] [Server thread/INFO]: +> [Denizen] Or learn more at:  https://denizenscript.com 
[21:27:38] [Server thread/INFO]: +> [Denizen] version: 1.1.5-SNAPSHOT (build 1713-REL) 
[21:27:38] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[21:27:38] [Server thread/INFO]:  OKAY! Loaded core commands: [showfake, invisible, animate, ban, modifyblock, cast, midi, else, sidebar, explode, cooldown, 
                   weather, action, scoreboard, if, give, worldborder, chunkload, zap, lookclose, mount, execute, push, announce, waituntil, 
                   firework, stop, advancement, light, reset, hurt, ratelimit, nbt, wait, flag, log, despawn, webget, sleep, goto, attack, 
                   attach, event, stand, map, resume, break, strike, health, trigger, team, fly, itemcooldown, disengage, kick, gamerule, 
                   playsound, rename, chat, anchor, fish, leash, disguise, queue, rotate, sign, run, while, experience, playeffect, narrate, 
                   bossbar, vulnerable, pushable, create, trait, shoot, oxygen, yaml, group, statistic, fakeitem, pose, opentrades, blockcrack, 
                   schematic, look, pause, feed, take, toast, compass, adjust, animatechest, glow, drop, note, teleport, choose, inventory, 
                   actionbar, title, remove, sql, switch, head, foreach, random, reload, adjustblock, repeat, define, heal, copyblock, filecopy, 
                   sit, burn, debug, determine, assignment, permission, follow, displayitem, scribe, createworld, spawn, equip, money, fakespawn, 
                   engage, time, inject, mark, age, walk] 
[21:27:38] [Server thread/INFO]:  OKAY! Loaded core triggers: [CHAT, CLICK, PROXIMITY, DAMAGE] 
[21:27:39] [Server thread/INFO]:  OKAY! Loaded core object types: [BiomeTag as b, DurationTag as d, ChunkTag as ch, EntityTag as e, InventoryTag as in, 
                   CustomObjectTag as custom, ElementTag as el, ItemTag as i, ColorTag as co, LocationTag as l, MaterialTag as m, NPCTag as n, 
                   EllipsoidTag as ellipsoid, PlayerTag as p, QueueTag as q, CuboidTag as cu, ScriptTag as s, TradeTag as trade, WorldTag as w, 
                   TimeTag as time, PluginTag as pl, ListTag as li, MapTag as map] 
[21:27:39] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[21:27:39] [Server thread/INFO]: [WorldEditSUI] Enabling WorldEditSUI v1.7.1
[21:27:39] [Server thread/INFO]: [WorldEditSUI] Plugin by KennyTV
[21:27:39] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.1.0-b775
[21:27:39] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.1.0-b775" 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 [Rigby, fernferret, lithium3141, main--, dumptruckman].
[21:27: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. The performance impact is negligible.
[21:27:39] [Server thread/INFO]: -------- World Settings For [peaceful_world] --------
[21:27:39] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:39] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:39] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:39] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:39] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:39] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:39] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:39] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:39] [Server thread/INFO]: View Distance: 8
[21:27:39] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:39] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:39] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:39] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:39] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:39] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:39] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: peaceful_world
[21:27:39] [Server thread/INFO]: Preparing start region for dimension 'peaceful_world'/minecraft:overworld
[21:27:40] [Server thread/INFO]: Loaded 0 spawn chunks for world peaceful_world
[21:27:40] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:40] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:40] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:41] [Server thread/INFO]: Time elapsed: 1493 ms
[21:27:41] [Server thread/INFO]: [WorldGuard] (peaceful_world) Blacklist loaded with 1 entries.
[21:27:41] [Server thread/INFO]: [WorldGuard] (peaceful_world) TNT ignition is PERMITTED.
[21:27:41] [Server thread/INFO]: [WorldGuard] (peaceful_world) Lighters are PERMITTED.
[21:27:41] [Server thread/INFO]: [WorldGuard] (peaceful_world) Lava fire is PERMITTED.
[21:27:41] [Server thread/INFO]: [WorldGuard] (peaceful_world) Fire spread is UNRESTRICTED.
[21:27:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'peaceful_world'
[21:27:41] [Server thread/INFO]: -------- World Settings For [bskyblock_world_nether] --------
[21:27:41] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:41] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:41] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:41] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:41] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:41] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:41] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:41] [Server thread/INFO]: View Distance: 8
[21:27:41] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:41] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:41] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:41] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:41] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:41] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:41] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: bskyblock_world_nether
[21:27:41] [Server thread/INFO]: Preparing start region for dimension 'bskyblock_world_nether'/minecraft:the_nether
[21:27:41] [Server thread/INFO]: Loaded 0 spawn chunks for world bskyblock_world_nether
[21:27:41] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:41] [Server thread/INFO]: Time elapsed: 398 ms
[21:27:41] [Server thread/INFO]: [WorldGuard] (bskyblock_world_nether) TNT ignition is PERMITTED.
[21:27:41] [Server thread/INFO]: [WorldGuard] (bskyblock_world_nether) Lighters are PERMITTED.
[21:27:41] [Server thread/INFO]: [WorldGuard] (bskyblock_world_nether) Lava fire is PERMITTED.
[21:27:41] [Server thread/INFO]: [WorldGuard] (bskyblock_world_nether) Fire spread is UNRESTRICTED.
[21:27:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'bskyblock_world_nether'
[21:27:41] [Server thread/INFO]: -------- World Settings For [survival_hub] --------
[21:27:41] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:41] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:41] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:41] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:41] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:41] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:41] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:41] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:41] [Server thread/INFO]: View Distance: 8
[21:27:41] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:41] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:41] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:41] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:41] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:41] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:41] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: survival_hub
[21:27:41] [Server thread/INFO]: Preparing start region for dimension 'survival_hub'/minecraft:overworld
[21:27:41] [Server thread/INFO]: Loaded 0 spawn chunks for world survival_hub
[21:27:41] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:42] [pool-20-thread-1/INFO]: [P2] (UUID) PlotSquared will fetch UUIDs in groups of 200
[21:27:42] [pool-20-thread-1/INFO]: [P2] (UUID) PlotSquared has cached 100.0% of UUIDs
[21:27:42] [pool-20-thread-1/INFO]: [P2] (UUID) PlotSquared has cached all UUIDs
[21:27:42] [Server thread/INFO]: Time elapsed: 166 ms
[21:27:42] [Server thread/INFO]: [WorldGuard] (survival_hub) TNT ignition is PERMITTED.
[21:27:42] [Server thread/INFO]: [WorldGuard] (survival_hub) Lighters are PERMITTED.
[21:27:42] [Server thread/INFO]: [WorldGuard] (survival_hub) Lava fire is blocked.
[21:27:42] [Server thread/INFO]: [WorldGuard] (survival_hub) All fire spread is disabled.
[21:27:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival_hub'
[21:27:42] [Server thread/INFO]: -------- World Settings For [normal_world_nether] --------
[21:27:42] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:42] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:42] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:42] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:42] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:42] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:42] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:42] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:42] [Server thread/INFO]: View Distance: 8
[21:27:42] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:42] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:42] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:42] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:42] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:42] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:42] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: normal_world_nether
[21:27:42] [Server thread/INFO]: Preparing start region for dimension 'normal_world_nether'/minecraft:the_nether
[21:27:42] [Server thread/INFO]: Loaded 0 spawn chunks for world normal_world_nether
[21:27:42] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:42] [Server-Worker-1/INFO]: Preparing spawn area: 0%
[21:27:43] [Server thread/INFO]: Time elapsed: 980 ms
[21:27:43] [Server thread/INFO]: [WorldGuard] (normal_world_nether) TNT ignition is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (normal_world_nether) Lighters are PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (normal_world_nether) Lava fire is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (normal_world_nether) Fire spread is UNRESTRICTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'normal_world_nether'
[21:27:43] [Server thread/INFO]: -------- World Settings For [bskyblock_world_the_end] --------
[21:27:43] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:43] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:43] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:43] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:43] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:43] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:43] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:43] [Server thread/INFO]: View Distance: 8
[21:27:43] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:43] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:43] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:43] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:43] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:43] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:43] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: bskyblock_world_the_end
[21:27:43] [Server thread/INFO]: Preparing start region for dimension 'bskyblock_world_the_end'/minecraft:the_end
[21:27:43] [Server thread/INFO]: Loaded 0 spawn chunks for world bskyblock_world_the_end
[21:27:43] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:43] [Server thread/INFO]: Time elapsed: 61 ms
[21:27:43] [Server thread/INFO]: [WorldGuard] (bskyblock_world_the_end) TNT ignition is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (bskyblock_world_the_end) Lighters are PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (bskyblock_world_the_end) Lava fire is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (bskyblock_world_the_end) Fire spread is UNRESTRICTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'bskyblock_world_the_end'
[21:27:43] [Server thread/INFO]: -------- World Settings For [BW_Clash] --------
[21:27:43] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:43] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:43] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:43] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:43] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:43] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:43] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:43] [Server thread/INFO]: View Distance: 8
[21:27:43] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:43] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:43] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:43] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:43] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:43] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:43] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: BW_Clash
[21:27:43] [Server thread/INFO]: Preparing start region for dimension 'BW_Clash'/minecraft:overworld
[21:27:43] [Server thread/INFO]: Loaded 0 spawn chunks for world BW_Clash
[21:27:43] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:43] [Server thread/INFO]: Time elapsed: 154 ms
[21:27:43] [Server thread/INFO]: [WorldGuard] (BW_Clash) TNT ignition is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (BW_Clash) Lighters are PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (BW_Clash) Lava fire is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (BW_Clash) Fire spread is UNRESTRICTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'BW_Clash'
[21:27:43] [Server thread/INFO]: -------- World Settings For [creativeplots] --------
[21:27:43] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:43] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:43] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:43] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:43] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:43] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:43] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:43] [Server thread/INFO]: View Distance: 8
[21:27:43] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:43] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:43] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:43] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:43] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:43] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:43] [Server thread/INFO]: [P2] Detected world load for 'creativeplots'
[21:27:43] [Server thread/INFO]: [P2]  - generator: PlotSquared>PlotSquared
[21:27:43] [Server thread/INFO]: [P2]  - plotworld: com.plotsquared.core.generator.HybridPlotWorld
[21:27:43] [Server thread/INFO]: [P2]  - plotAreaManager: com.plotsquared.core.generator.HybridPlotManager
[21:27:43] [Server thread/INFO]: [P2]  - default flags: None
[21:27:43] [Server thread/INFO]: [P2]  - road flags: None
[21:27:43] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: creativeplots
[21:27:43] [Server thread/INFO]: Preparing start region for dimension 'creativeplots'/minecraft:overworld
[21:27:43] [Server thread/INFO]: Loaded 0 spawn chunks for world creativeplots
[21:27:43] [Server thread/INFO]: Time elapsed: 45 ms
[21:27:43] [Server thread/INFO]: [WorldGuard] (creativeplots) TNT ignition is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (creativeplots) Lighters are PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (creativeplots) Lava fire is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (creativeplots) Fire spread is UNRESTRICTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'creativeplots'
[21:27:43] [Server thread/INFO]: Could not set generator for world 'void_world2': Plugin 'VoidGenerator' does not exist
[21:27:43] [Server thread/INFO]: -------- World Settings For [void_world2] --------
[21:27:43] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:43] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:43] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:43] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:43] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:43] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:43] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:43] [Server thread/INFO]: View Distance: 8
[21:27:43] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:43] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:43] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:43] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:43] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:43] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:43] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: void_world2
[21:27:43] [Server thread/INFO]: Preparing start region for dimension 'void_world2'/minecraft:the_end
[21:27:43] [Server thread/INFO]: Loaded 0 spawn chunks for world void_world2
[21:27:43] [Server thread/INFO]: Time elapsed: 34 ms
[21:27:43] [Server thread/INFO]: [WorldGuard] (void_world2) TNT ignition is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (void_world2) Lighters are PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (void_world2) Lava fire is PERMITTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] (void_world2) Fire spread is UNRESTRICTED.
[21:27:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'void_world2'
[21:27:43] [Server thread/INFO]: Could not set generator for world 'void_world2': Plugin 'VoidGenerator' does not exist
[21:27:43] [Server thread/INFO]: -------- World Settings For [server_hub] --------
[21:27:43] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:43] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:43] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:43] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:43] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:43] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:43] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:43] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:43] [Server thread/INFO]: View Distance: 8
[21:27:43] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:43] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:43] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:43] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:43] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:43] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:43] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: server_hub
[21:27:43] [Server thread/INFO]: Preparing start region for dimension 'server_hub'/minecraft:overworld
[21:27:43] [Server thread/INFO]: Loaded 0 spawn chunks for world server_hub
[21:27:44] [Server thread/INFO]: Time elapsed: 922 ms
[21:27:44] [Server thread/INFO]: [WorldGuard] (server_hub) TNT ignition is PERMITTED.
[21:27:44] [Server thread/INFO]: [WorldGuard] (server_hub) Lighters are PERMITTED.
[21:27:44] [Server thread/INFO]: [WorldGuard] (server_hub) Lava fire is PERMITTED.
[21:27:44] [Server thread/INFO]: [WorldGuard] (server_hub) Fire spread is UNRESTRICTED.
[21:27:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'server_hub'
[21:27:44] [Server thread/INFO]: -------- World Settings For [normal_world] --------
[21:27:44] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:44] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:44] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:44] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:44] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:44] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:44] [Server thread/INFO]: View Distance: 8
[21:27:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:44] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:44] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:44] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:44] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: normal_world
[21:27:44] [Server thread/INFO]: Preparing start region for dimension 'normal_world'/minecraft:overworld
[21:27:44] [Server thread/INFO]: Loaded 0 spawn chunks for world normal_world
[21:27:45] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:45] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:45] [Server thread/INFO]: Time elapsed: 1001 ms
[21:27:45] [Server thread/INFO]: [WorldGuard] (normal_world) TNT ignition is PERMITTED.
[21:27:45] [Server thread/INFO]: [WorldGuard] (normal_world) Lighters are PERMITTED.
[21:27:45] [Server thread/INFO]: [WorldGuard] (normal_world) Lava fire is PERMITTED.
[21:27:45] [Server thread/INFO]: [WorldGuard] (normal_world) Fire spread is UNRESTRICTED.
[21:27:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'normal_world'
[21:27:45] [Server thread/INFO]: -------- World Settings For [bskyblock_world] --------
[21:27:45] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:45] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:45] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:45] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:45] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:45] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:45] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:45] [Server thread/INFO]: View Distance: 8
[21:27:45] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:45] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:45] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:45] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:45] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:45] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:45] [Server thread/INFO]: [Oh The Dungeons You'll Go] Found world: bskyblock_world
[21:27:45] [Server thread/INFO]: Preparing start region for dimension 'bskyblock_world'/minecraft:overworld
[21:27:45] [Server thread/INFO]: Loaded 0 spawn chunks for world bskyblock_world
[21:27:45] [Server thread/INFO]: Preparing spawn area: 0%
[21:27:45] [Server thread/INFO]: Time elapsed: 36 ms
[21:27:45] [Server thread/INFO]: [WorldGuard] (bskyblock_world) TNT ignition is PERMITTED.
[21:27:45] [Server thread/INFO]: [WorldGuard] (bskyblock_world) Lighters are PERMITTED.
[21:27:45] [Server thread/INFO]: [WorldGuard] (bskyblock_world) Lava fire is PERMITTED.
[21:27:45] [Server thread/INFO]: [WorldGuard] (bskyblock_world) Fire spread is UNRESTRICTED.
[21:27:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'bskyblock_world'
[21:27:45] [Server thread/INFO]: -------- World Settings For [BW_Castle] --------
[21:27:45] [Server thread/INFO]: Mob Spawn Range: 5
[21:27:45] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:27:45] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false
[21:27:45] [Server thread/INFO]: Experience Merge Radius: 6.0
[21:27:45] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[21:27:45] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[21:27: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
[21:27:45] [Server thread/INFO]: Max TNT Explosions: 100
[21:27:45] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[21:27:45] [Server thread/INFO]: View Distance: 8
[21:27:45] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:27:45] [Server thread/INFO]: Item Despawn Rate: 3600
[21:27:45] [Server thread/INFO]: Item Merge Radius: 4.0
[21:27:45] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[21:27:45] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:27:45] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:27:45] [Server thread/INFO]: World BW_Castle is a duplicate of another world and has been prevented from loading. Please delete the uid.dat file from BW_Castle's world directory if you want to be able to load the duplicate world.
[21:27:45] [Server thread/ERROR]: [Multiverse-Core] The world 'BW_Castle' could NOT be loaded because the server didn't like it!
[21:27:45] [Server thread/ERROR]: [Multiverse-Core] We don't really know why this is. Contact the developer of your server software!
[21:27:45] [Server thread/ERROR]: [Multiverse-Core] Server version info: git-Paper-384 (MC: 1.15.2)
[21:27:45] [Server thread/INFO]: [Multiverse-Core] 14 - World(s) loaded.
[21:27:45] [Server thread/INFO]: [Multiverse-Core] Version 4.1.0-b775 (API v24) Enabled - By Rigby, fernferret, lithium3141, main-- and dumptruckman
[21:27:45] [Server thread/INFO]: [Multiverse-Core] Help dumptruckman keep this project alive. Become a patron! https://www.patreon.com/dumptruckman
[21:27:45] [Server thread/INFO]: [Multiverse-Core] One time donations are also appreciated: https://www.paypal.me/dumptruckman
[21:27:45] [Server thread/INFO]: [ExtraHardMode] Enabling ExtraHardMode v3.14.0-e490375
[21:27:46] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v3.0.0-b459
[21:27:46] [Server thread/INFO]: [Multiverse-Inventories 3.0.0-b459] enabled.
[21:27:46] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.1.0-b805
[21:27:46] [Server thread/INFO]: [Multiverse-Portals] 13 - Portals(s) loaded
[21:27:46] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[21:27:46] [Server thread/INFO]: [Multiverse-Portals 4.1.0-b805]  Enabled - By Rigby and fernferret
[21:27:46] [Server thread/INFO]: [ChatControl] Enabling ChatControl v8.6.6
[21:27:46] [Server thread/INFO]:   _____ _           _    _____            _             _  +
[21:27:46] [Server thread/INFO]:  / ____| |         | |  / ____|          | |           | |
[21:27:46] [Server thread/INFO]: | |    | |__   __ _| |_| |     ___  _ __ | |_ _ __ ___ | |
[21:27:46] [Server thread/INFO]: | |    | '_ \ / _` | __| |    / _ \| '_ \| __| '__/ _ \| |
[21:27:46] [Server thread/INFO]: | |____| | | | (_| | |_| |___| (_) | | | | |_| | | (_) | |
[21:27:46] [Server thread/INFO]:  \_____|_| |_|\__,_|\__|\_____\___/|_| |_|\__|_|  \___/|_|
[21:27:46] [Server thread/INFO]:   
[21:27:46] [Server thread/INFO]: Could not hook into PlotSquared, version 4.x required, you have 5.13.0-Premium
[21:27:46] [Server thread/INFO]: Registering commands...
[21:27:46] [Server thread/INFO]:   
[21:27:46] [Server thread/INFO]: Loaded 168 global, 20 chat, 4 command, 2 packet and 1 book rules
[21:27:46] [Server thread/INFO]:   
[21:27:46] [Server thread/INFO]: ChatControl loaded. Ready for action!
[21:27:46] [Server thread/INFO]: ______________________________________________________________
[21:27:46] [Server thread/INFO]: [MobArena] Enabling MobArena v0.104.2
[21:27:46] [Server thread/INFO]: [MobArena] Vault found; economy rewards enabled.
[21:27:47] [Server thread/INFO]: [MobArena] Loaded 6 sign templates.
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.Location org.bukkit.Location.deserialize(java.util.Map)' of class org.bukkit.Location for deserialization
java.lang.IllegalArgumentException: unknown world
    at org.bukkit.Location.deserialize(Location.java:1123) ~[patched_1.15.2.jar:git-Paper-384]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_252]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_252]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_252]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_252]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:85) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:127) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:207) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:37) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:376) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:360) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:499) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:465) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:184) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:446) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:521) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:28) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:216) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:205) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:164) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:148) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:525) ~[patched_1.15.2.jar:git-Paper-384]
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:438) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:54) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[patched_1.15.2.jar:git-Paper-384]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:26) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/INFO]: [MobArena] Loaded 13 arena signs.
[21:27:47] [Server thread/ERROR]: Error occurred while enabling MobArena v0.104.2 (Is it up to date?)
java.lang.IllegalStateException: Duplicate key com.garbagemule.MobArena.signs.ArenaSign@40d4b911
    at java.util.stream.Collectors.lambda$throwingMerger$0(Collectors.java:133) ~[?:1.8.0_252]
    at java.util.HashMap.merge(HashMap.java:1254) ~[?:1.8.0_252]
    at java.util.stream.Collectors.lambda$toMap$58(Collectors.java:1320) ~[?:1.8.0_252]
    at java.util.stream.ReduceOps$3ReducingSink.accept(ReduceOps.java:169) ~[?:1.8.0_252]
    at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382) ~[?:1.8.0_252]
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482) ~[?:1.8.0_252]
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472) ~[?:1.8.0_252]
    at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708) ~[?:1.8.0_252]
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:1.8.0_252]
    at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:566) ~[?:1.8.0_252]
    at com.garbagemule.MobArena.signs.SignStore.<init>(SignStore.java:19) ~[?:?]
    at com.garbagemule.MobArena.signs.LoadsSignStore.load(LoadsSignStore.java:43) ~[?:?]
    at com.garbagemule.MobArena.signs.SignBootstrap.create(SignBootstrap.java:121) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reloadSigns(MobArena.java:247) ~[?:?]
    at com.garbagemule.MobArena.MobArena.reload(MobArena.java:188) ~[?:?]
    at com.garbagemule.MobArena.MobArena.onEnable(MobArena.java:73) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472) ~[patched_1.15.2.jar:git-Paper-384]
    at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.15.2.jar:git-Paper-384]
    at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909) ~[patched_1.15.2.jar:git-Paper-384]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_252]
[21:27:47] [Server thread/INFO]: [MobArena] Disabling MobArena v0.104.2
[21:27:47] [Server thread/INFO]: [BattleArena] Enabling BattleArena v3.9.16.4
[21:27:47] [Server thread/INFO]: [BattleArena] v3.9.16.4 enabling!
[21:27:47] [Server thread/INFO]: [BattleArena] BattleTracker not detected, not tracking wins
[21:27:47] [Server thread/INFO]: [BattleArena] CombatTagInterface is turned OFF
[21:27:47] [Server thread/WARN]: [BattleArena] Loaded class me.libraryaddict.disguise.disguisetypes.Disguise from LibsDisguises v10.0.15 which is not a depend, softdepend or loadbefore of this plugin.
[21:27:47] [Server thread/INFO]: [BattleArena] LibsDisguises detected. Implementing disguises
[21:27:47] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/garbagemule/MobArena/MobArena
[21:27:47] [Server thread/WARN]:     at mc.alk.arena.util.plugins.MobArenaUtil.<init>(MobArenaUtil.java:11)
[21:27:47] [Server thread/WARN]:     at mc.alk.arena.controllers.plugins.MobArenaInterface.setPlugin(MobArenaInterface.java:16)
[21:27:47] [Server thread/WARN]:     at mc.alk.arena.listeners.BAPluginListener.loadMobArena(BAPluginListener.java:219)
[21:27:47] [Server thread/WARN]:     at mc.alk.arena.listeners.BAPluginListener.loadAll(BAPluginListener.java:100)
[21:27:47] [Server thread/WARN]:     at mc.alk.arena.BattleArena.onEnable(BattleArena.java:181)
[21:27:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263)
[21:27:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380)
[21:27:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483)
[21:27:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugin(CraftServer.java:472)
[21:27:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_15_R1.CraftServer.enablePlugins(CraftServer.java:386)
[21:27:47] [Server thread/WARN]:     at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:488)
[21:27:47] [Server thread/WARN]:     at net.minecraft.server.v1_15_R1.DedicatedServer.init(DedicatedServer.java:298)
[21:27:47] [Server thread/WARN]:     at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:909)
[21:27:47] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[21:27:47] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.garbagemule.MobArena.MobArena
[21:27:47] [Server thread/WARN]:     at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
[21:27:47] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:171)
[21:27:47] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:100)
[21:27:47] [Server thread/WARN]:     at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
[21:27:47] [Server thread/WARN]:     at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
[21:27:47] [Server thread/WARN]:     ... 14 more
[21:27:47] [Server thread/INFO]: [BattleArena] MobArena detected.  Implementing no add when in MobArena
[21:27:47] [Server thread/INFO]: [BattleArena] Multiverse-Core detected. Implementing teleport/gamemode workarounds
[21:27:47] [Server thread/INFO]: [BattleArena] Multiverse-Inventories detected. Implementing teleport/gamemode workarounds
[21:27:47] [Server thread/INFO]: [BattleArena] WorldEdit detected.
[21:27:47] [Server thread/INFO]: [BattleArena] Warning currency was empty, using name from config.yml
[21:27:47] [Server thread/INFO]: [BattleArena] found economy plugin Vault. [Default]
[21:27:47] [Server thread/INFO]: [BattleArena] Modules (2) [Paintballs, Grenades]
[21:27:47] [Server thread/INFO]: [BattleArena] registering classes: gladiator, archer, monk
[21:27:47] [Server thread/WARN]: [BattleArena] You have opted-out of auto updating, so you won't know for certain if you're running the latest version.
[21:27:47] [Server thread/INFO]: [BattleArena] v3.9.16.4 enabled!
[21:27:47] [Server thread/INFO]: [MBedwars] Enabling MBedwars v4.0.18.2
[21:27:47] [Server thread/INFO]: [MBedwars-Library] Loaded API of plugin "ProtocolLib"
[21:27:47] [Server thread/INFO]: [MBedwars-Library] Loaded API of plugin "Vault"
[21:27:47] [Server thread/INFO]: [MBedwars-Library] Loaded the library "RegionEdit"
[21:27:47] [Server thread/WARN]: [MBedwars] 
[21:27:47] [Server thread/WARN]: [MBedwars] #########################
[21:27:47] [Server thread/WARN]: [MBedwars] # Server has been started without the '--forceUpgrade' parameter.
[21:27:47] [Server thread/WARN]: [MBedwars] # This might cause crashes when upgrading from 1.7 - 1.12
[21:27:47] [Server thread/WARN]: [MBedwars] #########################
[21:27:47] [Server thread/WARN]: [MBedwars] 
[21:27:48] [Server thread/INFO]: [MBedwars] Successfully started service: LOCAL
[21:27:48] [Server thread/INFO]: [DeadChest] Enabling DeadChest v4.0.0
[21:27:48] [Server thread/INFO]: [CMI] Enabling CMI v8.7.5.1
[21:27:48] [Server thread/INFO]: [CMIPaperLib] Enabling CMIPaperLib v1.0.0
[21:27:50] [Server thread/INFO]: ????? ?????? ????
[21:27:50] [Server thread/INFO]: ????? ? ?? ? ????
[21:27:50] [Server thread/INFO]: ?? ?? ??????  ?? 
[21:27:50] [Server thread/INFO]: ?? ?? ??????  ?? 
[21:27:50] [Server thread/INFO]: ????? ?????? ????
[21:27:50] [Server thread/INFO]: ????? ?????? ????
[21:27:50] [Server thread/INFO]: _______________________________________________________
[21:27:50] [Server thread/INFO]:   Integrating PaperSpigot async methods
[21:27:52] [Server thread/INFO]:   Citizens found.
[21:27:52] [Server thread/INFO]:   44 Enabled and 7 Disabled modules
[21:27:52] [Server thread/INFO]:   Loaded (34) portals into memory. Took 14ms
[21:27:52] [Server thread/INFO]:   Permission plugin: LuckPerms5.1.26
[21:27:52] [Server thread/INFO]:   Initialized Cipher256 AES
[21:27:52] [Server thread/INFO]:   Loaded (48) regular alias into memory. Took 31ms
[21:27:52] [Server thread/INFO]:   Loaded (7) custom text's into memory. Took 2ms
[21:27:53] [Server thread/INFO]:   3.30.1 data base type detected
[21:27:53] [Server thread/INFO]:   Started SqLite data base. Took 148ms
[21:27:53] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[21:27:53] [Server thread/INFO]:   Cant load test hologram. (lobby) is missing. Report this to developer and include your multiverse plugin name.
[21:27:53] [Server thread/INFO]:   Loaded (1) holograms into memory. Took 22ms
[21:27:53] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 1ms
[21:27:53] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[21:27:53] [Server thread/INFO]:   Loaded (126) custom mob heads into memory. Took 16ms
[21:27:53] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 27ms
[21:27:53] [Server thread/INFO]:   Random teleport location is out of minimal world border X coordinate bounds for survival_hub world. Please update values.
[21:27:53] [Server thread/INFO]:   Random teleport location is out of maximal world border X coordinate bounds for survival_hub world. Please update values.
[21:27:53] [Server thread/INFO]:   Random teleport location is out of minimal world border Z coordinate bounds for survival_hub world. Please update values.
[21:27:53] [Server thread/INFO]:   Random teleport location is out of maximal world border Z coordinate bounds for survival_hub world. Please update values.
[21:27:53] [Server thread/INFO]:   Initializing BungeeCord
[21:27:53] [Server thread/INFO]:   Loaded (2) kits into memory. Took 1ms
[21:27:53] [Server thread/INFO]:   Loaded (0) ranks into memory. Took 5ms
[21:27:53] [Server thread/INFO]:   Could not load play time reward (month1) Double check spelling
[21:27:53] [Server thread/INFO]:   Could not load play time reward (month6) Double check spelling
[21:27:53] [Server thread/INFO]:   Could not load play time reward (year1) Double check spelling
[21:27:53] [Server thread/INFO]:   Loaded (5) playtime rewards into memory. Took 2ms
[21:27:53] [Server thread/INFO]:   Loaded (5) player data into memory. Took 9ms
[21:27:53] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 1ms
[21:27:53] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[21:27:53] [Server thread/INFO]:   Loaded (5) custom alias into memory. Took 2ms
[21:27:53] [Server thread/INFO]:   Registered events. Took 351ms
[21:27:53] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 2ms
[21:27:54] [Server thread/INFO]:   Updated (EN) language file. Took 208ms
[21:27:54] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 9ms
[21:27:54] [Server thread/INFO]:   Loaded (3) warps into memory. Took 3ms
[21:27:54] [Server thread/INFO]:   Vault permissions was found - Enabling capabilities.
[21:27:54] [Server thread/INFO]:   Starting world timer.
[21:27:54] [Server thread/INFO]:   Initializing world manager.
[21:27:54] [Server thread/INFO]:   Loaded (5) schedules into memory. Took 4ms
[21:27:54] [Server thread/INFO]:   Loaded GeoIP
[21:27:54] [Server thread/INFO]:   Loaded (0) skin cache entries into memory. Took 0ms
[21:27:54] [Server thread/INFO]:   Version 8.7.5.1 has been enabled
[21:27:54] [Server thread/INFO]: ???????????????????????????????????????????????????????
[21:27:54] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[21:27:54] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v4.10.0-SNAPSHOT-3347
[21:27:54] [Server thread/INFO]: [LumineUtils] (io.lumine.xikage.mythicmobs.utils.) is bound to plugin MythicMobs - io.lumine.xikage.mythicmobs.MythicMobs
[21:27:54] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.15.2)...
[21:27:54] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[21:27:54] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 64 ms to scan 1 urls, producing 3 keys and 21 values 
[21:27:54] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 17 ms to scan 1 urls, producing 3 keys and 24 values 
[21:27:54] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 57 ms to scan 12 urls, producing 0 keys and 0 values 
[21:27:54] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 18 ms to scan 1 urls, producing 3 keys and 9 values 
[21:27:54] [Server thread/WARN]: [MythicMobs] Loaded class io.lumine.artifacts.Artifacts from MythicArtifacts v0.1.30-SNAPSHOT which is not a depend, softdepend or loadbefore of this plugin.
[21:27:54] [Server thread/INFO]: [MythicMobs] MythicMobs MythicArtifacts Support has been enabled!
[21:27:54] [Server thread/INFO]: [MythicMobs] MythicMobs CMI Support has been enabled!
[21:27:54] [Server thread/INFO]: [MythicMobs] MythicMobs LibsDisguises Support has been enabled!
[21:27:54] [Server thread/INFO]: [MythicMobs] MythicMobs MMOItems Support has been enabled!
[21:27:54] [Server thread/INFO]: [MythicMobs] Loaded ProtocolLib packet handlers
[21:27:54] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[21:27:54] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[21:27:54] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[21:27:54] [Server thread/INFO]: [MythicMobs] Loading Mob Registry...
[21:27:54] [Server thread/INFO]: [MythicMobs] Base directory /home/minecraft/multicraft/servers/server250499/plugins/MythicMobs/SavedData
[21:27:54] [Server thread/INFO]: [MythicMobs] Module directory /home/minecraft/multicraft/servers/server250499/plugins/MythicMobs/SavedData/worlds
[21:27:54] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 21 ms to scan 1 urls, producing 10 keys and 283 values 
[21:27:54] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 26 ms to scan 1 urls, producing 23 keys and 555 values 
[21:27:54] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 10 ms to scan 1 urls, producing 6 keys and 75 values 
[21:27:54] [Server thread/INFO]: [MythicMobs] LOADED
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE_VILLAGER" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE_VILLAGER" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE_VILLAGER" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE_VILLAGER" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE_VILLAGER" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE" as an EntityType!
[21:27:55] [Server thread/WARN]: [MythicMobs] ? Config Error for Condition line 'entitytype{types=ZOMBIE,ZOMBIE_VILLAGER,BABY_ZOMBIE,BABY_ZOMBIE_VILLAGER,HUSK,CREEPER}': Couldn't parse "BABY_ZOMBIE_VILLAGER" as an EntityType!
[21:27:55] [Server thread/INFO]: [MythicMobs] ? Loaded 11 mobs.
[21:27:55] [Server thread/INFO]: [MythicMobs] ? Loaded 3 vanilla mob overrides.
[21:27:55] [Server thread/INFO]: [MythicMobs] ? Loaded 0 mob stacks.
[21:27:55] [Server thread/INFO]: [MythicMobs] ? Loaded 155 skills.
[21:27:55] [Server thread/INFO]: [MythicMobs] ? Loaded 31 random spawns.
[21:27:55] [Server thread/INFO]: [MythicMobs] ? Loaded 87 mythic items.
[21:27:55] [Server thread/INFO]: [MythicMobs] ? Loaded 4 drop tables.
[21:27:55] [Server thread/INFO]: [MythicMobs] ? Loaded 1 mob spawners.
[21:27:55] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[21:27:55] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[21:27:55] [Server thread/INFO]: [MythicMobs] ? MythicMobs Premium v4.10.0 (build 3347) has been successfully loaded!
[21:27:55] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.4.2-SNAPSHOT
[21:27:55] [Server thread/INFO]: [MMOCore] Hooked onto Vault
[21:27:55] [Server thread/INFO]: [MMOCore] Hooked onto Citizens
[21:27:55] [Server thread/INFO]: [MMOCore] Hooked onto WorldGuard
[21:27:55] [Server thread/INFO]: [MMOCore] Hooked onto CMI Holograms
[21:27:55] [Server thread/INFO]: [MMOCore] Hooked onto MythicMobs
[21:27:55] [Server thread/WARN]: [MMOCore] Could not load condition 'region{name=minecraft:beach}' from fishing drop table 'overriding-drop-table': Could not load config
[21:27:55] [Server thread/WARN]: [MMOCore] Could not load condition 'region{name=minecraft:ocean}' from fishing drop table 'overriding-drop-table': Could not load config
[21:27:55] [Server thread/WARN]: [MMOCore] An error occured while trying to load loot chest region 'sample-region': Could not find world world_name_here
[21:27:55] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.1.0-b763
[21:27:55] [Server thread/INFO]: [Multiverse-NetherPortals 4.1.0-b763]  Enabled - By Rigby and fernferret
[21:27:55] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.1.3
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[21:27:55] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[21:27:55] [Server thread/INFO]: [Lands] Enabling Lands v4.8.5
[21:27:55] [Server thread/INFO]: [Lands] Performing initial data load.
[21:27:55] [Server thread/INFO]: [Lands] There are currently 6 created lands.
[21:27:55] [Server thread/INFO]: [Lands] Initial data load took 75 ms.
[21:27:55] [Server thread/INFO]: [MMOItems] Enabling MMOItems v5.5.4
[21:27:55] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[21:27:55] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[21:27:56] [Server thread/INFO]: [MMOItems] An issue occured registering recipe 'blaze-soul' from crafting station 'mythical-forge': Could not find MMOItem with ID 'BLAZE_SOUL'
[21:27:56] [Server thread/INFO]: [MMOItems] An issue occured registering recipe 'hell-bow' from crafting station 'mythical-forge': Could not find MMOItem with ID 'HELL_BOW'
[21:27:56] [Server thread/INFO]: [MMOItems] An issue occured registering recipe 'dead-pharaoh-helmet' from crafting station 'mythical-forge': Could not find MMOItem with ID 'DEAD_PHARAOH_HELMET'
[21:27:56] [Server thread/INFO]: [MMOItems] Hooked onto CMI Holograms
[21:27:56] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[21:27:56] [Server thread/INFO]: [MMOItems] Hooked onto MMOCore
[21:27:56] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[21:27:56] [Server thread/WARN]: [MMOLib] Loaded class net.Indyuce.mmoitems.MMOItems from MMOItems v5.5.4 which is not a depend, softdepend or loadbefore of this plugin.
[21:27:56] [Server thread/INFO]: [OTD_MythicTweak] Enabling OTD_MythicTweak v4.0
[21:27:56] [Server thread/INFO]: [OTD_MythicTweak] An update was found! Download: https://www.spigotmc.org/resources/otd_mythictweak.77129/
[21:27:56] [Server thread/INFO]: [OTD_MythicTweak] Start to hook [Oh The Dungeons You''ll Go] API
[21:27:56] [Server thread/INFO]: [OTD_MythicTweak] Hook success
[21:27:56] [Server thread/INFO]: [MythicArtifacts] Enabling MythicArtifacts v0.1.30-SNAPSHOT
[21:27:56] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[21:27:56] [Server thread/INFO]: [MythicMobs] + Loading MythicArtifacts for Bukkit
[21:27:56] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[21:27:56] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[21:27:56] [Server thread/INFO]: [MMOItemsPerWorldDrops] Enabling MMOItemsPerWorldDrops v1.2
[21:27:56] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Enabling MyPet v3.1
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] No Update available.
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Custom entity registry found: net.citizensnpcs.nms.v1_15_R1.util.CustomEntityRegistry
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Compat mode for v1_15_R1 loaded.
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Exp calculation mode: MyPet
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Loading WorldGroups...
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    disabled MyPet in 'bskyblock_world_nether'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    disabled MyPet in 'server_hub'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    disabled MyPet in 'bskyblock_world_the_end'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    disabled MyPet in 'BW_Clash'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    disabled MyPet in 'creativeplots'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    disabled MyPet in 'bskyblock_world'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'peaceful_world' to 'peaceful'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'survival_hub' to 'default'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'normal_world' to 'default'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'normal_world_nether' to 'default'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world' to 'default'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world_nether' to 'default'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world_the_end' to 'default'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'void_world2' to 'default'
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Connect to SQLite database...
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] SQLite connection successful.
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] BattleArena (3.9.16.4) hook activated.
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Citizens (2.0.27-SNAPSHOT (build 2060)) hook activated.
[21:27:57] [Server thread/INFO]: [Lands] [Integrations] Accepted incoming integration. Plugin: MyPet
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Lands (4.8.5) hook activated.
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] MythicMobs (4.10.0-SNAPSHOT-3347) hook activated.
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] ProtocolLib (4.5.1) hook activated.
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Vault (1.7.3-b${env.TRAVIS_BUILD_NUMBER}) (Economy: CMIEconomy) (Permissions: LuckPerms) hook activated.
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] WorldGuard (7.0.3;5407315) hook activated.
[21:27:57] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Version 3.10-b1542 ENABLED
[21:27:58] [Server thread/INFO]: Running delayed init tasks
[21:27:58] [Craft Scheduler Thread - 5/INFO]: [P2] Congratulations! You are running the latest PlotSquared version.
[21:27:58] [Craft Scheduler Thread - 26/INFO]: [Lands] Loaded name resolver asynchronously.
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling addons...
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling BSkyBlock...
[21:27:58] [Server thread/INFO]: [BentoBox] Loading control panels...
[21:27:58] [Craft Scheduler Thread - 19/INFO]: A new version of ChatControl is available.
[21:27:58] [Craft Scheduler Thread - 19/INFO]: Current version: 8.6.6; New version: 8.7.4
[21:27:58] [Craft Scheduler Thread - 19/INFO]: URL: https://www.spigotmc.org/resources/10258/.
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling ControlPanel...
[21:27:58] [Server thread/INFO]: [BentoBox] [Limits] Entity limits:
[21:27:58] [Server thread/INFO]: [BentoBox] [Limits] Limit PIG_ZOMBIE to 15
[21:27:58] [Server thread/INFO]: [BentoBox] [Limits] Limit ENDERMAN to 5
[21:27:58] [Server thread/INFO]: [BentoBox] [Limits] Limit CHICKEN to 10
[21:27:58] [Server thread/INFO]: [BentoBox] [Limits] Limits will apply to BSkyBlock
[21:27:58] [Server thread/INFO]: [BentoBox] [Limits] Loading default limits
[21:27:58] [Server thread/INFO]: [BentoBox] [Limits] Limit HOPPER to 10
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling Limits...
[21:27:58] [Server thread/INFO]: [BentoBox] [Warps] Loading warps...
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling Warps...
[21:27:58] [Server thread/INFO]: [BentoBox] Loading biomes...
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling Biomes...
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling IslandFly...
[21:27:58] [Server thread/INFO]: [BentoBox] Loading likes...
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling Likes...
[21:27:58] [Server thread/INFO]: [BentoBox] [Level] Loaded TopTen for bskyblock_world
[21:27:58] [Server thread/INFO]: [BentoBox] [Level] Level hooking into BSkyBlock
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling Level...
[21:27:58] [Server thread/INFO]: [BentoBox] [Challenges] Loading challenges...
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling Challenges...
[21:27:58] [Server thread/INFO]: [BentoBox] Enabling MagicCobblestoneGenerator...
[21:27:59] [Server thread/INFO]: [BentoBox] Addons successfully enabled.
[21:27:59] [Server thread/INFO]: [BentoBox] Hooking with Multiverse-Core...
[21:27:59] [Server thread/INFO]: Multiverse already knows about 'bskyblock_world'!
[21:27:59] [Server thread/INFO]: Success! Property generator was set to BentoBox
[21:27:59] [Server thread/INFO]: Multiverse already knows about 'bskyblock_world_nether'!
[21:27:59] [Server thread/INFO]: Success! Property generator was set to BentoBox
[21:27:59] [Server thread/INFO]: Multiverse already knows about 'bskyblock_world_the_end'!
[21:27:59] [Server thread/INFO]: Success! Property generator was set to BentoBox
[21:27:59] [Server thread/INFO]: [BentoBox] Hooking with WorldEdit...
[21:27:59] [Server thread/INFO]: 
  ____             _        ____
 |  _ \           | |      |  _ \             by tastybento and Poslovitch
 | |_) | ___ _ __ | |_ ___ | |_) | _____  __  2017 - 2020
 |  _ < / _ \ '_ \| __/ _ \|  _ < / _ \ \/ /
 | |_) |  __/ | | | || (_) | |_) | (_) >  <   v1.13.1
 |____/ \___|_| |_|\__\___/|____/ \___/_/\_\  Loaded in 3004ms.

[21:27:59] [Server thread/INFO]: [BattleArena] Now registering command duel dynamically with Bukkit commandMap.
[21:28:00] [Server thread/INFO]: [Citizens] Loaded 36 NPCs.
[21:28:00] [Server thread/INFO]: +> [ScriptEvent] Event WRONG_TOOL_USE.events.on player breaks *_log with:*_pickaxe is matched to multiple ScriptEvents: 
                   EntityBreaksHanging, PlayerBreaksBlock 
[21:28:00] [Server thread/INFO]: +> [ScriptEvent] Event WRONG_TOOL_USE.events.on player breaks 
                   clay|farmland|grass_block|grass_path|gravel|mycelium|podzol|coarse_dirt|dirt|red_sand|sand|soul_sand|soul_soil|concrete_powder|snow_block|snow 
                   with:*_hoe is not matched to any ScriptEvents. 
[21:28:00] [Server thread/INFO]: +> [ScriptEvent] Event WRONG_TOOL_USE.events.on player breaks *_log with:*_shovel is matched to multiple ScriptEvents: 
                   EntityBreaksHanging, PlayerBreaksBlock 
[21:28:00] [Server thread/INFO]: +> [ScriptEvent] Event WRONG_TOOL_USE.events.on player breaks *_log with:*_sword is matched to multiple ScriptEvents: 
                   EntityBreaksHanging, PlayerBreaksBlock 
[21:28:00] [Server thread/INFO]: +> [ScriptEvent] Event WRONG_TOOL_USE.events.on player breaks 
                   clay|farmland|grass_block|grass_path|gravel|mycelium|podzol|coarse_dirt|dirt|red_sand|sand|soul_sand|soul_soil|concrete_powder|snow_block|snow 
                   with:*_axe is not matched to any ScriptEvents. 
[21:28:00] [Server thread/INFO]: +> [ScriptEvent] Event WRONG_TOOL_USE.events.on player breaks 
                   clay|farmland|grass_block|grass_path|gravel|mycelium|podzol|coarse_dirt|dirt|red_sand|sand|soul_sand|soul_soil|concrete_powder|snow_block|snow 
                   with:*_pickaxe is not matched to any ScriptEvents. 
[21:28:00] [Server thread/INFO]: +> [ScriptEvent] Event WRONG_TOOL_USE.events.on player breaks 
                   clay|farmland|grass_block|grass_path|gravel|mycelium|podzol|coarse_dirt|dirt|red_sand|sand|soul_sand|soul_soil|concrete_powder|snow_block|snow 
                   with:*_sword is not matched to any ScriptEvents. 
[21:28:00] [Server thread/INFO]: +> [ScriptEvent] Event WRONG_TOOL_USE.events.on player breaks *_log with:*_hoe is matched to multiple ScriptEvents: 
                   EntityBreaksHanging, PlayerBreaksBlock 
[21:28:00] [Server thread/INFO]: +> [] +-------------------------+ 
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{t=GravestoneZombie1;a=1;r=5;yr=-2;os=true}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{t=GravestoneZombie2;a=1;r=5;yr=-2;os=true}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{t=GravestoneZombie3;a=1;r=5;yr=-2;os=true}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{t=GravestoneZombie4;a=1;r=5;yr=-2;os=true}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{t=GravestoneZombie5;a=1;r=5;yr=-2;os=true}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{t=GravestoneZombie6;a=1;r=5;yr=-2;os=true}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'customteleport{d="@selfLocation";yo=-2}' in 'Unknown': Failed to load custom mechanic CUSTOMTELEPORT
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'customteleport{d="@selfLocation";yo=0.2;repeat=10;repeatInterval=1}' in 'Unknown': Failed to load custom mechanic CUSTOMTELEPORT
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'cure{t=SPEED}' in 'Unknown': Failed to load custom mechanic CURE
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'itemprojectile{onStart=Orc_AxeThrow-Start;onTick=Orc_AxeThrow-Tick;onHit=Orc_AxeThrow-Hit;onEnd=Orc_AxeThrow-End;v=12;i=1;hR=1;vR=1;mr=20;syo=1;tyo=0.5;hfs=1;g=0.16;pobject=IRON_AXE;pfoff=0;pvoff=0}' in 'Unknown': Failed to load custom mechanic ITEMPROJECTILE
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'unequip{a=hand}' in 'Unknown': Failed to load custom mechanic UNEQUIP
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'customdamage{a=10to20}' in 'Unknown': Failed to load custom mechanic CUSTOMDAMAGE
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{type=SpiderlingPoison;amount=1;radius=1}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{type=SpiderlingWither;amount=1;radius=1}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{type=SpiderlingFrost;amount=1;radius=1}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{type=SpiderlingFire;amount=1;radius=1}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{type=SupriseEnemy;amount=1;radius=3}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{type=SupriseEnemy;amount=1;radius=3}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/WARN]: [MythicMobs] ? Config Error for Mechanic line 'summon{type=SupriseEnemy;amount=1;radius=3}' in 'Unknown': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:28:00] [Server thread/INFO]: Roguelike Dungeon MythicMobs Information
[21:28:00] [Server thread/INFO]: y=50~60, false
[21:28:00] [Server thread/INFO]: y=40~50, false
[21:28:00] [Server thread/INFO]: y=30~40, false
[21:28:00] [Server thread/INFO]: y=20~30, false
[21:28:00] [Server thread/INFO]: y=10~20, false
[21:28:00] [Server thread/INFO]: Use /otd_mt_reload to reload config
[21:28:00] [Server thread/INFO]: [BentoBox] Added world BSkyBlock (NORMAL)
[21:28:00] [Server thread/INFO]: Done (50.782s)! For help, type "help"
[21:28:00] [Server thread/INFO]: Stopping server
[21:28:00] [Server thread/INFO]: [CMIPaperLib] Disabling CMIPaperLib v1.0.0
[21:28:00] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Disabling MyPet v3.1
[21:28:00] [Server thread/INFO]: [Lands] [Integrations] Integration removed. Name: MyPet
[21:28:00] [Server thread/INFO]: [Lands] [Integrations] Integration removed. Name: MyPet
[21:28:00] [Server thread/INFO]: [MMOItemsPerWorldDrops] Disabling MMOItemsPerWorldDrops v1.2
[21:28:00] [Server thread/INFO]: [MythicArtifacts] Disabling MythicArtifacts v0.1.30-SNAPSHOT
[21:28:00] [Server thread/INFO]: [OTD_MythicTweak] Disabling OTD_MythicTweak v4.0
[21:28:00] [Server thread/INFO]: OTD_MythicTweak is disabled
[21:28:00] [Server thread/INFO]: [MMOItems] Disabling MMOItems v5.5.4
[21:28:00] [Server thread/INFO]: [Lands] Disabling Lands v4.8.5
[21:28:00] [Server thread/INFO]: [Lands] Closing storage.
[21:28:00] [Server thread/INFO]: [WorldGuardExtraFlags] Disabling WorldGuardExtraFlags v4.1.3
[21:28:00] [Server thread/INFO]: [Multiverse-NetherPortals] Disabling Multiverse-NetherPortals v4.1.0-b763
[21:28:00] [Server thread/INFO]: [Multiverse-NetherPortals] - Disabled
[21:28:00] [Server thread/INFO]: [MMOCore] Disabling MMOCore v1.4.2-SNAPSHOT
[21:28:00] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v4.10.0-SNAPSHOT-3347
[21:28:00] [Server thread/INFO]: [MythicMobs] Disabling Mythic Mobs...
[21:28:00] [Server thread/INFO]: [MythicMobs] All active settings have been saved.
[21:28:00] [Server thread/INFO]: [MythicMobs] UNLOADED
[21:28:00] [Server thread/INFO]: [CMI] Disabling CMI v8.7.5.1
[21:28:00] [Server thread/INFO]: [Vault][Economy] CMI Economy unhooked.
[21:28:00] [Server thread/INFO]: [CMI] Closed db connections
[21:28:00] [Server thread/INFO]: [DeadChest] Disabling DeadChest v4.0.0
[21:28:00] [Server thread/INFO]: [MBedwars] Disabling MBedwars v4.0.18.2
[21:28:00] [Server thread/INFO]: [MBedwars] Shutting down service LOCAL...
[21:28:00] [Server thread/INFO]: [BattleArena] Disabling BattleArena v3.9.16.4
[21:28:00] [Server thread/INFO]: [ChatControl] Disabling ChatControl v8.6.6
[21:28:00] [Server thread/INFO]: [Multiverse-Portals] Disabling Multiverse-Portals v4.1.0-b805
[21:28:00] [Server thread/INFO]: [Multiverse-Inventories] Disabling Multiverse-Inventories v3.0.0-b459
[21:28:00] [Server thread/INFO]: [ExtraHardMode] Disabling ExtraHardMode v3.14.0-e490375
[21:28:00] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.1.0-b775
[21:28:00] [Server thread/INFO]: [WorldEditSUI] Disabling WorldEditSUI v1.7.1
[21:28:00] [Server thread/INFO]: [Denizen] Disabling Denizen v1.1.5-SNAPSHOT (build 1713-REL)
[21:28:00] [Server thread/INFO]: [Denizen]  v1.1.5-SNAPSHOT (build 1713-REL) disabled.
[21:28:00] [Server thread/INFO]: [Bank] Disabling Bank v4.1.4-BETA
[21:28:00] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v2.18.2
[21:28:00] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[21:28:00] [Thread-24/INFO]: --------------------
[21:28:00] [Thread-24/INFO]: [CoreProtect] Version 19.1 is now available.
[21:28:00] [Thread-24/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[21:28:00] [Thread-24/INFO]: [CoreProtect] Sponsor: www.hosthorde.com
[21:28:00] [Thread-24/INFO]: --------------------
[21:28:01] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v2.18.2
[21:28:01] [Server thread/INFO]: [CraftBook] Disabling CraftBook v3.10.2;21180b0
[21:28:01] [Server thread/INFO]: [CraftBook] Saving persistent data to YAML!
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling BentoBox v1.13.1
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling addons...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling BSkyBlock...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling ControlPanel...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling Limits...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling Warps...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling Biomes...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling IslandFly...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling Likes...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling Level...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling Challenges...
[21:28:01] [Server thread/INFO]: [BentoBox] Disabling MagicCobblestoneGenerator...
[21:28:01] [Server thread/INFO]: [BentoBox] Addons successfully disabled.
[21:28:01] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.27-SNAPSHOT (build 2060)
[21:28:01] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.3;5407315
[21:28:01] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[21:28:01] [Server thread/INFO]: [PlotSquared] Disabling PlotSquared v5.13.0-Premium
[21:28:01] [Server thread/INFO]: [DynamicShop] Disabling DynamicShop v2.11.8
[21:28:01] [Server thread/INFO]: [DynamicShop] Disabled
[21:28:01] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.2.0-beta-01+0eb9ac7
[21:28:01] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[21:28:01] [Server thread/INFO]: [PluginHiderPlus] Disabling PluginHiderPlus v5.2
[21:28:01] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[21:28:01] [Server thread/INFO]: [WooMinecraft] Disabling WooMinecraft v1.2.0-1.14.4
[21:28:01] [Server thread/INFO]: [WooMinecraft] Commands Initialized
[21:28:01] [Server thread/INFO]: [AutomaticInventory] Disabling AutomaticInventory v2.10.1-a8f1fec
[21:28:01] [Server thread/INFO]: [AutomaticInventory] AutomaticInventory disabled.
[21:28:01] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.15
[21:28:01] [Server thread/INFO]: [LibsDisguises] Now saving disguises..
[21:28:01] [Server thread/INFO]: [LibsDisguises] Saved disguises.
[21:28:01] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v4.5.1
[21:28:01] [Server thread/INFO]: [Core] Disabling Core v0.2.5
[21:28:01] [Server thread/INFO]: ------------------------------
[21:28:01] [Server thread/INFO]: [Core] Disabling ServerPacketManager
[21:28:01] [Server thread/INFO]: ------------------------------
[21:28:01] [Server thread/INFO]: [Oh_the_dungeons_youll_go] Disabling Oh_the_dungeons_youll_go v5.3
[21:28:01] [Server thread/WARN]: [Oh The Dungeons You'll Go] Plugin is disabled
[21:28:01] [Server thread/INFO]: [MMOLib] Disabling MMOLib v1.2.6
[21:28:01] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.1.6
[21:28:01] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[21:28:01] [Server thread/INFO]: [MMOInventory] Disabling MMOInventory v1.2
[21:28:01] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.1.26
[21:28:01] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[21:28:01] [Server thread/INFO]: [LuckPerms] Closing storage...
[21:28:01] [Server thread/INFO]: [LuckPerms] Goodbye!
[21:28:02] [Server thread/INFO]: Saving players
[21:28:02] [Server thread/INFO]: Saving worlds
[21:28:02] [Server thread/INFO]: Saving chunks for level 'world'/minecraft:overworld
[21:28:03] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[21:28:03] [Server thread/INFO]: Saving chunks for level 'world_nether'/minecraft:the_nether
[21:28:04] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[21:28:04] [Server thread/INFO]: Saving chunks for level 'world_the_end'/minecraft:the_end
[21:28:04] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[21:28:04] [Server thread/INFO]: Saving chunks for level 'peaceful_world'/minecraft:peaceful_world
[21:28:04] [Server thread/INFO]: ThreadedAnvilChunkStorage (peaceful_world): All chunks are saved
[21:28:04] [Server thread/INFO]: Saving chunks for level 'bskyblock_world_nether'/minecraft:bskyblock_world_nether
[21:28:05] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[21:28:05] [Server thread/INFO]: Saving chunks for level 'survival_hub'/minecraft:survival_hub
[21:28:05] [Server thread/INFO]: ThreadedAnvilChunkStorage (survival_hub): All chunks are saved
[21:28:05] [Server thread/INFO]: Saving chunks for level 'normal_world_nether'/minecraft:normal_world_nether
[21:28:06] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[21:28:06] [Server thread/INFO]: Saving chunks for level 'bskyblock_world_the_end'/minecraft:bskyblock_world_the_end
[21:28:06] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[21:28:06] [Server thread/INFO]: Saving chunks for level 'BW_Clash'/minecraft:bw_clash
[21:28:06] [Server thread/INFO]: ThreadedAnvilChunkStorage (BW_Clash): All chunks are saved
[21:28:06] [Server thread/INFO]: Saving chunks for level 'creativeplots'/minecraft:creativeplots
[21:28:07] [Server thread/INFO]: ThreadedAnvilChunkStorage (creativeplots): All chunks are saved
[21:28:07] [Server thread/INFO]: Saving chunks for level 'void_world2'/minecraft:void_world2
[21:28:07] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[21:28:07] [Server thread/INFO]: Saving chunks for level 'server_hub'/minecraft:server_hub
[21:28:07] [Server thread/INFO]: ThreadedAnvilChunkStorage (server_hub): All chunks are saved
[21:28:07] [Server thread/INFO]: Saving chunks for level 'normal_world'/minecraft:normal_world
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (normal_world): All chunks are saved
[21:28:08] [Server thread/INFO]: Saving chunks for level 'bskyblock_world'/minecraft:bskyblock_world
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (bskyblock_world): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (peaceful_world): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (survival_hub): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (BW_Clash): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (creativeplots): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (server_hub): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (normal_world): All chunks are saved
[21:28:08] [Server thread/INFO]: ThreadedAnvilChunkStorage (bskyblock_world): All chunks are saved
[21:28:08] [Server thread/INFO]: Saving usercache.json
[21:28:08] [Server thread/INFO]: Flushing Chunk IO
[21:28:08] [Server thread/INFO]: Closing Thread Pool
[21:28:08] [Server thread/INFO]: Closing Server