Paste #109354: thelog

Date: 2023/04/29 21:10:07 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


[03:30:10] [ServerMain/INFO]: [MediaExtension] -----------------[ Dependency Loader ]-----------------
[03:30:10] [ServerMain/INFO]: [MediaExtension] 
[03:30:10] [ServerMain/INFO]: [MediaExtension] Loading 5 dependencies:
[03:30:10] [ServerMain/INFO]: [MediaExtension]   - org.bytedeco:javacpp:1.5.8:linux-arm64
[03:30:10] [ServerMain/INFO]: [MediaExtension]   - org.bytedeco:javacpp:1.5.8
[03:30:10] [ServerMain/INFO]: [MediaExtension]   - org.bytedeco:ffmpeg:5.1.2-1.5.8:linux-arm64
[03:30:10] [ServerMain/INFO]: [MediaExtension]   - org.bytedeco:ffmpeg:5.1.2-1.5.8
[03:30:10] [ServerMain/INFO]: [MediaExtension]   - org.bytedeco:javacv:1.5.8
[03:30:10] [ServerMain/INFO]: [MediaExtension] 
[03:30:10] [ServerMain/INFO]: [MediaExtension] Using 1 repositories:
[03:30:10] [ServerMain/INFO]: [MediaExtension]   - paper: https://repo.papermc.io/repository/maven-public/
[03:30:10] [ServerMain/INFO]: [MediaExtension] 
[03:30:10] [ServerMain/INFO]: [MediaExtension] -------------------------------------------------------
[03:30:12] [ServerMain/INFO]: Building unoptimized datafixer
[03:30:14] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[03:30:16] [ServerMain/INFO]: Loaded 7 recipes
[03:30:16] [Server thread/INFO]: Starting minecraft server version 1.19.3
[03:30:16] [Server thread/INFO]: Loading properties
[03:30:16] [Server thread/INFO]: This server is running Paper version git-Paper-448 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 155aa36)
[03:30:16] [Server thread/INFO]: Server Ping Player Sample Count: 12
[03:30:16] [Server thread/INFO]: Using 4 threads for Netty based IO
[03:30:16] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[03:30:17] [Server thread/INFO]: Default game type: SURVIVAL
[03:30:17] [Server thread/INFO]: Generating keypair
[03:30:17] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25567
[03:30:17] [Server thread/INFO]: Using epoll channel type
[03:30:17] [Server thread/INFO]: Paper: Using libdeflate (Linux aarch64) compression from Velocity.
[03:30:17] [Server thread/INFO]: Paper: Using OpenSSL (Linux aarch64) cipher from Velocity.
[03:30:17] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'NPC_Destinations' for files 'plugins/NPC_Destinations-2_6_15 (1).jar' and 'plugins/NPC_Destinations-2_6_15.jar' in 'plugins'
[03:30:17] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'NPCDestinations_Animator' for files 'plugins/Destinations-Animations-2.6.17.jar' and 'plugins/Destinations-Animations-2.6.17 (1).jar' in 'plugins'
[03:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [PluginPortal] Loading 2 libraries... please wait
[03:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [PluginPortal] Loaded library /home/ubuntu/.mc/2/libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
[03:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [PluginPortal] Loaded library /home/ubuntu/.mc/2/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[03:30:19] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[03:30:24] [Server thread/WARN]: Legacy plugin LoginSecurity v3.1.1 does not specify an api-version.
[03:30:24] [Server thread/WARN]: Legacy plugin MyRedeem v2.2.4.1 does not specify an api-version.
[03:30:24] [Server thread/WARN]: Legacy plugin CustomHeads v3.0.7 does not specify an api-version.
[03:30:25] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.6.2
[03:30:25] [Server thread/INFO]: [ViaVersion] ViaVersion 4.6.2 is now loaded. Registering protocol transformers and injecting...
[03:30:25] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[03:30:25] [Server thread/INFO]: [ViaBackwards] Loading translations...
[03:30:25] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[03:30:25] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[03:30:25] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.71
[03:30:26] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[03:30:26] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.2-SNAPSHOT-408;9f3c909
[03:30:27] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@1112e540]
[03:30:27] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[03:30:27] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-636
[03:30:28] [Server thread/INFO]: [Slimefun] Loading server plugin Slimefun vDEV - 1050 (git 22a7f422)
[03:30:28] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib
[03:30:32] [Server thread/INFO]: [SlimyTreeTaps] Loading server plugin SlimyTreeTaps vDEV - 20 (git 963f0383)
[03:30:32] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8-beta-01+cbb2ba7
[03:30:32] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.19.4-v1
[03:30:32] [Server thread/INFO]: [LiteXpansion] Loading server plugin LiteXpansion vDEV - 188 (git c0cb079e)
[03:30:32] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0-dev+56-fd49b70
[03:30:32] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.31-SNAPSHOT (build 3064)
[03:30:32] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.2.6-0819d467
[03:30:32] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[03:30:32] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.2.5.3
[03:30:32] [Server thread/INFO]: [ExoticGarden] Loading server plugin ExoticGarden vDEV - 78 (git 7f9a5f63)
[03:30:32] [Server thread/INFO]: [InfinityExpansion] Loading server plugin InfinityExpansion vDEV - 140 (git 0098d2fb)
[03:30:32] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.0-dev+56-fd49b70
[03:30:32] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[03:30:32] [Server thread/INFO]: [LightAPI] Loading server plugin LightAPI vbukkit-5.3.0 (build SNAPSHOT)
[03:30:32] [Server thread/INFO]: <LightAPI>: [INFO] Preparing LightAPI...
[03:30:32] [Server thread/INFO]: <LightAPI>: [INFO] Preparing done!
[03:30:32] [Server thread/INFO]: [SignLink] Loading server plugin SignLink v1.19.3-v1
[03:30:32] [Server thread/INFO]: [Quests] Loading server plugin Quests v4.8.1-b404
[03:30:32] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.1.2.2
[03:30:32] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.16.5
[03:30:33] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (319 ms).
[03:30:33] [Server thread/INFO]: [Shopkeepers] Loading config.
[03:30:33] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[03:30:33] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[03:30:33] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[03:30:33] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.6.1
[03:30:33] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.1
[03:30:33] [Server thread/INFO]: [TranscEndence] Loading server plugin TranscEndence vDEV - 41 (git 98d7d47e)
[03:30:33] [Server thread/INFO]: [DynaTech] Loading server plugin DynaTech vDEV - 194 (git 990c942e)
[03:30:33] [Server thread/INFO]: [Networks] Loading server plugin Networks vDEV - 46 (git 9368ce6b)
[03:30:33] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.1-SNAPSHOT
[03:30:33] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.6.0
[03:30:33] [Server thread/INFO]: [squaremap] Loading server plugin squaremap v1.1.13
[03:30:33] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.1
[03:30:33] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.2
[03:30:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[03:30:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[03:30:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[03:30:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'ViaVersion' to create a bStats instance!
[03:30:33] [Server thread/INFO]: [Train_Carts] Loading server plugin Train_Carts v1.19.4-v1
[03:30:33] [Thread-9/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[03:30:33] [Server thread/INFO]: [Train_Carts] 0 detector rail regions loaded covering 0 blocks
[03:30:33] [Server thread/INFO]: [NPC_Destinations] Loading server plugin NPC_Destinations v2.6.16
[03:30:33] [Server thread/INFO]: [BetonQuest] Loading server plugin BetonQuest v1.12.10
[03:30:33] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v2.0.3
[03:30:33] [Server thread/INFO]: [MapEngine] Loading server plugin MapEngine v1.4.7
[03:30:33] [Server thread/INFO]: [AureliumSkills] Loading server plugin AureliumSkills vBeta 1.3.19
[03:30:33] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[03:30:33] [Server thread/INFO]: [PluginPortal] Loading server plugin PluginPortal v1.2.4
[03:30:33] [Server thread/INFO]: [PrivateStorage] Loading server plugin PrivateStorage vDEV - 18 (git 5832db21)
[03:30:33] [Server thread/INFO]: [FluffyMachines] Loading server plugin FluffyMachines vDEV - 130 (git 01c839cc)
[03:30:33] [Server thread/INFO]: [NFCNotes] Loading server plugin NFCNotes v2.3.0
[03:30:33] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.0-dev+56-fd49b70
[03:30:33] [Server thread/INFO]: [ServersNPC] Loading server plugin ServersNPC v4.1
[03:30:33] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[03:30:33] [Server thread/INFO]: [FoxyMachines] Loading server plugin FoxyMachines vDEV - 62 (git ab78d44e)
[03:30:33] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.2
[03:30:33] [Server thread/INFO]: [LoginSecurity] Loading server plugin LoginSecurity v3.1.1
[03:30:33] [Server thread/INFO]: [SimpleUtils] Loading server plugin SimpleUtils vDEV - 15 (git 4250fd5e)
[03:30:33] [Server thread/INFO]: [SlimeTinker] Loading server plugin SlimeTinker vDEV - 79 (git fe7ea82b)
[03:30:33] [Server thread/INFO]: [FlowerPower] Loading server plugin FlowerPower vDEV - 15 (git 35662ced)
[03:30:33] [Server thread/INFO]: [MyRedeem] Loading server plugin MyRedeem v2.2.4.1
[03:30:33] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.0.9
[03:30:33] [Server thread/INFO]: [SpiritsUnchained] Loading server plugin SpiritsUnchained vDEV - 22 (git 28e031e0)
[03:30:33] [Server thread/INFO]: [JukeBox] Loading server plugin JukeBox v1.20.8
[03:30:33] [Server thread/INFO]: [ElectricSpawners] Loading server plugin ElectricSpawners vDEV - 23 (git 6ec96773)
[03:30:33] [Server thread/INFO]: [ExtraGear] Loading server plugin ExtraGear vDEV - 13 (git c62047e2)
[03:30:33] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.2.6.1
[03:30:33] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[03:30:33] [Server thread/INFO]: [SlimeHUD] Loading server plugin SlimeHUD vDEV - 10 (git 7d1c666b)
[03:30:33] [Server thread/INFO]: [CSL] Loading server plugin ChunkSpawnerLimiter v4.3.1
[03:30:33] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.52
[03:30:33] [Server thread/INFO]: [SimpleMaterialGenerators] Loading server plugin SimpleMaterialGenerators vDEV - 4 (git 5543cc8f)
[03:30:33] [Server thread/INFO]: [QuickShop] Loading server plugin QuickShop v5.1.2.0
[03:30:33] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Booting up
[03:30:34] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[03:30:34] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[03:30:34] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[03:30:34] [Server thread/INFO]: [QuickShop] Reading the configuration...
[03:30:34] [Server thread/INFO]: [QuickShop] Loading messages translation over-the-air (this may need take a while).
[03:30:34] [Server thread/INFO]: [QuickShop] Translation over-the-air platform selected: Crowdin
[03:30:34] [Server thread/INFO]: [QuickShop] Checking for translation updates, this may need a while...
[03:30:35] [Server thread/INFO]: [QuickShop] Loading up integration modules.
[03:30:35] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Complete
[03:30:35] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.0.346
[03:30:35] [Server thread/INFO]: [OpenAudioMc] Loading server plugin OpenAudioMc v6.8
[03:30:35] [Server thread/INFO]: [SlimefunLuckyBlocks] Loading server plugin SlimefunLuckyBlocks vDEV - 36 (git 60f0c8dc)
[03:30:35] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v14.2.10
[03:30:35] [Server thread/INFO]: [WorldEditSUI] Loading server plugin WorldEditSUI v1.7.2
[03:30:35] [Server thread/INFO]: [NPCDestinations_Animator] Loading server plugin NPCDestinations_Animator v2.6.17
[03:30:35] [Server thread/INFO]: [CustomAdvancements] Loading server plugin CustomAdvancements v1.2.8
[03:30:35] [Server thread/INFO]: [CustomHeads] Loading server plugin CustomHeads v3.0.7
[03:30:35] [Server thread/INFO]: [EcoPower] Loading server plugin EcoPower vDEV - 5 (git 5c1ecd68)
[03:30:35] [Server thread/INFO]: [HotbarPets] Loading server plugin HotbarPets vDEV - 38 (git fa6c871d)
[03:30:35] [Server thread/INFO]: [CitizensText] Loading server plugin CitizensText v1.2
[03:30:35] [Server thread/INFO]: [CustomStructures] Loading server plugin CustomStructures v1.9.0.1
[03:30:35] [Server thread/INFO]: [ExtraHeads] Loading server plugin ExtraHeads vDEV - 23 (git 0b59a770)
[03:30:35] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v1.1.2-SNAPSHOT
[03:30:35] [Server thread/INFO]: [FakeBlock] Loading server plugin FakeBlock v2.1.0-SNAPSHOT
[03:30:35] [Server thread/INFO]: [SoulJars] Loading server plugin SoulJars vDEV - 23 (git b8358a1f)
[03:30:35] [Server thread/INFO]: [CTCommons] Loading server plugin CTCommons v1.0-BETA2
[03:30:35] [Server thread/INFO]: [MapMediaExt] Loading server plugin MapMediaExt
[03:30:35] [Server thread/INFO]: [DyedBackpacks] Loading server plugin DyedBackpacks vDEV - 17 (git 8b329e96)
[03:30:35] [Server thread/INFO]: [MobCapturer] Loading server plugin MobCapturer vDEV - 26 (git e0f006c2)
[03:30:35] [Server thread/INFO]: [TreeAssist] Loading server plugin TreeAssist v7.3.39
[03:30:35] [Server thread/INFO]: [TreeAssist] Loading main config file: /config.yml
[03:30:35] [Server thread/WARN]: [TreeAssist] config.yml: Plugins.AureliumPerBlock expects double, integer given!
[03:30:35] [Server thread/WARN]: [TreeAssist] config.yml: Plugins.AureliumPerTree expects double, integer given!
[03:30:35] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.3
[03:30:35] [Server thread/INFO]: [StaffPlus] Loading server plugin StaffPlus v3.3.12.0
[03:30:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: staffplus [3.3.12.0]
[03:30:35] [Server thread/INFO]: Hooked into PlaceholderAPI 2.11.3
[03:30:35] [Server thread/INFO]: [ez-broadcast] Loading server plugin ez-broadcast v1.5
[03:30:35] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.7.3.0
[03:30:35] [Server thread/INFO]: [SFCalc] Loading server plugin SFCalc vDEV - 37 (git dfc0fc41)
[03:30:35] [Server thread/INFO]: [SimpleScore] Loading server plugin SimpleScore v3.12.2
[03:30:35] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.18.6.2
[03:30:35] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.8-2
[03:30:35] [Server thread/INFO]: [UltimateHomes] Loading server plugin UltimateHomes v2.6
[03:30:35] [Server thread/INFO]: [Supreme] Loading server plugin Supreme vDEV - 27 (git fd5a7a4f)
[03:30:35] [Server thread/INFO]: [Watson] Loading server plugin Watson v1.0.1
[03:30:35] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.23.1
[03:30:35] [Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.6.4
[03:30:35] [Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[03:30:35] [Server thread/INFO]: [BetterTeams] File is up to date
[03:30:35] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[03:30:35] [Server thread/INFO]: [CoreProtectTNT] Loading server plugin CoreProtectTNT v2.3.1
[03:30:35] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[03:30:35] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.71
[03:30:36] [Server thread/INFO]:         __    
[03:30:36] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.71
[03:30:36] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[03:30:36] [Server thread/INFO]: 
[03:30:36] [Server thread/INFO]: [LuckPerms] Loading configuration...
[03:30:37] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[03:30:37] [Server thread/WARN]: [LuckPerms] [DB Upgrade] Found an old (v1) H2 database file. LuckPerms will now attempt to upgrade it to v2 (this is a one time operation).
[03:30:37] [Server thread/INFO]: [LuckPerms] [DB Upgrade] Stage 1: Exporting the old database to an intermediary file...
[03:30:38] [Server thread/INFO]: [LuckPerms] [DB Upgrade] Stage 2: Importing the intermediary file into the new database...
[03:30:38] [Server thread/WARN]: [LuckPerms] Something went wrong whilst upgrading the LuckPerms database. Please report this on GitHub.
org.h2.jdbc.JdbcSQLSyntaxErrorException: Sequence "SYSTEM_SEQUENCE_82D45056_E168_4B95_8600_AD6DFE4DE7DA" already exists; SQL statement:
            
CREATE SEQUENCE "PUBLIC"."SYSTEM_SEQUENCE_82D45056_E168_4B95_8600_AD6DFE4DE7DA" START WITH 1 BELONGS_TO_TABLE [90035-214]
    at org.h2.message.DbException.getJdbcSQLException(DbException.java:632) ~[?:?]
    at org.h2.message.DbException.getJdbcSQLException(DbException.java:477) ~[?:?]
    at org.h2.message.DbException.get(DbException.java:223) ~[?:?]
    at org.h2.message.DbException.get(DbException.java:199) ~[?:?]
    at org.h2.command.ddl.CreateSequence.update(CreateSequence.java:53) ~[?:?]
    at org.h2.command.ddl.SchemaOwnerCommand.update(SchemaOwnerCommand.java:33) ~[?:?]
    at org.h2.command.CommandContainer.update(CommandContainer.java:169) ~[?:?]
    at org.h2.command.Command.executeUpdate(Command.java:252) ~[?:?]
    at org.h2.command.dml.RunScriptCommand.execute(RunScriptCommand.java:108) ~[?:?]
    at org.h2.command.dml.RunScriptCommand.update(RunScriptCommand.java:70) ~[?:?]
    at org.h2.command.CommandContainer.update(CommandContainer.java:169) ~[?:?]
    at org.h2.command.Command.executeUpdate(Command.java:252) ~[?:?]
    at org.h2.jdbc.JdbcStatement.executeInternal(JdbcStatement.java:252) ~[?:?]
    at org.h2.jdbc.JdbcStatement.execute(JdbcStatement.java:223) ~[?:?]
    at me.lucko.luckperms.common.storage.implementation.sql.connection.file.H2ConnectionFactory$MigrateH2ToVersion2.run(H2ConnectionFactory.java:138) ~[?:?]
    at me.lucko.luckperms.common.storage.implementation.sql.connection.file.H2ConnectionFactory.init(H2ConnectionFactory.java:68) ~[?:?]
    at me.lucko.luckperms.common.storage.implementation.sql.SqlStorage.init(SqlStorage.java:166) ~[?:?]
    at me.lucko.luckperms.common.storage.Storage.init(Storage.java:117) ~[?:?]
    at me.lucko.luckperms.common.storage.StorageFactory.getInstance(StorageFactory.java:88) ~[?:?]
    at me.lucko.luckperms.common.plugin.AbstractLuckPermsPlugin.enable(AbstractLuckPermsPlugin.java:186) ~[?:?]
    at me.lucko.luckperms.bukkit.LPBukkitBootstrap.onEnable(LPBukkitBootstrap.java:177) ~[?:?]
    at me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin.onEnable(BukkitLoaderPlugin.java:51) ~[LuckPerms-Bukkit-5.4.71.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[03:30:39] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[03:30:39] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[03:30:40] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4473ms)
[03:30:40] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.2-SNAPSHOT-408;9f3c909
[03:30:40] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[03:30:40] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[03:30:40] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[03:30:40] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[03:30:40] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightFaweAdapter as the Bukkit adapter
[03:30:41] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[03:30:41] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[03:30:41] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[03:30:41] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[03:30:41] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[03:30:41] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[03:30:41] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-636
[03:30:41] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib
[03:30:41] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paperspigot (git-Paper-448) : v1_19_R2 (Minecraft 1.19.3)
[03:30:41] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[03:30:42] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[03:30:43] [Server thread/INFO]: [BKCommonLib] Having an error? *gasp* Don't forget to file a ticket on github!
[03:30:43] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.19.4-v1 (build: 1547) enabled! (1.294s)
[03:30:43] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v2.0.3
[03:30:43] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.0.346
[03:30:43] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[03:30:43] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[03:30:43] [Server thread/INFO]: Preparing level "world"
[03:30:44] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[03:30:44] [Server thread/INFO]: Time elapsed: 140 ms
[03:30:44] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[03:30:44] [Server thread/INFO]: Time elapsed: 78 ms
[03:30:44] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[03:30:44] [Server thread/INFO]: Time elapsed: 68 ms
[03:30:44] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.6.2
[03:30:44] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[03:30:44] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[03:30:44] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[03:30:45] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[03:30:45] [Server thread/INFO]: [Slimefun] Enabling Slimefun vDEV - 1050 (git 22a7f422)
[03:30:45] [Server thread/INFO]: [Slimefun] Paper was detected! Performance optimizations have been applied.
[03:30:45] [Server thread/INFO]: [Slimefun] Creating directories...
[03:30:45] [Server thread/INFO]: [Slimefun] Loading language files...
[03:30:45] [Server thread/INFO]: [Slimefun] Loaded language "en"
[03:30:45] [Server thread/INFO]: [Slimefun] Available languages: en, de, fr, it, es, ru, pl, uk, sv, nl, da, cs, ro, bg, pt, pt-BR, hu, lv, sk, vi, id, zh-CN, zh-TW, ja, ko, he, ar, tr, fa, th, tl
[03:30:45] [Server thread/INFO]: [Slimefun] Starting Auto-Updater...
[03:30:45] [Server thread/INFO]: [Slimefun] Loading GEO-Resources...
[03:30:46] [Server thread/INFO]: [Slimefun] Loading Tags...
[03:30:46] [Server thread/INFO]: [Slimefun] Loading items...
[03:30:47] [Server thread/INFO]: [Slimefun] Loading researches...
[03:30:47] [Server thread/INFO]: [Slimefun] Loading Wiki pages...
[03:30:47] [Server thread/INFO]: [Slimefun] Registering listeners...
[03:30:47] [Server thread/INFO]: [Slimefun] Loading Third-Party plugin integrations...
[03:30:47] [Server thread/INFO]: [Slimefun] Hooked into Plugin: PlaceholderAPI v2.11.3
[03:30:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: slimefun [DEV - 1050 (git 22a7f422)]
[03:30:47] [Server thread/INFO]: [Slimefun] Hooked into Plugin: WorldEdit v2.6.2-SNAPSHOT-408;9f3c909
[03:30:47] [Server thread/INFO]: [Slimefun] Slimefun has finished loading in 1.88s
[03:30:47] [Server thread/INFO]: [SlimyTreeTaps] Enabling SlimyTreeTaps vDEV - 20 (git 963f0383)
[03:30:47] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7
[03:30:47] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[03:30:47] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[03:30:47] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[03:30:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[03:30:47] [Server thread/INFO]: [WorldGuard] Loading region data...
[03:30:47] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.19.4-v1
[03:30:48] [Server thread/INFO]: [My_Worlds] Loading world 'sky'
[03:30:48] [Server thread/INFO]: Preparing start region for dimension minecraft:sky
[03:30:48] [Server thread/INFO]: Time elapsed: 171 ms
[03:30:48] [Server thread/INFO]: [WorldGuard] (sky) TNT ignition is PERMITTED.
[03:30:48] [Server thread/INFO]: [WorldGuard] (sky) Lighters are PERMITTED.
[03:30:48] [Server thread/INFO]: [WorldGuard] (sky) Lava fire is PERMITTED.
[03:30:48] [Server thread/INFO]: [WorldGuard] (sky) Fire spread is UNRESTRICTED.
[03:30:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'sky'
[03:30:48] [Server thread/INFO]: [My_Worlds] Loading world 'evento' using chunk generator: ':minecraft:air;minecraft:the_void;nostructures'
[03:30:48] [Server thread/INFO]: Preparing start region for dimension minecraft:evento
[03:30:49] [Server thread/INFO]: Time elapsed: 354 ms
[03:30:49] [Server thread/INFO]: [WorldGuard] (evento) TNT ignition is PERMITTED.
[03:30:49] [Server thread/INFO]: [WorldGuard] (evento) Lighters are PERMITTED.
[03:30:49] [Server thread/INFO]: [WorldGuard] (evento) Lava fire is PERMITTED.
[03:30:49] [Server thread/INFO]: [WorldGuard] (evento) Fire spread is UNRESTRICTED.
[03:30:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'evento'
[03:30:49] [Server thread/INFO]: [My_Worlds] Loading world 'void'
[03:30:49] [Server thread/INFO]: Preparing start region for dimension minecraft:void
[03:30:49] [Server thread/INFO]: Time elapsed: 79 ms
[03:30:49] [Server thread/INFO]: [WorldGuard] (void) TNT ignition is PERMITTED.
[03:30:49] [Server thread/INFO]: [WorldGuard] (void) Lighters are PERMITTED.
[03:30:49] [Server thread/INFO]: [WorldGuard] (void) Lava fire is PERMITTED.
[03:30:49] [Server thread/INFO]: [WorldGuard] (void) Fire spread is UNRESTRICTED.
[03:30:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'void'
[03:30:49] [Server thread/INFO]: [My_Worlds] Loading world 'boss'
[03:30:49] [Server thread/INFO]: Preparing start region for dimension minecraft:boss
[03:30:50] [Server thread/INFO]: Time elapsed: 694 ms
[03:30:50] [Server thread/INFO]: [WorldGuard] (boss) TNT ignition is PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (boss) Lighters are PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (boss) Lava fire is PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (boss) Fire spread is UNRESTRICTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boss'
[03:30:50] [Server thread/INFO]: [My_Worlds] Loading world 'Lobby'
[03:30:50] [Server thread/INFO]: Preparing start region for dimension minecraft:lobby
[03:30:50] [Server thread/INFO]: Time elapsed: 61 ms
[03:30:50] [Server thread/INFO]: [WorldGuard] (Lobby) TNT ignition is PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (Lobby) Lighters are PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (Lobby) Lava fire is PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (Lobby) Fire spread is UNRESTRICTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Lobby'
[03:30:50] [Server thread/INFO]: [My_Worlds] Loading world 'city'
[03:30:50] [Server thread/INFO]: Preparing start region for dimension minecraft:city
[03:30:50] [Server thread/INFO]: Time elapsed: 71 ms
[03:30:50] [Server thread/INFO]: [WorldGuard] (city) TNT ignition is PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (city) Lighters are PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (city) Lava fire is PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (city) Fire spread is UNRESTRICTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'city'
[03:30:50] [Server thread/INFO]: [My_Worlds] Loading world 'dimensionalhome' using chunk generator: 'DynaTech'
[03:30:50] [Server thread/ERROR]: [My_Worlds] World 'dimensionalhome' could not be created because the chunk generator 'DynaTech' was not found!
[03:30:50] [Server thread/ERROR]: [My_Worlds] Failed to (pre)load world: dimensionalhome
[03:30:50] [Server thread/INFO]: [My_Worlds] Loading world 'welcome'
[03:30:50] [Server thread/INFO]: Preparing start region for dimension minecraft:welcome
[03:30:50] [Server thread/INFO]: Time elapsed: 12 ms
[03:30:50] [Server thread/INFO]: [WorldGuard] (welcome) TNT ignition is PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (welcome) Lighters are PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (welcome) Lava fire is PERMITTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] (welcome) Fire spread is UNRESTRICTED.
[03:30:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'welcome'
[03:30:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: myworlds [1.19.4-v1]
[03:30:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mw [1.19.4-v1]
[03:30:50] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[03:30:50] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.19.4-v1 (build: 225) enabled! (3.025s)
[03:30:50] [Server thread/INFO]: [LiteXpansion] Enabling LiteXpansion vDEV - 188 (git c0cb079e)
[03:30:51] [Server thread/INFO]: [LiteXpansion] Loaded 35 UU-Matter recipes
[03:30:51] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+56-fd49b70
[03:30:51] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[03:30:51] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[03:30:51] [Server thread/INFO]: [Essentials] No kits found to migrate.
[03:30:51] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[03:30:51] [Server thread/INFO]: [Essentials] Using locale en
[03:30:51] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[03:30:51] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[03:30:51] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[03:30:51] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[03:30:51] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 3064)
[03:30:51] [Server thread/INFO]: [Citizens] Loading external libraries
[03:30:52] [Server thread/ERROR]: [Citizens] v2.0.31-SNAPSHOT (build 3064) is not compatible with Minecraft v1_19_R2 - try upgrading Minecraft or Citizens. Disabling...
[03:30:52] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.31-SNAPSHOT (build 3064)
[03:30:52] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.6-0819d467
[03:30:52] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
[03:30:52] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[03:30:54] [Server thread/INFO]: [MythicMobs] Mythic GriefPrevention Support has been enabled!
[03:30:54] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[03:30:54] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[03:30:54] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[03:30:54] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[03:30:54] [Server thread/INFO]: [MythicMobs] Base directory /home/ubuntu/.mc/2/plugins/MythicMobs/SavedData
[03:30:54] [Server thread/INFO]: [MythicMobs] Module directory /home/ubuntu/.mc/2/plugins/MythicMobs/SavedData/worlds
[03:30:56] [Server thread/INFO]: [MythicMobs] Loading Packs...
[03:30:56] [Server thread/INFO]: [MythicMobs] Loading Items...
[03:30:56] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[03:30:56] [Server thread/INFO]: [MythicMobs] Loading Skills...
[03:30:56] [Server thread/WARN]: while parsing a block mapping
[03:30:56] [Server thread/WARN]:  in 'string', line 1, column 1:
[03:30:56] [Server thread/WARN]:     OrbitalTest:
[03:30:56] [Server thread/WARN]:     ^
[03:30:56] [Server thread/WARN]: expected <block end>, but found '-'
[03:30:56] [Server thread/WARN]:  in 'string', line 3, column 1:
[03:30:56] [Server thread/WARN]:     - effect:particleorbital{r=2;poi ... 
[03:30:56] [Server thread/WARN]:     ^
[03:30:56] [Server thread/WARN]: 
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:679)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:318)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.config.IOLoader.reloadCustomConfig(IOLoader.java:70)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.config.IOLoader.<init>(IOLoader.java:52)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.config.IOHandler.getSaveLoad(IOHandler.java:46)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:98)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:138)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[03:30:56] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[03:30:56] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[03:30:56] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[03:30:56] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[03:30:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[03:30:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[03:30:56] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:30:56] [Server thread/ERROR]: [MythicMobs] Cannot load plugins/MythicMobs/Skills/OrbitalTest.yml
[03:30:56] [Server thread/WARN]: io.lumine.mythic.bukkit.utils.config.InvalidConfigurationException: while parsing a block mapping
[03:30:56] [Server thread/WARN]:  in 'string', line 1, column 1:
[03:30:56] [Server thread/WARN]:     OrbitalTest:
[03:30:56] [Server thread/WARN]:     ^
[03:30:56] [Server thread/WARN]: expected <block end>, but found '-'
[03:30:56] [Server thread/WARN]:  in 'string', line 3, column 1:
[03:30:56] [Server thread/WARN]:     - effect:particleorbital{r=2;poi ... 
[03:30:56] [Server thread/WARN]:     ^
[03:30:56] [Server thread/WARN]: 
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.config.IOLoader.reloadCustomConfig(IOLoader.java:70)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.config.IOLoader.<init>(IOLoader.java:52)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.config.IOHandler.getSaveLoad(IOHandler.java:46)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:98)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:138)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[03:30:56] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[03:30:56] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[03:30:56] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[03:30:56] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[03:30:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[03:30:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[03:30:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[03:30:56] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:30:56] [Server thread/WARN]: Caused by: while parsing a block mapping
[03:30:56] [Server thread/WARN]:  in 'string', line 1, column 1:
[03:30:56] [Server thread/WARN]:     OrbitalTest:
[03:30:56] [Server thread/WARN]:     ^
[03:30:56] [Server thread/WARN]: expected <block end>, but found '-'
[03:30:56] [Server thread/WARN]:  in 'string', line 3, column 1:
[03:30:56] [Server thread/WARN]:     - effect:particleorbital{r=2;poi ... 
[03:30:56] [Server thread/WARN]:     ^
[03:30:56] [Server thread/WARN]: 
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:679)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:318)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[03:30:56] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[03:30:56] [Server thread/WARN]:     at MythicMobs-5.2.6.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[03:30:56] [Server thread/WARN]:     ... 22 more
[03:30:56] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '0.1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[03:30:56] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[03:30:56] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[03:30:56] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: SummonBombs | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/SummonBombs.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Bomb1;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: SummonBombs | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/SummonBombs.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Bomb2;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: SummonBombs | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/SummonBombs.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Bomb3;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: SummonBombs | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/SummonBombs.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Bomb4;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: SummonBeam | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/Laser.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=UnsatbleCore;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: SummonBeam | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/Laser.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=UnsatbleCore;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: SummonBeam | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/Laser.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=UnsatbleCore;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: SummonBeam | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/Laser.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=UnsatbleCore;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: CannonBomb | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/SummonCannons.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Cannon;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: CannonBomb | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/SummonCannons.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Cannon2;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: CannonBomb | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/SummonCannons.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Cannon3;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: CannonBomb | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/SummonCannons.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Cannon4;amount=1;noise=5}
[03:30:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Skill: SilverCon | File: /home/ubuntu/.mc/2/plugins/MythicMobs/Skills/SilverCon.yml
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[03:30:56] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SilverConstruct;amount=1;noise=5}
[03:30:56] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[03:30:56] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[03:30:56] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[03:30:56] [Server thread/INFO]: [MythicMobs] ✓ Loaded 39 skills.
[03:30:56] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[03:30:56] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mythic items.
[03:30:56] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[03:30:56] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[03:30:56] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[03:30:56] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[03:30:56] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.2.6 ( build 0819d467 ) has been successfully loaded!
[03:30:56] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.5.3
[03:30:57] [Server thread/INFO]: Server version: v1_19_R2 - 1.19.3 - paper
[03:30:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.5.3]
[03:30:57] [Server thread/INFO]: PlaceholderAPI hooked.
[03:30:57] [Server thread/INFO]: Updated (EN) language file. Took 31ms
[03:30:57] [Server thread/INFO]: [ExoticGarden] Enabling ExoticGarden vDEV - 78 (git 7f9a5f63)
[03:30:58] [Server thread/INFO]: [InfinityExpansion] Enabling InfinityExpansion vDEV - 140 (git 0098d2fb)
[03:30:58] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+56-fd49b70
[03:30:58] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[03:30:58] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[03:30:58] [Server thread/INFO]: [LightAPI] Enabling LightAPI vbukkit-5.3.0 (build SNAPSHOT)
[03:30:58] [Server thread/INFO]: <LightAPI>: [INFO] Initializing LightAPI...
[03:30:58] [Server thread/WARN]: java.lang.ClassNotFoundException: ru.beykerykt.minecraft.lightapi.bukkit.internal.handler.craftbukkit.nms.v1_19_R2.StarlightNMSHandler
[03:30:58] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183)
[03:30:58] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150)
[03:30:58] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[03:30:58] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[03:30:58] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:375)
[03:30:58] [Server thread/WARN]:     at LightAPI-Bukkit-5.3.0.jar//ru.beykerykt.minecraft.lightapi.bukkit.internal.handler.craftbukkit.HandlerFactory.createHandler(HandlerFactory.java:71)
[03:30:58] [Server thread/WARN]:     at LightAPI-Bukkit-5.3.0.jar//ru.beykerykt.minecraft.lightapi.bukkit.internal.BukkitPlatformImpl.initHandler(BukkitPlatformImpl.java:196)
[03:30:58] [Server thread/WARN]:     at LightAPI-Bukkit-5.3.0.jar//ru.beykerykt.minecraft.lightapi.bukkit.internal.BukkitPlatformImpl.initialization(BukkitPlatformImpl.java:228)
[03:30:58] [Server thread/WARN]:     at LightAPI-Bukkit-5.3.0.jar//ru.beykerykt.minecraft.lightapi.common.LightAPI.initialization(LightAPI.java:88)
[03:30:58] [Server thread/WARN]:     at LightAPI-Bukkit-5.3.0.jar//ru.beykerykt.minecraft.lightapi.bukkit.BukkitPlugin.onEnable(BukkitPlugin.java:70)
[03:30:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[03:30:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[03:30:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[03:30:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[03:30:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[03:30:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[03:30:58] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:30:58] [Server thread/WARN]: java.lang.IllegalStateException: Initialization failed! Code: -1
[03:30:58] [Server thread/WARN]:     at LightAPI-Bukkit-5.3.0.jar//ru.beykerykt.minecraft.lightapi.common.LightAPI.initialization(LightAPI.java:96)
[03:30:58] [Server thread/WARN]:     at LightAPI-Bukkit-5.3.0.jar//ru.beykerykt.minecraft.lightapi.bukkit.BukkitPlugin.onEnable(BukkitPlugin.java:70)
[03:30:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[03:30:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[03:30:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[03:30:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[03:30:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[03:30:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[03:30:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[03:30:58] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:30:58] [Server thread/INFO]: [LightAPI] Disabling LightAPI vbukkit-5.3.0 (build SNAPSHOT)
[03:30:58] [Server thread/INFO]: <LightAPI>: [INFO] Shutdown LightAPI...
[03:30:58] [Server thread/INFO]: [SignLink] Enabling SignLink v1.19.3-v1
[03:30:58] [pool-137-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[03:30:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: signlink [1.19.3-v1]
[03:30:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: sl [1.19.3-v1]
[03:30:59] [Server thread/INFO]: [SignLink] SignLink version 1.19.3-v1 (build: 76) enabled! (0.759s)
[03:30:59] [Server thread/INFO]: [Quests] Enabling Quests v4.8.1-b404
[03:30:59] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[03:30:59] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[03:30:59] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[03:30:59] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[03:30:59] [Server thread/INFO]: [Jobs] Enabling Jobs v5.1.2.2
[03:30:59] [Server thread/INFO]: ------------- Jobs -------------
[03:30:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.1.2.2]
[03:30:59] [Server thread/INFO]: PlaceholderAPI hooked.
[03:30:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[03:30:59] [Server thread/INFO]: Connected to database (SqLite)
[03:30:59] [Server thread/INFO]: Loaded 8 titles
[03:30:59] [Server thread/INFO]: Loaded 69 protected blocks timers
[03:30:59] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[03:30:59] [Server thread/INFO]: Loaded 1282 custom item names
[03:30:59] [Server thread/INFO]: Loaded 79 custom entity names
[03:30:59] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[03:30:59] [Server thread/INFO]: Loaded 38 custom enchant names
[03:30:59] [Server thread/INFO]: Loaded 21 custom enchant names
[03:30:59] [Server thread/INFO]: Loaded 16 custom color names
[03:30:59] [Server thread/INFO]: Loaded 4 shop items
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Miner
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Explorer
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Farmer
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Hunter
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Brewer
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Fisherman
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Digger
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Builder
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Crafter
[03:30:59] [Server thread/INFO]: Loaded 1 quests for Enchanter
[03:30:59] [Server thread/INFO]: Loaded 12 jobs
[03:30:59] [Server thread/INFO]: Loaded 0 boosted items
[03:30:59] [Server thread/INFO]: Loaded 67 furnace for reassigning.
[03:30:59] [Server thread/INFO]: Loaded 17 brewing for reassigning.
[03:30:59] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[03:30:59] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[03:30:59] [Server thread/INFO]: Preloaded 146 players data in 0.01
[03:30:59] [Server thread/INFO]: WorldGuard detected.
[03:30:59] [Server thread/INFO]: MythicMobs 5.x detected.
[03:30:59] [Server thread/INFO]: [Jobs] MythicMobs was found - Enabling capabilities.
[03:30:59] [Server thread/INFO]: Loading explorer data
[03:31:00] [Server thread/INFO]: Loaded explorer data (45358) in 240 ms
[03:31:00] [Server thread/INFO]: Plugin has been enabled successfully.
[03:31:00] [Server thread/INFO]: ------------------------------------
[03:31:00] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.5
[03:31:00] [Server thread/INFO]: [Shopkeepers] Loading the data of 1 shopkeepers ...
[03:31:00] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.6.1
[03:31:00] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.1
[03:31:00] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[03:31:00] [Server thread/INFO]: [TranscEndence] Enabling TranscEndence vDEV - 41 (git 98d7d47e)
[03:31:00] [Server thread/INFO]: [DynaTech] Enabling DynaTech vDEV - 194 (git 990c942e)
[03:31:00] [Server thread/INFO]: Preparing start region for dimension minecraft:dimensionalhome
[03:31:00] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Natural Community ⛏(952600053745328158)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:verify(1012761717136166912)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-0046(1078707169492475945)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-0047(1080161364900855898)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-0049(1081177749378568202)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:info-🎗(990219400055492618)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:welcomes-and-goodbyes(989889564426514462)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:muted-place(998542993235640330)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rules(952778160930451546)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcement-📢(1060575866008117329)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:events-🎉(1060578501025075282)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:faq-❔(1060804402098737162)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:reaction-roles-✅(954550123147431976)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:previews(1074217004371816459)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:giveaways-🌟(1060581376727973898)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:idea-n-discussion(1074551637118550087)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:poll(1060582494312857701)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bug-report📙(1076714318642565130)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ip-and-port(952604056814227506)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:slimy-adventure-🏡(1012764636451455087)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival-coming-soon-⚔(1031872870072205423)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:custom-survival(1080828435452149772)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:general-☕(1082956324326867064)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:shitpost-💀(999898717597487184)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot-commands-🔗(954545232123412512)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:dank-memer-🐸(1079716611415613561)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:truth-or-dare-🎯(1080463823644921906)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staffs-startpack(999297988600016927)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:uno-♾(1082077187768844348)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:create-ticket🔰(954750563784986714)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:discussion-🛞(952604273655545856)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:slimefun(975966831376465920)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:music-bot-🎶(954546065686802462)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-discussion(998681099649679370)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:our-shits(1037730908008099862)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival(954704239509262366)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:skyblock(971633233722744872)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:message-log(991261161410527312)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:member-events-log(991261211842854982)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:role-events-log(991261261771845683)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mod-event-log(991261384790769715)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:misc(991261603716661330)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-0050(1085214913137483846)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:qotd(1086628921837096990)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:qotd-questions(1086628978544091187)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:qotd-anwsers(1086629007858081822)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-channel(1089842347690430484)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:panel(1089842351851196477)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:parallel-fifths-🎼(1089968830190714972)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-0052(1094637625622663281)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:programming-discussion-☕(1096091521540948008)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:SlimeyBruh's server(1013084232987463680)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:general(1013084233566265376)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:slimefun(975966831376465920)
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[03:31:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[03:31:03] [Server thread/INFO]: Time elapsed: 2531 ms
[03:31:03] [Server thread/INFO]: [WorldGuard] (dimensionalhome) TNT ignition is PERMITTED.
[03:31:03] [Server thread/INFO]: [WorldGuard] (dimensionalhome) Lighters are PERMITTED.
[03:31:03] [Server thread/INFO]: [WorldGuard] (dimensionalhome) Lava fire is PERMITTED.
[03:31:03] [Server thread/INFO]: [WorldGuard] (dimensionalhome) Fire spread is UNRESTRICTED.
[03:31:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'dimensionalhome'
[03:31:03] [Server thread/INFO]: [Networks] Enabling Networks vDEV - 46 (git 9368ce6b)
[03:31:03] [Server thread/INFO]: [Networks] ########################################
[03:31:03] [Server thread/INFO]: [Networks]          Networks - By Sefiraat         
[03:31:03] [Server thread/INFO]: [Networks] ########################################
[03:31:03] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.1-SNAPSHOT
[03:31:03] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.6.0
[03:31:03] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[03:31:04] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[03:31:04] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[03:31:04] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[03:31:04] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[03:31:04] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[03:31:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [4.2.6.0]
[03:31:04] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[03:31:04] [Server thread/INFO]: [squaremap] Enabling squaremap v1.1.13
[03:31:04] [Server thread/ERROR]: [squaremap] 
**********************************************
** This squaremap jar is built for Minecraft 1.19.4.
** It cannot run in the current environment (Minecraft 1.19.3).
** Check for newer or older releases which are compatible with your Minecraft version
** at https://github.com/jpenilla/squaremap/releases. Keep in mind only the latest release
** of squaremap is officially supported.
**********************************************

[03:31:04] [Server thread/INFO]: [squaremap] Disabling squaremap v1.1.13
[03:31:04] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[03:31:04] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[03:31:04] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:73) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[03:31:04] [Server thread/INFO]: [GriefPrevention] 27 total claims loaded.
[03:31:04] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[03:31:04] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[03:31:04] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[03:31:04] [Server thread/INFO]: [GriefPrevention] Boot finished.
[03:31:04] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.2
[03:31:04] [Server thread/INFO]: [NBTAPI] Adding listeners...
[03:31:04] [Server thread/INFO]: [NBTAPI] Gson:
[03:31:04] [Server thread/INFO]: [NBTAPI] Checking bindings...
[03:31:04] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[03:31:04] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[03:31:04] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[03:31:04] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[03:31:04] [Server thread/INFO]: [Train_Carts] Enabling Train_Carts v1.19.4-v1
[03:31:07] [Server thread/INFO]: [Train_Carts] [Resource Pack Models] Loading resource pack item model lists
[03:31:08] [Server thread/INFO]: [Train_Carts] 9 Trains have been loaded in 3 worlds. (21 Minecarts)
[03:31:09] [Server thread/INFO]: [Train_Carts] Restoring trains and loading nearby chunks...
[03:31:09] [Server thread/INFO]: [Train_Carts] MyWorlds detected, support for portal sign train teleportation added!
[03:31:09] [Server thread/INFO]: [Train_Carts] SignLink detected, support for arrival signs added!
[03:31:09] [Server thread/INFO]: [Train_Carts] Train_Carts version 1.19.4-v1 (build: 1371) enabled! (4.784s)
[03:31:09] [Server thread/INFO]: [NPC_Destinations] Enabling NPC_Destinations v2.6.16
[03:31:09] [Server thread/ERROR]: Error occurred while enabling NPC_Destinations v2.6.16 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/ai/StuckAction
    at net.livecar.nuttyworks.npc_destinations.DestinationsPlugin.onEnable(DestinationsPlugin.java:181) ~[NPC_Destinations-2_6_15 (1).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.ai.StuckAction
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 13 more
[03:31:09] [Server thread/INFO]: [NPC_Destinations] Disabling NPC_Destinations v2.6.16
[03:31:09] [Server thread/INFO]: [BetonQuest] Enabling BetonQuest v1.12.10
[03:31:09] [Server thread/INFO]: [BetonQuest] Using SQLite for storing data!
[03:31:09] [Server thread/INFO]: [BetonQuest] Configuration up to date!
[03:31:09] [Server thread/INFO]: [BetonQuest] Hooking into PlaceholderAPI
[03:31:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betonquest [1.12.10]
[03:31:09] [Server thread/INFO]: [BetonQuest] Hooking into FastAsyncWorldEdit
[03:31:09] [Server thread/INFO]: [BetonQuest] Hooking into Vault
[03:31:09] [Server thread/INFO]: [BetonQuest] Hooking into ProtocolLib
[03:31:09] [Server thread/WARN]: [BetonQuest] Could not hook into ProtocolLib 5.0.0-SNAPSHOT-636! ProtocolLib version 5.0.0-SNAPSHOT-636 is not supported. Please install version 5.0.0-SNAPSHOT-b610!
[03:31:09] [Server thread/WARN]: [BetonQuest] BetonQuest will work correctly, except for that single integration. You can turn it off by setting 'hook.protocollib' to false in config.yml file.
[03:31:09] [Server thread/INFO]: [BetonQuest] Hooking into WorldGuard
[03:31:09] [Server thread/INFO]: [BetonQuest] Hooking into MythicMobs
[03:31:09] [Server thread/INFO]: [BetonQuest] Hooking into Quests
[03:31:09] [Server thread/INFO]: [BetonQuest] Hooking into Jobs
[03:31:09] [Server thread/INFO]: [BetonQuest] Registered Conditions [nujobs_canlevel,nujobs_hasjob,nujobs_jobfull,nujobs_joblevel]
[03:31:09] [Server thread/INFO]: [BetonQuest] Registered Events [nujobs_addexp,nujobs_addlevel,nujobs_dellevel,nujobs_joinjob,nujobs_leavejob,nujobs_setlevel]
[03:31:09] [Server thread/INFO]: [BetonQuest] Registered Objectives [nujobs_joinjob,nujobs_leavejob,nujobs_levelup,nujobs_payment]
[03:31:09] [Server thread/INFO]: [BetonQuest] Hooking into Shopkeepers
[03:31:09] [Server thread/INFO]: [BetonQuest] BetonQuest succesfully enabled!
[03:31:09] [Server thread/INFO]: [MapEngine] Enabling MapEngine v1.4.7
[03:31:10] [Server thread/INFO]: [MapEngine] Loaded color palette
[03:31:10] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.19
[03:31:10] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[03:31:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aureliumskills [Beta 1.3.19]
[03:31:10] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[03:31:10] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[03:31:10] [Server thread/INFO]: [AureliumSkills] Slimefun Support Enabled!
[03:31:10] [Server thread/INFO]: [AureliumSkills] Loaded 193 config options in 0 ms
[03:31:10] [Server thread/INFO]: [AureliumSkills] Loaded 303 sources and 10 tags in 8ms
[03:31:10] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[03:31:10] [Server thread/INFO]: [AureliumSkills] Loading languages...
[03:31:11] [Server thread/INFO]: [AureliumSkills] Loaded 15 languages in 1063ms
[03:31:11] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[03:31:11] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 2ms
[03:31:11] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[03:31:11] [Server thread/INFO]: [AureliumSkills] Loaded 32 loot entries in 4 pools and 2 tables
[03:31:11] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[03:31:11] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[03:31:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[03:31:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[03:31:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[03:31:11] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[03:31:11] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[03:31:11] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[03:31:11] [Server thread/INFO]: --------------------
[03:31:11] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[03:31:11] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[03:31:11] [Server thread/INFO]: --------------------
[03:31:11] [Server thread/INFO]: [PluginPortal] Enabling PluginPortal v1.2.4
[03:31:12] [Server thread/INFO]: [PrivateStorage] Enabling PrivateStorage vDEV - 18 (git 5832db21)
[03:31:12] [Server thread/INFO]: [FluffyMachines] Enabling FluffyMachines vDEV - 130 (git 01c839cc)
[03:31:12] [Server thread/INFO]: [FluffyMachines] Hi there! Want to share your server with the Slimefun community?
[03:31:12] [Server thread/INFO]: [FluffyMachines] Join the official Slimefun Discord server at https://discord.gg/slimefun
[03:31:12] [Server thread/INFO]: [NFCNotes] Enabling NFCNotes v2.3.0
[03:31:12] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+56-fd49b70
[03:31:12] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[03:31:12] [Server thread/INFO]: [ServersNPC] Enabling ServersNPC v4.1
[03:31:13] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] No cache found for: [net.minecraft.world.entity.monster.warden.EntityWarden]
[03:31:13] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] No cache found for: [net.minecraft.world.entity.monster.warden.EntityWarden] : []
[03:31:13] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] Skipping cache for [net.minecraft.world.entity.monster.warden.EntityWarden]
[03:31:13] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[03:31:13] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[03:31:13] [Server thread/INFO]: [spark] Starting background profiler...
[03:31:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.34]
[03:31:13] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[03:31:13] [Server thread/INFO]: [FoxyMachines] Enabling FoxyMachines vDEV - 62 (git ab78d44e)
[03:31:13] [Server thread/INFO]: [TAB] Enabling TAB v3.3.2
[03:31:13] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[03:31:13] [Server thread/INFO]: [TAB] Loaded NMS hook in 17ms
[03:31:13] [Server thread/INFO]: [TAB] Enabled in 58ms
[03:31:13] [Server thread/INFO]: [Train_Carts] TAB plugin detected, seats with nametag hidden will also hide TAB nametags
[03:31:13] [Server thread/INFO]: [LoginSecurity] Enabling LoginSecurity v3.1.1*
[03:31:13] [Server thread/INFO]: [LoginSecurity] Loading base translations from "en_us"
[03:31:13] [Server thread/INFO]: [LoginSecurity] Loading specified translations from "en_us"
[03:31:13] [Server thread/INFO]: [LoginSecurity] Registering commands...
[03:31:13] [Server thread/INFO]: [LoginSecurity] Registering listeners...
[03:31:14] [Server thread/INFO]: [LoginSecurity] Using 1.12+ map captcha renderer
[03:31:14] [Server thread/INFO]: [SimpleUtils] Enabling SimpleUtils vDEV - 15 (git 4250fd5e)
[03:31:14] [Server thread/INFO]: [SlimeTinker] Enabling SlimeTinker vDEV - 79 (git fe7ea82b)
[03:31:14] [Server thread/INFO]: [SlimeTinker] ########################################
[03:31:14] [Server thread/INFO]: [SlimeTinker]    Slime Tinker - Created by Sefiraat   
[03:31:14] [Server thread/INFO]: [SlimeTinker] ########################################
[03:31:14] [Server thread/INFO]: [SlimeTinker] [ACF] Enabled Asynchronous Tab Completion Support!
[03:31:14] [Server thread/INFO]: [FlowerPower] Enabling FlowerPower vDEV - 15 (git 35662ced)
[03:31:15] [Server thread/INFO]: [MyRedeem] Enabling MyRedeem v2.2.4.1*
[03:31:15] [Server thread/WARN]: [MyRedeem] Could not save messages.yml to plugins/MyRedeem/messages.yml because messages.yml already exists.
[03:31:15] [Server thread/WARN]: [MyRedeem] Could not save playerstats.yml to plugins/MyRedeem/playerstats.yml because playerstats.yml already exists.
[03:31:15] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.0.9
[03:31:15] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[03:31:15] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[03:31:15] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[03:31:15] [Server thread/INFO]: [ItemEdit] placeholders:
[03:31:15] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[03:31:15] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[03:31:15] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[03:31:15] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[03:31:15] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[03:31:15] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[03:31:15] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[03:31:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[03:31:15] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[03:31:15] [Server thread/INFO]: [ItemEdit] # Enabled (took 51 ms)
[03:31:15] [Server thread/INFO]: [SpiritsUnchained] Enabling SpiritsUnchained vDEV - 22 (git 28e031e0)
[03:31:15] [Server thread/INFO]: [SpiritsUnchained] ========================================
[03:31:15] [Server thread/INFO]: [SpiritsUnchained]     SpiritsUnchained - By JustAHuman    
[03:31:15] [Server thread/INFO]: [SpiritsUnchained] ========================================
[03:31:15] [Server thread/INFO]: [SpiritsUnchained] Loaded 69 Spirits!
[03:31:15] [Server thread/INFO]: [JukeBox] Enabling JukeBox v1.20.8
[03:31:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jukebox [1.20.8]
[03:31:15] [Server thread/INFO]: [JukeBox] Placeholders registered
[03:31:15] [Server thread/INFO]: [JukeBox] This JukeBox version requires NoteBlockAPI version 1.5.0 or more. Please ensure you have the right version before using JukeBox (you are using NBAPI ver. 1.6.1-SNAPSHOT)
[03:31:15] [Server thread/INFO]: [JukeBox] Loaded language file en.yml
[03:31:15] [Server thread/INFO]: [JukeBox] 16 songs loadeds. Sorting by name... 
[03:31:15] [Server thread/INFO]: [JukeBox] Songs sorted ! 16 songs. Number of pages : 1
[03:31:15] [Server thread/INFO]: [ElectricSpawners] Enabling ElectricSpawners vDEV - 23 (git 6ec96773)
[03:31:15] [Server thread/INFO]: [ExtraGear] Enabling ExtraGear vDEV - 13 (git c62047e2)
[03:31:15] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.6.1
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[03:31:16] [Server thread/INFO]: [InteractiveChat] Loading languages...
[03:31:16] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[03:31:16] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[03:31:16] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[03:31:16] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[03:31:16] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[03:31:16] [Server thread/INFO]: [SlimeHUD] Enabling SlimeHUD vDEV - 10 (git 7d1c666b)
[03:31:16] [Server thread/INFO]: [SlimeHUD] #=================================#
[03:31:16] [Server thread/INFO]: [SlimeHUD] #    SlimeHUD by SchnTgaiSpock    #
[03:31:16] [Server thread/INFO]: [SlimeHUD] #=================================#
[03:31:16] [Server thread/INFO]: [CSL] Enabling ChunkSpawnerLimiter v4.3.1
[03:31:16] [Server thread/INFO]: [CSL] [ACF] Enabled Asynchronous Tab Completion Support!
[03:31:16] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.52
[03:31:16] [Server thread/INFO]: [SimpleMaterialGenerators] Enabling SimpleMaterialGenerators vDEV - 4 (git 5543cc8f)
[03:31:16] [Server thread/INFO]: [QuickShop] Enabling QuickShop v5.1.2.0
[03:31:16] [Server thread/INFO]: [QuickShop] QuickShop Reremake
[03:31:16] [Server thread/INFO]: [QuickShop] Starting plugin self-test, please wait...
[03:31:16] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 2/2 guilds (0 cancelled)
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] Java Runtime Environment Version Test
[03:31:16] [Server thread/INFO]: [QuickShop] Running QuickShop-Reremake on NMS version v1_19_R2 For Minecraft version 1.19.3
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] Spigot Based Server Test
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] Old QuickShop Test
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] ModdedServer Based Test
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] CoreSupport Test
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] Virtual DisplayItem Support Test
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] GameVersion supporting Test
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] PacketListenerAPI Conflict Test
[03:31:16] [Server thread/INFO]: [QuickShop] [OK] End of life Test
[03:31:16] [Server thread/INFO]: [QuickShop] Reading the configuration...
[03:31:17] [Server thread/INFO]: [QuickShop] Developers: PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), jho5245, Ghost_chu, cakoyo, Ectabro, portlek, log4b0at, Andre601, deadman96385, Vlvxingze, DoctaEnkoda, Mgazul, TiaraRinne, sandtechnology, Starmism, Chris6ix, Rean Schwarzer, mart-r, raphtaliapt, Tim269, creatorfromhell, LoneDev6, judgetread, confuxeon, ibmibmibm, yannicklamprecht, PyvesB, PaulBGD, ORelio, JoschuaSchneider, Starmium, harry0198, efekurbann, tdiant
[03:31:17] [Server thread/INFO]: [QuickShop] Original author: Netherfoam, Timtower, KaiNoMood
[03:31:17] [Server thread/INFO]: [QuickShop] Let's start loading the plugin
[03:31:17] [Server thread/INFO]: [QuickShop] Chat processor selected: Hardcoded BungeeChat Lib
[03:31:17] [Server thread/INFO]: [QuickShop] Loading plugin translations files...
[03:31:17] [Server thread/INFO]: [QuickShop] Game assets server selected: Mojang API
[03:31:17] [Server thread/INFO]: [QuickShop] Loading items translations...
[03:31:17] [Server thread/INFO]: [QuickShop] Loading enchantments translations...
[03:31:17] [Server thread/INFO]: [QuickShop] Loading potions translations...
[03:31:17] [Server thread/INFO]: [QuickShop] Successfully loaded PlaceHolderAPI support!
[03:31:17] [Server thread/INFO]: [QuickShop] Successfully loaded WorldEdit support!
[03:31:17] [Server thread/WARN]: [QuickShop] You're using Real Display system and that may cause your server lagg, switch to Virtual Display system if you can!
[03:31:17] [Server thread/INFO]: [QuickShop] Setting up database...
[03:31:17] [Server thread/INFO]: [QuickShop] Checking and updating database columns, it may take a while...
[03:31:17] [Server thread/INFO]: [QuickShop] Finished!
[03:31:17] [Server thread/INFO]: [QuickShop] Selected permission provider: Bukkit
[03:31:17] [Server thread/INFO]: [QuickShop] Registering commands...
[03:31:17] [Server thread/INFO]: [QuickShop] Loaded 1 rules for listener blacklist.
[03:31:17] [Server thread/INFO]: [QuickShop] EventManager selected: QSEventManager
[03:31:17] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
[03:31:17] [Server thread/INFO]: [QuickShop] Loading shops from the database...
[03:31:17] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
[03:31:17] [Server thread/INFO]: [QuickShop] Total           shops: 0
[03:31:17] [Server thread/INFO]: [QuickShop] Valid           shops: 0
[03:31:17] [Server thread/INFO]: [QuickShop] Pending              : 0
[03:31:17] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
[03:31:17] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 0
[03:31:17] [Server thread/INFO]: [QuickShop] Done! Used 1ms to loaded shops in database.
[03:31:17] [Server thread/INFO]: [QuickShop] Registering listeners...
[03:31:17] [Server thread/INFO]: [QuickShop] Registering DisplayCheck task....
[03:31:17] [Server thread/INFO]: [QuickShop] Cleaning MsgUtils...
[03:31:17] [Server thread/INFO]: [QuickShop] Cleaning purchase messages from the database that are over a week old...
[03:31:17] [Server thread/INFO]: [QuickShop] Log actions is enabled, actions will log in the qs.log file!
[03:31:17] [Server thread/INFO]: [QuickShop] [Shop Purger] Purge not enabled!
[03:31:17] [Server thread/INFO]: [QuickShop] QuickShop Loaded! 897 ms.
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.8
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Initializing build 801 by Mats
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Skipped 31/31 migrations.
[03:31:17] [Server thread/INFO]: [OpenAudioMc] ModuleLoaderService: Loading modules from /home/ubuntu/.mc/2/plugins/OpenAudioMc/modules
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Initializing socket connector
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Starting authentication module
[03:31:17] [Server thread/INFO]: [OpenAudioMc] This server already has an account, skipping sign up.
[03:31:17] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Adding spigot tables
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Alias
[03:31:17] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (alias<->Alias.java)
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Registering storage table for ClientDataStore
[03:31:17] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MojangProfile
[03:31:17] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Registering storage table for RegionProperties
[03:31:17] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Speaker
[03:31:17] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Registering storage table for StoredWorldChunk
[03:31:17] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Registering storage table for TimedRegionProperties
[03:31:17] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MediaRule
[03:31:17] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
[03:31:17] [Server thread/INFO]: [OpenAudioMc] Initializing account details
[03:31:18] [Server thread/INFO]: [OpenAudioMc] The server is empty! ignoring voice chat.
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Loading aliases...
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Loaded 1 aliases
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Detected version type: MODERN
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Enabling the 1.13 speaker system
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Plugin Essentials is already enabled, running handler
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Plugin WorldGuard is already enabled, running handler
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Turns out you have WorldGuard installed! enabling regions and the region tasks..
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Enabling the newer 1.13 regions
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Plugin Train_Carts is already enabled, running handler
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Plugin PlaceholderAPI is already enabled, running handler
[03:31:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oa [1.0.0]
[03:31:18] [Server thread/INFO]: [OpenAudioMc] CDN is disabled, skipping boot
[03:31:18] [Server thread/INFO]: [OpenAudioMc] Starting and loading took 53243MS
[03:31:18] [Server thread/INFO]: [SlimefunLuckyBlocks] Enabling SlimefunLuckyBlocks vDEV - 36 (git 60f0c8dc)
[03:31:18] [Server thread/INFO]: [SlimefunLuckyBlocks] Loaded 51 different Surprises!
[03:31:18] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.10
[03:31:18] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_19_R2, using MappingSpigotSkinRefresher.
[03:31:18] [Server thread/INFO]: [SkinsRestorer] [ACF] Enabled Asynchronous Tab Completion Support!
[03:31:18] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[03:31:18] [Server thread/INFO]: [WorldEditSUI] Enabling WorldEditSUI v1.7.2
[03:31:18] [Server thread/INFO]: [WorldEditSUI] Plugin by kennytv
[03:31:18] [Server thread/INFO]: [NPCDestinations_Animator] Enabling NPCDestinations_Animator v2.6.17
[03:31:18] [Server thread/INFO]: [NPCDestinations_Animator] NPCDestinations was found, but was disabled. Not registering as plugin
[03:31:18] [Server thread/INFO]: [NPCDestinations_Animator] Disabling NPCDestinations_Animator v2.6.17
[03:31:18] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling NPCDestinations_Animator v2.6.17 (Is it up to date?)
java.lang.NoClassDefFoundError: net/livecar/nuttyworks/npc_destinations/plugins/DestinationsAddon
    at net.livecar.nuttyworks.destinations_animations.DestAnimations_Plugin.onDisable(DestAnimations_Plugin.java:19) ~[Destinations-Animations-2.6.17.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:227) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.livecar.nuttyworks.destinations_animations.DestAnimations_Plugin.onEnable(DestAnimations_Plugin.java:39) ~[Destinations-Animations-2.6.17.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.livecar.nuttyworks.npc_destinations.plugins.DestinationsAddon
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 18 more
[03:31:18] [Server thread/INFO]: [CustomAdvancements] Enabling CustomAdvancements v1.2.8
[03:31:18] [Server thread/INFO]: [CustomAdvancements] Loading CustomAdvancements messages.yml
[03:31:18] [Server thread/INFO]: [CustomAdvancements] Progress per packet is now 5
[03:31:18] [Server thread/INFO]: [CustomAdvancements] Advancements per packet is now 5
[03:31:18] [Server thread/INFO]: [CustomAdvancements] Attempting to load advancement tree example.yml
[03:31:18] [Server thread/INFO]: [CustomAdvancements] Loaded advancement tree example.yml
[03:31:18] [Server thread/INFO]: [CustomAdvancements] Enabled successfully
[03:31:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: customadvancements [1.2.8]
[03:31:18] [Server thread/INFO]: [CustomAdvancements] Hooked into PlaceholderAPI
[03:31:18] [Server thread/INFO]: [CustomAdvancements] Loading NMS Advancements...
[03:31:18] [ForkJoinPool.commonPool-worker-3/INFO]: [CustomAdvancements] Advancements Loaded! Sending it to all online players.
[03:31:18] [Server thread/INFO]: [CustomHeads] Enabling CustomHeads v3.0.7*
[03:31:18] [Server thread/INFO]: [CustomHeads] Using LATEST as Version Handler
[03:31:18] [Server thread/INFO]: [CustomHeads] Warning : Hrm. Seems like CustomHeads wasn't tested on this Minecraft Version (v1_19_R2) yet...
[03:31:18] [Server thread/INFO]: [CustomHeads] Warning : Feel free to join my Discord to know when it gets updated
[03:31:19] [Server thread/INFO]: [EcoPower] Enabling EcoPower vDEV - 5 (git 5c1ecd68)
[03:31:19] [Server thread/INFO]: [HotbarPets] Enabling HotbarPets vDEV - 38 (git fa6c871d)
[03:31:19] [Server thread/INFO]: [CitizensText] Enabling CitizensText v1.2
[03:31:19] [Server thread/INFO]: [CitizensText] PlaceholderAPI hooked !
[03:31:19] [Server thread/INFO]: [CustomStructures] Enabling CustomStructures v1.9.0.1
[03:31:19] [Server thread/INFO]: [CustomStructures] Placeholder API found, placeholders supported.
[03:31:19] [Server thread/INFO]: [CustomStructures] Citizens detected! Activating plugin hook!
[03:31:19] [Server thread/INFO]: [CustomStructures] MythicMobs detected! Activating plugin hook!
[03:31:19] [Server thread/INFO]: [CustomStructures] Bstat metrics for this plugin is enabled. Disable it in the config if you do not want it on.
[03:31:19] [Server thread/INFO]: [ExtraHeads] Enabling ExtraHeads vDEV - 23 (git 0b59a770)
[03:31:19] [Server thread/ERROR]: Error occurred while enabling ExtraHeads vDEV - 23 (git 0b59a770) (Is it up to date?)
java.lang.NoSuchFieldError: MINECRAFT_1_14
    at io.github.thebusybiscuit.extraheads.ExtraHeads.onEnable(ExtraHeads.java:91) ~[ExtraHeads - DEV 23 (git 0b59a).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[03:31:19] [Server thread/INFO]: [ExtraHeads] Disabling ExtraHeads vDEV - 23 (git 0b59a770)
[03:31:19] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.1.2-SNAPSHOT
[03:31:19] [Server thread/INFO]: [DungeonParties] Loading server plugin DungeonParties v1.0-SNAPSHOT
[03:31:19] [Server thread/INFO]: [DungeonParties] Enabling DungeonParties v1.0-SNAPSHOT
[03:31:19] [Server thread/INFO]: [MythicDungeons] [STDOUT] DungeonParties plugin found! Enabled party support.
[03:31:19] [Server thread/WARN]: Nag author(s): '[MarcatoSound]' of 'MythicDungeons' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[03:31:19] [Server thread/INFO]: [MythicDungeons] [STDOUT] MythicMobs plugin found! Enabled MythicMobs support.
[03:31:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: md [1.1.2]
[03:31:19] [Server thread/ERROR]: Error occurred while enabling MythicDungeons v1.1.2-SNAPSHOT (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/Citizens
    at net.playavalon.mythicdungeons.MythicDungeons.onEnable(MythicDungeons.java:284) ~[MythicDungeons-1.1.2-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.Citizens
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 13 more
[03:31:19] [Server thread/INFO]: [MythicDungeons] Disabling MythicDungeons v1.1.2-SNAPSHOT
[03:31:19] [Server thread/INFO]: [MythicDungeons] [STDOUT] Cleaning up dungeons...
[03:31:19] [Server thread/INFO]: [FakeBlock] Enabling FakeBlock v2.1.0-SNAPSHOT
[03:31:19] [Server thread/INFO]: [FakeBlock] [ACF] Enabled Asynchronous Tab Completion Support!
[03:31:19] [Server thread/INFO]: [SoulJars] Enabling SoulJars vDEV - 23 (git b8358a1f)
[03:31:19] [Server thread/ERROR]: [SoulJars] IllegalArgumentException: Possibly invalid mob type: PIG_ZOMBIE
[03:31:19] [Server thread/INFO]: [CTCommons] Enabling CTCommons v1.0-BETA2
[03:31:19] [Server thread/INFO]: [CTCommons] CTCommons v1.0-BETA2 (24) enabled.
[03:31:19] [Server thread/INFO]: [MapMediaExt] Enabling MapMediaExt
[03:31:19] [Server thread/INFO]: [DyedBackpacks] Enabling DyedBackpacks vDEV - 17 (git 8b329e96)
[03:31:19] [Server thread/INFO]: [MobCapturer] Enabling MobCapturer vDEV - 26 (git e0f006c2)
[03:31:20] [Server thread/INFO]: [TreeAssist] Enabling TreeAssist v7.3.39
[03:31:20] [Server thread/INFO]: [TreeAssist] sending full Metrics! You can deactivate this in the config.yml
[03:31:20] [Server thread/INFO]: [TreeAssist] debugging: off
[03:31:20] [Thread-36/INFO]: [TreeAssist] Checking for updates...
[03:31:20] [Server thread/INFO]: [GSit] Enabling GSit v1.4.3
[03:31:20] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[03:31:20] [Server thread/INFO]: [GSit] Link with GriefPrevention successful!
[03:31:20] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[03:31:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.4.3]
[03:31:20] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[03:31:20] [Server thread/INFO]: [StaffPlus] Enabling StaffPlus v3.3.12.0
[03:31:20] [Server thread/INFO]: [Staff+] Version protocol set to 'v1_19_R2'.
[03:31:20] [Server thread/INFO]: [Staff+] Staff+ has been enabled! Initialization took 58ms.
[03:31:20] [Server thread/INFO]: [Staff+] Plugin created by Shortninja continued by Qball.
[03:31:20] [Server thread/INFO]: [ez-broadcast] Enabling ez-broadcast v1.5
[03:31:20] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.7.3.0
[03:31:20] [Server thread/INFO]: [ImageFrame] ImageFrame has hooked into ViaVersion!
[03:31:20] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[03:31:20] [Server thread/INFO]: [SFCalc] Enabling SFCalc vDEV - 37 (git dfc0fc41)
[03:31:20] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.2
[03:31:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SimpleScore [3.12.2]
[03:31:20] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.18.6.2
[03:31:20] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.6.2 Plugin Loading...
[03:31:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: commandpanels [1.0.0]
[03:31:20] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.6.2 Plugin Loaded!
[03:31:20] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.8-2
[03:31:20] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[03:31:20] [Server thread/INFO]: [BetterRTP] Loading Overrides...
[03:31:20] [Server thread/INFO]: [BetterRTP] Loading World Types...
[03:31:20] [Server thread/INFO]: [BetterRTP] - World Type for 'world' set to 'NORMAL'
[03:31:20] [Server thread/INFO]: [BetterRTP] - World Type for 'world_nether' set to 'NETHER'
[03:31:20] [Server thread/INFO]: [BetterRTP] - World Type for 'world_the_end' set to 'NORMAL'
[03:31:20] [Server thread/INFO]: [BetterRTP] Loading Defaults...
[03:31:20] [Server thread/INFO]: [BetterRTP] Loading Custom Worlds...
[03:31:20] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'custom_world_1' was not registered because world does NOT exist
[03:31:20] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'other_custom_world' was not registered because world does NOT exist
[03:31:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.8-2]
[03:31:20] [Server thread/INFO]: [UltimateHomes] Enabling UltimateHomes v2.6
[03:31:20] [Server thread/INFO]: 
[03:31:20] [Server thread/INFO]: --------------------------------------
[03:31:20] [Server thread/INFO]:        UltimateHomes by kixmc
[03:31:20] [Server thread/INFO]:        Enabled on version 2.6
[03:31:20] [Server thread/INFO]: --------------------------------------
[03:31:20] [Server thread/INFO]:  
[03:31:20] [Server thread/INFO]: [Supreme] Enabling Supreme vDEV - 27 (git fd5a7a4f)
[03:31:20] [Server thread/INFO]: [Supreme] ########################################
[03:31:20] [Server thread/INFO]: [Supreme]       Supreme 2.0  - By RelativoBR      
[03:31:20] [Server thread/INFO]: [Supreme] ########################################
[03:31:21] [Server thread/INFO]: [Supreme] Auto Update: enable
[03:31:21] [Server thread/INFO]: [Supreme] Loaded language Supreme: en-US
[03:31:21] [Server thread/INFO]: [Supreme] Legacy SupremeExpansion IDs: disable
[03:31:21] [Server thread/INFO]: [Watson] Enabling Watson v1.0.1
[03:31:21] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.23.1
[03:31:21] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[03:31:22] [Server thread/INFO]: [PlayerWarps] Found 22 config files to load!
[03:31:22] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[03:31:22] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[03:31:22] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[03:31:22] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[03:31:23] [ForkJoinPool.commonPool-worker-1/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[03:31:23] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[03:31:23] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[03:31:23] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[03:31:23] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.6.4
[03:31:23] [Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[03:31:23] [Server thread/INFO]: [BetterTeams] File is up to date
[03:31:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterTeams [4.6.4]
[03:31:23] [Server thread/INFO]: Display team name config value: prefix
[03:31:23] [Server thread/INFO]: Loading below name. Type: PREFIX
[03:31:23] [Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@22715783
[03:31:23] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[03:31:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[03:31:23] [Server thread/INFO]: [CoreProtectTNT] Enabling CoreProtectTNT v2.3.1
[03:31:24] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[03:31:24] [Server thread/INFO]: 0 placeholder hook(s) registered!
[03:31:24] [Server thread/INFO]: Running delayed init tasks
[03:31:24] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[03:31:24] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[03:31:24] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[03:31:24] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[03:31:24] [Craft Scheduler Thread - 5 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[03:31:24] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[03:31:24] [Craft Scheduler Thread - 13 - ExoticGarden/INFO]: [ExoticGarden] ExoticGarden is already up to date!
[03:31:24] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loaded 2 holograms!
[03:31:24] [Craft Scheduler Thread - 4 - InfinityExpansion/INFO]: [InfinityExpansion] InfinityExpansion is already up to date!
[03:31:24] [Craft Scheduler Thread - 14 - TranscEndence/INFO]: [TranscEndence] TranscEndence is already up to date!
[03:31:24] [Craft Scheduler Thread - 13 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[03:31:24] [Craft Scheduler Thread - 9 - Essentials/INFO]: [Essentials] Fetching version information...
[03:31:24] [Craft Scheduler Thread - 4 - DynaTech/INFO]: [DynaTech] DynaTech is already up to date!
[03:31:24] [Craft Scheduler Thread - 5 - SlimyTreeTaps/INFO]: [SlimyTreeTaps] SlimyTreeTaps is already up to date!
[03:31:24] [Craft Scheduler Thread - 11 - FoxyMachines/INFO]: [FoxyMachines] FoxyMachines is already up to date!
[03:31:24] [Craft Scheduler Thread - 4 - FluffyMachines/INFO]: [FluffyMachines] FluffyMachines is already up to date!
[03:31:24] [Craft Scheduler Thread - 19 - MapEngine/INFO]: [MapEngine] Checking for updates...
[03:31:24] [Craft Scheduler Thread - 18 - PrivateStorage/INFO]: [PrivateStorage] PrivateStorage is already up to date!
[03:31:24] [Craft Scheduler Thread - 17 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[03:31:24] [Craft Scheduler Thread - 11 - ElectricSpawners/INFO]: [ElectricSpawners] ElectricSpawners is already up to date!
[03:31:24] [Craft Scheduler Thread - 22 - FlowerPower/INFO]: [FlowerPower] FlowerPower is already up to date!
[03:31:24] [Craft Scheduler Thread - 23 - ExtraGear/INFO]: [ExtraGear] ExtraGear is already up to date!
[03:31:24] [Craft Scheduler Thread - 21 - SimpleUtils/INFO]: [SimpleUtils] SimpleUtils is already up to date!
[03:31:24] [Craft Scheduler Thread - 14 - Networks/INFO]: [Networks] Networks is already up to date!
[03:31:24] [Craft Scheduler Thread - 17 - HotbarPets/INFO]: [HotbarPets] HotbarPets is already up to date!
[03:31:24] [Craft Scheduler Thread - 21 - EcoPower/INFO]: [EcoPower] EcoPower is already up to date!
[03:31:24] [Craft Scheduler Thread - 10 - LiteXpansion/INFO]: [LiteXpansion] LiteXpansion is already up to date!
[03:31:24] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[03:31:24] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlueSlimeCore'.
[03:31:24] [Craft Scheduler Thread - 32 - CTCommons/WARN]: [CTCommons] Plugin CTCommons v1.0-BETA2 generated an exception while executing task 276
java.lang.ClassCastException: class java.lang.Integer cannot be cast to class java.lang.String (java.lang.Integer and java.lang.String are in module java.base of loader 'bootstrap')
    at de.crafttogether.common.update.UpdateChecker.checkUpdatesSync(UpdateChecker.java:62) ~[CTCommons-1.0-BETA2-24 (1).jar:?]
    at de.crafttogether.common.update.UpdateChecker.lambda$checkUpdatesAsync$0(UpdateChecker.java:40) ~[CTCommons-1.0-BETA2-24 (1).jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.3.jar:git-Paper-448]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.3.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[03:31:24] [Craft Scheduler Thread - 14 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[03:31:24] [Craft Scheduler Thread - 28 - SlimefunLuckyBlocks/INFO]: [SlimefunLuckyBlocks] SlimefunLuckyBlocks is already up to date!
[03:31:24] [Craft Scheduler Thread - 6 - MobCapturer/INFO]: [MobCapturer] MobCapturer is already up to date!
[03:31:24] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Loading ImageMap ID 1
[03:31:24] [Craft Scheduler Thread - 20 - SlimeTinker/INFO]: [SlimeTinker] SlimeTinker is already up to date!
[03:31:24] [Craft Scheduler Thread - 26 - Supreme/INFO]: [Supreme] Supreme is already up to date!
[03:31:24] [Craft Scheduler Thread - 28 - BetterRTP/INFO]: [BetterRTP] Database PLAYERS:Players configured and loaded!
[03:31:24] [Craft Scheduler Thread - 10 - Vault/INFO]: [Vault] Checking for Updates ... 
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world configured and loaded!
[03:31:24] [Craft Scheduler Thread - 37 - BetterRTP/INFO]: [BetterRTP] Database QUEUE:Queue configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world_nether configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world_the_end configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:sky configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:evento configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:void configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:boss configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Lobby configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:city configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:welcome configured and loaded!
[03:31:24] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:dimensionalhome configured and loaded!
[03:31:24] [Craft Scheduler Thread - 36 - BetterRTP/INFO]: [BetterRTP] Database CHUNK_DATA:ChunkData configured and loaded!
[03:31:24] [Craft Scheduler Thread - 18 - SlimeHUD/INFO]: [SlimeHUD] SlimeHUD is already up to date!
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer]     |  Standalone Mode |
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 14.2.10
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[03:31:24] [Craft Scheduler Thread - 27 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[03:31:24] [Craft Scheduler Thread - 7 - SpiritsUnchained/INFO]: [SpiritsUnchained] SpiritsUnchained is already up to date!
[03:31:24] [Craft Scheduler Thread - 5 - SimpleMaterialGenerators/INFO]: [SimpleMaterialGenerators] SimpleMaterialGenerators is already up to date!
[03:31:24] [Craft Scheduler Thread - 8 - Slimefun/INFO]: [Slimefun] Slimefun is already up to date!
[03:31:24] [Craft Scheduler Thread - 17 - SoulJars/INFO]: [SoulJars] SoulJars is already up to date!
[03:31:24] [Craft Scheduler Thread - 10 - Vault/INFO]: [Vault] No new version available
[03:31:24] [Craft Scheduler Thread - 21 - SFCalc/INFO]: [SFCalc] SFCalc is already up to date!
[03:31:24] [Craft Scheduler Thread - 12 - DyedBackpacks/INFO]: [DyedBackpacks] DyedBackpacks is already up to date!
[03:31:24] [Craft Scheduler Thread - 22 - StaffPlus/INFO]: [StaffPlus] You are using the latest version thanks
[03:31:24] [Server thread/INFO]: [Slimefun] Now running MetricsModule build #28
[03:31:24] [Server thread/INFO]: [Slimefun] with a total of 19/19 chart(s)!
[03:31:24] [Server thread/INFO]: [Slimefun] Metrics build #28 started.
[03:31:24] [Craft Scheduler Thread - 9 - Essentials/WARN]: [Essentials] You're 2 EssentialsX dev build(s) out of date!
[03:31:24] [Craft Scheduler Thread - 9 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[03:31:24] [Craft Scheduler Thread - 19 - MapEngine/INFO]: [MapEngine] MapEngine version v1.4.7 is up-to-date :)
[03:31:24] [Server thread/INFO]: [Slimefun] Collecting Snapshots of all Recipes...
[03:31:24] [Server thread/INFO]: [Slimefun] Found 1,089 Recipes!
[03:31:24] [Server thread/WARN]: [DynaTech] MobDataCard - 'VEX_DATA_CARD' (DynaTech vDEV - 194 (git 990c942e)): This item does not belong into ItemGroup SubGroup {infinityexpansion:mob_simulation,tier=3} as that group belongs to InfinityExpansion
[03:31:24] [Server thread/WARN]: [DynaTech] You can report this warning here: https://github.com/ProfElements/DynaTech/issues
[03:31:24] [Server thread/WARN]: [DynaTech] MobDataCard - 'PHANTOM_DATA_CARD' (DynaTech vDEV - 194 (git 990c942e)): This item does not belong into ItemGroup SubGroup {infinityexpansion:mob_simulation,tier=3} as that group belongs to InfinityExpansion
[03:31:24] [Server thread/WARN]: [DynaTech] You can report this warning here: https://github.com/ProfElements/DynaTech/issues
[03:31:25] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[03:31:25] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[03:31:25] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[03:31:25] [Craft Scheduler Thread - 24 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[03:31:25] [Server thread/INFO]: 
[03:31:25] [Server thread/INFO]: ######################### - Slimefun vDEV - 1050 (git 22a7f422) - #########################
[03:31:25] [Server thread/INFO]: 
[03:31:25] [Server thread/INFO]: Successfully loaded 4093 Items and 381 Researches
[03:31:25] [Server thread/INFO]: ( 549 Items from Slimefun, 3544 Items from 29 Addons )
[03:31:25] [Server thread/INFO]: 
[03:31:25] [Server thread/INFO]: Slimefun is an Open-Source project that is kept alive by a large community.
[03:31:25] [Server thread/INFO]: Consider helping us maintain this project by contributing on GitHub!
[03:31:25] [Server thread/INFO]: 
[03:31:25] [Server thread/INFO]:  - Source Code:  https://github.com/Slimefun/Slimefun4
[03:31:25] [Server thread/INFO]:  - Wiki:         https://github.com/Slimefun/Slimefun4/wiki
[03:31:25] [Server thread/INFO]:  - Addons:       https://github.com/Slimefun/Slimefun4/wiki/Addons
[03:31:25] [Server thread/INFO]:  - Bug Reports:  https://github.com/Slimefun/Slimefun4/issues
[03:31:25] [Server thread/INFO]:  - Discord:      https://discord.gg/slimefun
[03:31:25] [Server thread/INFO]: 
[03:31:25] [Craft Scheduler Thread - 30 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[03:31:25] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[03:31:25] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[03:31:25] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[03:31:26] [Server thread/INFO]: [Slimefun] Loading Blocks for World "world"
[03:31:26] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:26] [Server thread/INFO]: [Slimefun] Ignoring duplicate block @ 127, 71, 708 (PEAR_SAPLING -> PLUM)
[03:31:26] [Server thread/INFO]: [Slimefun] Ignoring duplicate block @ 934, 78, 771 (PEAR_SAPLING -> PEAR)
[03:31:26] [Server thread/INFO]: [Slimefun] Ignoring duplicate block @ 935, 82, 771 (PEAR_SAPLING -> PEAR)
[03:31:26] [Server thread/INFO]: [Slimefun] Ignoring duplicate block @ 940, 79, 773 (PEAR_SAPLING -> PEAR)
[03:31:26] [Server thread/INFO]: [Slimefun] Ignoring duplicate block @ 712, 77, -185 (LEMON -> LEMON_SAPLING)
[03:31:27] [Server thread/INFO]: [Slimefun] Ignoring duplicate block @ 1,792, 47, 117 (ULTIMATE_SOLAR_PANEL -> BANDAID_MANAGER)
[03:31:27] [Server thread/INFO]: [Slimefun] Ignoring duplicate block @ 702, 79, -99 (ORANGE_SAPLING -> ORANGE)
[03:31:27] [Server thread/INFO]: [Slimefun] Ignoring duplicate block @ 1,384, 78, 48 (CHERRY_SAPLING -> LEMON)
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 744ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 95,215 Blocks for World "world"
[03:31:27] [Server thread/INFO]: [Slimefun] Avg: 0.01ms/Block
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "world_nether"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 1ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 7 Blocks for World "world_nether"
[03:31:27] [Server thread/INFO]: [Slimefun] Avg: 0.14ms/Block
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "world_the_end"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 6 Blocks for World "world_the_end"
[03:31:27] [Server thread/INFO]: [Slimefun] Avg: 0ms/Block
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "sky"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "sky"
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "evento"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 6 Blocks for World "evento"
[03:31:27] [Server thread/INFO]: [Slimefun] Avg: 0ms/Block
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "void"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 1ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 14 Blocks for World "void"
[03:31:27] [Server thread/INFO]: [Slimefun] Avg: 0.07ms/Block
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "boss"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "boss"
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "Lobby"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "Lobby"
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "city"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "city"
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "welcome"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 1ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "welcome"
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks for World "dimensionalhome"
[03:31:27] [Server thread/INFO]: [Slimefun] This may take a long time...
[03:31:27] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[03:31:27] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "dimensionalhome"
[03:31:27] [Server thread/INFO]: [dough: protection] Loading Protection Modules...
[03:31:27] [Server thread/INFO]: [dough: protection] This may happen more than once.
[03:31:27] [Server thread/INFO]: [dough: protection] Loaded Protection Module "WorldGuard v7.0.8-beta-01+cbb2ba7"
[03:31:27] [Server thread/INFO]: [dough: protection] Loaded Protection Module "GriefPrevention v16.18.1"
[03:31:27] [Server thread/INFO]: [dough: protection] Loaded Protection Module "CoreProtect"
[03:31:27] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[03:31:27] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (EssentialsX Economy)
[03:31:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[03:31:27] [Server thread/INFO]: [BetonQuest] Hooked into PlaceholderAPI, FastAsyncWorldEdit, Vault, WorldGuard, MythicMobs, Quests, Jobs, Shopkeepers!
[03:31:27] [Server thread/INFO]: [BetonQuest] There are 4 conditions, 9 events, 1 objectives and 1 conversations loaded from 1 packages.
[03:31:27] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[03:31:27] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
[03:31:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[03:31:27] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop bh2:4
[03:31:27] [Server thread/WARN]: [MythicMobs] --| File: EquipMechanic
[03:31:27] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[03:31:28] [Server thread/INFO]: [SpiritsUnchained] Saving Player Data
[03:31:28] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
[03:31:28] [Server thread/WARN]: [QuickShop] QuickShop detected tax account not exists, we're trying to create one. If you see any errors, please change tax-account in config.yml to server owner in-game username
[03:31:28] [Server thread/INFO]: [Essentials] Created a User for Tax (2c5f00ba-902c-411b-b9b9-9261cf43aee1) for non Bukkit type: com.earth2me.essentials.OfflinePlayer
[03:31:28] [Server thread/INFO]: [QuickShop] Tax account created.
[03:31:28] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Loading ImageMap ID 5
[03:31:28] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[03:31:28] [Server thread/INFO]: Done (71.532s)! For help, type "help"
[03:31:28] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Loading ImageMap ID 6
[03:31:28] [Server thread/INFO]: Timings Reset
[03:31:28] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Loading ImageMap ID 7
[03:31:28] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Loading ImageMap ID 9
[03:31:28] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 2/2 guilds (0 cancelled)
[03:31:28] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Loading ImageMap ID 10
[03:31:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[03:31:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[03:31:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[03:31:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[03:31:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[03:31:28] [Server thread/INFO]: [Quests] Loaded 5 Quest(s), 7 Action(s), 1 Condition(s) and 812 Phrase(s)
[03:31:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[03:31:29] [Server thread/ERROR]: [CitizensText] Citizens has not started properly. CitizensText can not work without it, the plugin will now stop.
[03:31:29] [Server thread/INFO]: [CitizensText] Disabling CitizensText v1.2
[03:31:29] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Loading ImageMap ID 11
[03:31:29] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Loading ImageMap ID 12
[03:31:29] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Loading ImageMap ID 13
[03:31:29] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5027ms or 100 ticks behind
[03:31:29] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Attempting to queue up some more safe locations...
[03:31:30] [Server thread/INFO]: [CustomStructures] Loading structures from files.
[03:31:30] [Server thread/WARN]: [CustomStructures] Unable to enable SubStructures on structure .
[03:31:30] [Server thread/WARN]: [CustomStructures] The following error occurred:
[03:31:30] [Server thread/WARN]: [CustomStructures] Format Error: Schematics does not contain a file!
[03:31:30] [Server thread/INFO]: [CustomStructures] The plugin has been fully enabled with 1 structures.
[03:31:30] [Server thread/INFO]: [CustomStructures] 0 addons were found.
[03:31:31] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] No cache found for: [net.minecraft.server.level.EntityPlayer] : []
[03:31:31] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] Skipping cache for [net.minecraft.server.level.EntityPlayer]
[03:31:31] [Craft Scheduler Thread - 39 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 9 ImageMaps!
[03:31:32] [Server thread/WARN]: [BetterRTP] Seems like the world `welcome` does not have a `WorldType` declared. Please add/fix this in the config.yml file! This world will be treated as an overworld! If this world is a nether world, configure it to NETHER (example: `- welcome: NETHER`
[03:31:38] [Craft Scheduler Thread - 37 - NoteBlockAPI/INFO]: [NoteBlockAPI] New update available!
[03:31:59] [Craft Scheduler Thread - 24 - Slimefun/ERROR]: [dough: skins] Exception while requesting skin: https://api.mojang.com/users/profiles/minecraft/amarcais53
[03:31:59] [Craft Scheduler Thread - 11 - Slimefun/WARN]: [Slimefun] Attempted to refresh skin cache, got this response: ExecutionException: java.io.FileNotFoundException: https://api.mojang.com/users/profiles/minecraft/amarcais53
[03:31:59] [Craft Scheduler Thread - 11 - Slimefun/WARN]: [Slimefun] This usually means mojang.com is temporarily down or started to rate-limit this connection, nothing to worry about!
[03:32:05] [Server thread/INFO]: [OA] OpenAudioMc version 6.8. For help, please use /openaudio help
[03:32:31] [Server thread/INFO]: Unknown command. Type "/help" for help.
[03:32:52] [Craft Scheduler Thread - 28 - BetterRTP/INFO]: [BetterRTP] Max attempts to create a Queue reached for default_welcome (amount: 0)
[03:32:52] [Craft Scheduler Thread - 28 - BetterRTP/INFO]: [BetterRTP] Queueing paused, max queue limit reached!
[03:33:08] [Craft Scheduler Thread - 7 - Slimefun/INFO]: [Slimefun] Auto-saving block data... (Next auto-save: 10m)
[03:33:08] [Craft Scheduler Thread - 7 - Slimefun/INFO]: [Slimefun] Saving block data for world "world" (6,212 change(s) queued)
[03:33:30] [Server thread/INFO]: [GSit] You can't run this command!
[03:34:05] [Server thread/INFO]: com.mojang.authlib.GameProfile@64ab9ffc[id=<null>,name=shepan,properties={},legacy=false] (/149.102.143.151:42160) lost connection: Disconnected
[03:34:11] [Server thread/INFO]: Please specify a sub-command!
[03:34:11] [Server thread/INFO]: Use /help variable for command help
[03:35:16] [Server thread/INFO]: Unknown command: world
[03:35:16] [Server thread/INFO]: For command help, use /help my_worlds
[03:35:36] [Server thread/INFO]: TrainCarts 1.19.4-v1 (build: 1371)
[03:35:36] [Server thread/INFO]: See the WIKI for more information, or use /train help
[03:35:54] [Server thread/INFO]: /Claim [optional radius]
[03:37:50] [Server thread/INFO]: Stopping the server
[03:37:50] [Server thread/INFO]: Stopping server
[03:37:50] [Server thread/INFO]: [DungeonParties] Disabling DungeonParties v1.0-SNAPSHOT
[03:37:50] [Server thread/INFO]: [CoreProtectTNT] Disabling CoreProtectTNT v2.3.1
[03:37:50] [Server thread/INFO]: [WorldGuardExtraFlags] Disabling WorldGuardExtraFlags v4.2.1
[03:37:50] [Server thread/INFO]: [BetterTeams] Disabling BetterTeams v4.6.4
[03:37:50] [Server thread/INFO]: [PlayerWarps] Disabling PlayerWarps v6.23.1
[03:37:50] [Server thread/INFO]: [Watson] Disabling Watson v1.0.1
[03:37:50] [Server thread/INFO]: [Supreme] Disabling Supreme vDEV - 27 (git fd5a7a4f)
[03:37:50] [Server thread/INFO]: [UltimateHomes] Disabling UltimateHomes v2.6
[03:37:50] [Server thread/INFO]: [BetterRTP] Disabling BetterRTP v3.6.8-2
[03:37:50] [Server thread/INFO]: [CommandPanels] Disabling CommandPanels v3.18.6.2
[03:37:50] [Server thread/INFO]: RockyHawk's CommandPanels Plugin Disabled, aww man.
[03:37:50] [Server thread/INFO]: [SimpleScore] Disabling SimpleScore v3.12.2
[03:37:50] [Server thread/INFO]: [SFCalc] Disabling SFCalc vDEV - 37 (git dfc0fc41)
[03:37:50] [Server thread/INFO]: [ImageFrame] Disabling ImageFrame v1.7.3.0
[03:37:50] [Server thread/INFO]: [ImageFrame] ImageFrame has been Disabled!
[03:37:50] [Server thread/INFO]: [ez-broadcast] Disabling ez-broadcast v1.5
[03:37:50] [Server thread/INFO]: [StaffPlus] Disabling StaffPlus v3.3.12.0
[03:37:50] [Server thread/INFO]: [Staff+] Staff+ is now disabling!
[03:37:50] [Server thread/INFO]: [GSit] Disabling GSit v1.4.3
[03:37:50] [Server thread/INFO]: [GSit] The plugin was successfully disabled.
[03:37:50] [Server thread/INFO]: [TreeAssist] Disabling TreeAssist v7.3.39
[03:37:50] [Server thread/INFO]: [MobCapturer] Disabling MobCapturer vDEV - 26 (git e0f006c2)
[03:37:50] [Server thread/INFO]: [DyedBackpacks] Disabling DyedBackpacks vDEV - 17 (git 8b329e96)
[03:37:50] [Server thread/INFO]: [MapMediaExt] Disabling MapMediaExt
[03:37:50] [Server thread/INFO]: [CTCommons] Disabling CTCommons v1.0-BETA2
[03:37:50] [Server thread/INFO]: [CTCommons] CTCommons v1.0-BETA2 disabled.
[03:37:50] [Server thread/INFO]: [SoulJars] Disabling SoulJars vDEV - 23 (git b8358a1f)
[03:37:50] [Server thread/INFO]: [FakeBlock] Disabling FakeBlock v2.1.0-SNAPSHOT
[03:37:50] [Server thread/INFO]: [CustomStructures] Disabling CustomStructures v1.9.0.1
[03:37:50] [Server thread/INFO]: [HotbarPets] Disabling HotbarPets vDEV - 38 (git fa6c871d)
[03:37:50] [Server thread/INFO]: [EcoPower] Disabling EcoPower vDEV - 5 (git 5c1ecd68)
[03:37:50] [Server thread/INFO]: [CustomHeads] Disabling CustomHeads v3.0.7
[03:37:50] [Server thread/INFO]: [CustomAdvancements] Disabling CustomAdvancements v1.2.8
[03:37:50] [Server thread/INFO]: [CustomAdvancements] Disabled successfully
[03:37:50] [Server thread/INFO]: [WorldEditSUI] Disabling WorldEditSUI v1.7.2
[03:37:50] [Server thread/INFO]: [SkinsRestorer] Disabling SkinsRestorer v14.2.10
[03:37:50] [Server thread/INFO]: [SlimefunLuckyBlocks] Disabling SlimefunLuckyBlocks vDEV - 36 (git 60f0c8dc)
[03:37:50] [Server thread/INFO]: [OpenAudioMc] Disabling OpenAudioMc v6.8
[03:37:50] [Server thread/INFO]: [OpenAudioMc] Shutting down
[03:37:50] [Server thread/INFO]: [OpenAudioMc] Saving world cache...
[03:37:50] [Server thread/INFO]: [OpenAudioMc] Stopped OpenAudioMc. Goodbye.
[03:37:50] [Server thread/INFO]: [Blue Slime Core] Disabling BlueSlimeCore v2.9.0.346
[03:37:50] [Server thread/INFO]: [QuickShop] Disabling QuickShop v5.1.2.0
[03:37:50] [Server thread/INFO]: [QuickShop] QuickShop is finishing remaining work, this may need a while...
[03:37:50] [Server thread/INFO]: [QuickShop] Please wait for the data to flush its data...
[03:37:50] [Server thread/INFO]: [SimpleMaterialGenerators] Disabling SimpleMaterialGenerators vDEV - 4 (git 5543cc8f)
[03:37:50] [Server thread/INFO]: [Chunky] Disabling Chunky v1.3.52
[03:37:50] [Server thread/INFO]: [CSL] Disabling ChunkSpawnerLimiter v4.3.1
[03:37:50] [Server thread/INFO]: [SlimeHUD] Disabling SlimeHUD vDEV - 10 (git 7d1c666b)
[03:37:50] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Disabling InteractiveChatDiscordSrvAddon v4.2.6.1
[03:37:50] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Disabled!
[03:37:50] [Server thread/INFO]: [ExtraGear] Disabling ExtraGear vDEV - 13 (git c62047e2)
[03:37:50] [Server thread/INFO]: [ElectricSpawners] Disabling ElectricSpawners vDEV - 23 (git 6ec96773)
[03:37:50] [Server thread/INFO]: [JukeBox] Disabling JukeBox v1.20.8
[03:37:50] [Server thread/INFO]: [SpiritsUnchained] Disabling SpiritsUnchained vDEV - 22 (git 28e031e0)
[03:37:50] [Server thread/INFO]: [SpiritsUnchained] Saving Player Data
[03:37:50] [Server thread/INFO]: [ItemEdit] Disabling ItemEdit v3.0.9
[03:37:50] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion itemedit
[03:37:50] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin ItemEdit was disabled.
[03:37:50] [Server thread/INFO]: [MyRedeem] Disabling MyRedeem v2.2.4.1
[03:37:50] [Server thread/INFO]: [FlowerPower] Disabling FlowerPower vDEV - 15 (git 35662ced)
[03:37:50] [Server thread/INFO]: [SlimeTinker] Disabling SlimeTinker vDEV - 79 (git fe7ea82b)
[03:37:50] [Server thread/INFO]: [SimpleUtils] Disabling SimpleUtils vDEV - 15 (git 4250fd5e)
[03:37:50] [Server thread/INFO]: [LoginSecurity] Disabling LoginSecurity v3.1.1
[03:37:50] [Server thread/INFO]: [LoginSecurity] Waiting for queued tasks...
[03:37:50] [Server thread/INFO]: [LoginSecurity] ExecutorService shut down, ready to disable.
[03:37:50] [Server thread/INFO]: [TAB] Disabling TAB v3.3.2
[03:37:50] [Server thread/INFO]: [Train_Carts] TAB plugin detected, seats with nametag hidden will also hide TAB nametags
[03:37:50] [Server thread/INFO]: [TAB] Disabled in 1ms
[03:37:50] [Server thread/INFO]: [FoxyMachines] Disabling FoxyMachines vDEV - 62 (git ab78d44e)
[03:37:50] [Server thread/INFO]: [spark] Disabling spark v1.10.34
[03:37:50] [Server thread/INFO]: [ServersNPC] Disabling ServersNPC v4.1
[03:37:50] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.20.0-dev+56-fd49b70
[03:37:50] [Server thread/INFO]: [NFCNotes] Disabling NFCNotes v2.3.0
[03:37:50] [Server thread/INFO]: [FluffyMachines] Disabling FluffyMachines vDEV - 130 (git 01c839cc)
[03:37:50] [Server thread/INFO]: [PrivateStorage] Disabling PrivateStorage vDEV - 18 (git 5832db21)
[03:37:50] [Server thread/INFO]: [PluginPortal] Disabling PluginPortal v1.2.4
[03:37:50] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v21.3
[03:37:50] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[03:37:51] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v21.3
[03:37:51] [Server thread/INFO]: [AureliumSkills] Disabling AureliumSkills vBeta 1.3.19
[03:37:51] [Server thread/INFO]: [MapEngine] Disabling MapEngine v1.4.7
[03:37:51] [Server thread/INFO]: [ViaRewind] Disabling ViaRewind v2.0.3
[03:37:51] [Server thread/INFO]: [BetonQuest] Disabling BetonQuest v1.12.10
[03:37:51] [Server thread/INFO]: [BetonQuest] BetonQuest succesfully disabled!
[03:37:51] [Server thread/INFO]: [Train_Carts] Disabling Train_Carts v1.19.4-v1
[03:37:52] [Server thread/INFO]: [Train_Carts] Train_Carts disabled!
[03:37:52] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.11.2
[03:37:52] [Server thread/INFO]: [GriefPrevention] Disabling GriefPrevention v16.18.1
[03:37:52] [Server thread/INFO]: [GriefPrevention] GriefPrevention disabled.
[03:37:52] [Server thread/INFO]: [InteractiveChat] Disabling InteractiveChat v4.2.6.0
[03:37:52] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion interactivechat
[03:37:52] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin InteractiveChat was disabled.
[03:37:52] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Disabled!
[03:37:52] [Server thread/INFO]: [NoteBlockAPI] Disabling NoteBlockAPI v1.6.1-SNAPSHOT
[03:37:52] [Server thread/INFO]: [Networks] Disabling Networks vDEV - 46 (git 9368ce6b)
[03:37:52] [Server thread/INFO]: [DynaTech] Disabling DynaTech vDEV - 194 (git 990c942e)
[03:37:52] [Server thread/INFO]: [TranscEndence] Disabling TranscEndence vDEV - 41 (git 98d7d47e)
[03:37:52] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.1
[03:37:52] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v4.6.1
[03:37:52] [Server thread/INFO]: [Shopkeepers] Disabling Shopkeepers v2.16.5
[03:37:52] [Server thread/INFO]: [Jobs] Disabling Jobs v5.1.2.2
[03:37:52] [Server thread/INFO]: ------------- Jobs -------------
[03:37:52] [Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
[03:37:52] [Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
[03:37:52] [Server thread/INFO]: ------------------------------------
[03:37:52] [Server thread/INFO]: [Quests] Disabling Quests v4.8.1-b404
[03:37:52] [Server thread/INFO]: [Quests] Saving Quester data...
[03:37:52] [Server thread/INFO]: [Quests] Closing storage...
[03:37:52] [Server thread/INFO]: [SignLink] Disabling SignLink v1.19.3-v1
[03:37:52] [Server thread/INFO]: [SignLink] SignLink disabled!
[03:37:52] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.2
[03:37:52] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Saved linked accounts in 4ms
[03:37:52] [pool-141-thread-1/WARN]: github.scarsz.discordsrv.dependencies.jda.api.exceptions.ErrorResponseException: -1: java.io.InterruptedIOException
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.RestActionImpl.complete(RestActionImpl.java:227)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.requests.RestAction.complete(RestAction.java:633)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.updateMessage(ChannelLoggingHandler.java:249)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.flush(ChannelLoggingHandler.java:144)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.lambda$schedule$0(ChannelLoggingHandler.java:55)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[03:37:52] [pool-141-thread-1/WARN]: Caused by: java.io.InterruptedIOException
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http2.Http2Stream.waitForIo(Http2Stream.java:641)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http2.Http2Stream.takeHeaders(Http2Stream.java:148)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http2.Http2Codec.readResponseHeaders(Http2Codec.java:137)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.java:101)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:45)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:94)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:125)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:264)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.okhttp3.RealCall.execute(RealCall.java:93)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.Requester.execute(Requester.java:201)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.Requester.execute(Requester.java:141)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.Requester.execute(Requester.java:124)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.ratelimit.BotRateLimiter$Bucket.run(BotRateLimiter.java:478)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
[03:37:52] [pool-141-thread-1/WARN]:     ... 3 more
[03:37:52] [pool-141-thread-1/WARN]: Caused by: github.scarsz.discordsrv.dependencies.jda.api.exceptions.ContextException
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.exceptions.ContextException.here(ContextException.java:54)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.requests.Request.<init>(Request.java:71)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.requests.RestFuture.<init>(RestFuture.java:36)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.RestActionImpl.submit(RestActionImpl.java:209)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.internal.requests.RestActionImpl.complete(RestActionImpl.java:219)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//github.scarsz.discordsrv.dependencies.jda.api.requests.RestAction.complete(RestAction.java:633)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.updateMessage(ChannelLoggingHandler.java:249)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.flush(ChannelLoggingHandler.java:144)
[03:37:52] [pool-141-thread-1/WARN]:     at DiscordSRV-Build-1.26.2.jar//me.scarsz.jdaappender.ChannelLoggingHandler.lambda$schedule$0(ChannelLoggingHandler.java:55)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305)
[03:37:52] [pool-141-thread-1/WARN]:     at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305)
[03:37:52] [pool-141-thread-1/WARN]:     ... 3 more
[03:37:52] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Shutdown completed in 393ms
[03:37:52] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.20.0-dev+56-fd49b70
[03:37:52] [Server thread/INFO]: [InfinityExpansion] Disabling InfinityExpansion vDEV - 140 (git 0098d2fb)
[03:37:52] [Server thread/INFO]: [ExoticGarden] Disabling ExoticGarden vDEV - 78 (git 7f9a5f63)
[03:37:52] [Server thread/INFO]: [CMILib] Disabling CMILib v1.2.5.3
[03:37:52] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.2.6-0819d467
[03:37:52] [Server thread/INFO]: [MythicMobs] Disabling Mythic Mobs...
[03:37:52] [Server thread/INFO]: [MythicMobs] All active settings have been saved.
[03:37:52] [Server thread/INFO]: [Essentials] Disabling Essentials v2.20.0-dev+56-fd49b70
[03:37:52] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[03:37:52] [Server thread/INFO]: [LiteXpansion] Disabling LiteXpansion vDEV - 188 (git c0cb079e)
[03:37:52] [Server thread/INFO]: [My_Worlds] Disabling My_Worlds v1.19.4-v1
[03:37:52] [Server thread/INFO]: [My_Worlds] My_Worlds disabled!
[03:37:52] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.8-beta-01+cbb2ba7
[03:37:52] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[03:37:52] [Server thread/INFO]: [SlimyTreeTaps] Disabling SlimyTreeTaps vDEV - 20 (git 963f0383)
[03:37:52] [Server thread/INFO]: [BKCommonLib] Disabling BKCommonLib
[03:37:52] [Server thread/INFO]: [Slimefun] Disabling Slimefun vDEV - 1050 (git 22a7f422)
[03:37:52] [Server thread/INFO]: [Slimefun] Saving block data for world "world" (15,739 change(s) queued)
[03:37:52] [Server thread/ERROR]: [Slimefun] An Exception occurred while creating a backup for Slimefun DEV - 1050 (git 22a7f422)
java.io.FileNotFoundException: data-storage/Slimefun/stored-blocks/bskyblock_world_nether/bentobox (Is a directory)
    at java.io.FileInputStream.open0(Native Method) ~[?:?]
    at java.io.FileInputStream.open(FileInputStream.java:216) ~[?:?]
    at java.io.FileInputStream.<init>(FileInputStream.java:157) ~[?:?]
    at io.github.thebusybiscuit.slimefun4.core.services.BackupService.addDirectory(BackupService.java:117) ~[Slimefun4 - DEV 1050 (git 22a7f).jar:?]
    at io.github.thebusybiscuit.slimefun4.core.services.BackupService.createBackup(BackupService.java:85) ~[Slimefun4 - DEV 1050 (git 22a7f).jar:?]
    at io.github.thebusybiscuit.slimefun4.core.services.BackupService.run(BackupService.java:67) ~[Slimefun4 - DEV 1050 (git 22a7f).jar:?]
    at io.github.thebusybiscuit.slimefun4.implementation.Slimefun.onDisable(Slimefun.java:436) ~[Slimefun4 - DEV 1050 (git 22a7f).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:227) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:151) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:92) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:528) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.disablePlugins(CraftServer.java:491) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:944) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:804) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1212) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[03:37:52] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.0.0-SNAPSHOT-636
[03:37:52] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[03:37:52] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[03:37:52] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.6.2-SNAPSHOT-408;9f3c909
[03:37:52] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[03:37:52] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.3
[03:37:52] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.71
[03:37:52] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[03:37:52] [Server thread/INFO]: [LuckPerms] Closing storage...
[03:37:52] [Server thread/INFO]: [LuckPerms] Goodbye!
[03:37:52] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v4.6.2
[03:37:52] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[03:37:52] [Server thread/INFO]: Saving players
[03:37:52] [Server thread/INFO]: Saving worlds
[03:37:52] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[03:37:52] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[03:37:52] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[03:37:52] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[03:37:52] [Server thread/INFO]: [ChunkHolderManager] Saved 4 block chunks, 46 entity chunks, 0 poi chunks in world 'world' in 0.02s
[03:37:52] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[03:37:52] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[03:37:52] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[03:37:52] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[03:37:52] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[03:37:52] [Server thread/INFO]: [ChunkHolderManager] Saved 40 block chunks, 149 entity chunks, 0 poi chunks in world 'world_nether' in 0.07s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[03:37:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saved 1 block chunks, 2 entity chunks, 0 poi chunks in world 'world_the_end' in 0.00s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[03:37:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[sky]'/minecraft:sky
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'sky'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'sky'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'sky'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'sky' in 0.00s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (sky): All chunks are saved
[03:37:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[evento]'/minecraft:evento
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'evento'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'evento'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'evento'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saved 1 block chunks, 9 entity chunks, 0 poi chunks in world 'evento' in 0.00s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (evento): All chunks are saved
[03:37:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[void]'/minecraft:void
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'void'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'void'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'void'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saved 2 block chunks, 9 entity chunks, 0 poi chunks in world 'void' in 0.01s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (void): All chunks are saved
[03:37:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[boss]'/minecraft:boss
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'boss'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'boss'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'boss'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 33 entity chunks, 0 poi chunks in world 'boss' in 0.00s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (boss): All chunks are saved
[03:37:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Lobby]'/minecraft:lobby
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Lobby'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Lobby'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Lobby'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saved 5 block chunks, 29 entity chunks, 0 poi chunks in world 'Lobby' in 0.01s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (Lobby): All chunks are saved
[03:37:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[city]'/minecraft:city
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'city'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'city'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'city'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'city' in 0.00s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (city): All chunks are saved
[03:37:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[welcome]'/minecraft:welcome
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'welcome'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'welcome'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'welcome'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saved 1084 block chunks, 0 entity chunks, 0 poi chunks in world 'welcome' in 0.35s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (welcome): All chunks are saved
[03:37:53] [Server thread/INFO]: Saving chunks for level 'ServerLevel[dimensionalhome]'/minecraft:dimensionalhome
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'dimensionalhome'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'dimensionalhome'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'dimensionalhome'
[03:37:53] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'dimensionalhome' in 0.00s
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (dimensionalhome): All chunks are saved
[03:37:53] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[03:37:53] [Server thread/INFO]: Flushing Chunk IO
[03:37:53] [Server thread/INFO]: Closing Thread Pool
[03:37:53] [Server thread/INFO]: Closing Server