Paste #104148: Unnamed Server Log Paste

Date: 2022/12/17 18:22:22 UTC-08: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


[02:52:14] [ServerMain/INFO]: Building unoptimized datafixer
[02:52:15] [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'
[02:52:18] [ServerMain/INFO]: Loaded 7 recipes
[02:52:18] [Server thread/INFO]: Starting minecraft server version 1.19.3
[02:52:18] [Server thread/WARN]: ****************************
[02:52:18] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[02:52:18] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[02:52:18] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[02:52:18] [Server thread/WARN]: ****************************
[02:52:18] [Server thread/INFO]: Loading properties
[02:52:18] [Server thread/INFO]: This server is running Paper version git-Paper-343 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: f3eb2c7)
[02:52:18] [Server thread/INFO]: Server Ping Player Sample Count: 12
[02:52:18] [Server thread/INFO]: Using 4 threads for Netty based IO
[02:52:18] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[02:52:19] [Server thread/INFO]: Default game type: SURVIVAL
[02:52:19] [Server thread/INFO]: Generating keypair
[02:52:19] [Server thread/INFO]: Starting Minecraft server on *:25565
[02:52:19] [Server thread/INFO]: Using default channel type
[02:52:19] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[02:52:19] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `AdvancedEnchantments' for files `plugins\AdvancedEnchantments-9.0.0b47.jar' and `plugins\AdvancedEnchantments-9.0.0b34.jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `AuctionHouse' for files `plugins\AuctionHouse-1.19-3.3.2.jar' and `plugins\AuctionHouse-1.19-3.3.1 (1).jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `DecentHolograms' for files `plugins\DecentHolograms-2.7.8.jar' and `plugins\DecentHolograms-2.4.2.jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `DeluxeMenus' for files `plugins\DeluxeMenus-1.13.6-Release.jar' and `plugins\DeluxeMenus-1.13.3-Release.jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `ItemsAdder' for files `plugins\free-ItemsAdder_3.3.0-beta-r11_cracked.jar' and `plugins\free-ItemsAdder_3.3.0-beta-r11_cracked (1).jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `GSit' for files `plugins\GSit-1.3.0.jar' and `plugins\GSit-1.2.8.jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `ItemsAdder' for files `plugins\ItemsAdder_3.3.0-beta-r11.jar' and `plugins\free-ItemsAdder_3.3.0-beta-r11_cracked.jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `ItemsAdder' for files `plugins\ItemsAdder_3.3.0.jar' and `plugins\ItemsAdder_3.3.0-beta-r11.jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `Jobs' for files `plugins\Jobs5.1.1.1.jar' and `plugins\Jobs5.0.1.0.jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Could not load 'plugins\paper-1.19.3-310 (1).jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:179) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:157) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:436) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-343]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.io.FileNotFoundException: Jar does not contain plugin.yml
    ... 7 more
[02:52:19] [Server thread/ERROR]: Could not load 'plugins\paper-1.19.3-323.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:179) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:157) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:436) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-343]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.io.FileNotFoundException: Jar does not contain plugin.yml
    ... 7 more
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `ProtocolLib' for files `plugins\ProtocolLib (2).jar' and `plugins\ProtocolLib (1).jar' in `plugins'
[02:52:19] [Server thread/ERROR]: Ambiguous plugin name `ProtocolLib' for files `plugins\ProtocolLib.jar' and `plugins\ProtocolLib (2).jar' in `plugins'
[02:52:20] [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!
[02:52:24] [Server thread/WARN]: Legacy plugin ForcedGrammar v1.8.1 does not specify an api-version.
[02:52:24] [Server thread/WARN]: Legacy plugin TimeLockX v1.0 does not specify an api-version.
[02:52:24] [Server thread/WARN]: Legacy plugin TTA v5.5 does not specify an api-version.
[02:52:24] [Server thread/WARN]: Legacy plugin AntiNetherRoof v1.2.4 does not specify an api-version.
[02:52:24] [Server thread/WARN]: Legacy plugin ResourcePackDownloader v7.4 does not specify an api-version.
[02:52:24] [Server thread/WARN]: Legacy plugin ChestRestock v2.3.2-b106 does not specify an api-version.
[02:52:24] [Server thread/WARN]: Legacy plugin StaffChat v2.3 does not specify an api-version.
[02:52:24] [Server thread/WARN]: Legacy plugin NewPlayerWelcome v1.0 does not specify an api-version.
[02:52:24] [Server thread/INFO]: [RewardsLite] Loading 1 libraries... please wait
[02:52:24] [Server thread/INFO]: [RewardsLite] Loaded library C:\Users\marti\Desktop\FOLDA\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[02:52:24] [Server thread/INFO]: [RewardsLite] Loaded library C:\Users\marti\Desktop\FOLDA\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[02:52:25] [Server thread/WARN]: Legacy plugin FirstJoinCommands v3.8.5 does not specify an api-version.
[02:52:25] [Server thread/WARN]: Legacy plugin ServerlistMOTD vX-2021-11-23 does not specify an api-version.
[02:52:26] [Server thread/INFO]: [InventoryRollbackPlus] Loading InventoryRollbackPlus v1.6.8
[02:52:26] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[02:52:26] [Server thread/INFO]: [FG] Loading ForcedGrammar v1.8.1
[02:52:26] [Server thread/INFO]: [FreedomChat] Loading FreedomChat v1.3.1
[02:52:26] [Server thread/INFO]: [PreventEndermites] Loading PreventEndermites v1.0-SNAPSHOT
[02:52:26] [Server thread/INFO]: [BalancedVillagerTrades] Loading BalancedVillagerTrades v2.0-beta5
[02:52:26] [Server thread/INFO]: [PL-Hide] Loading PL-Hide v1.5.21
[02:52:26] [Server thread/INFO]: [PlayerReport] Loading PlayerReport v3.3.6
[02:52:26] [Server thread/INFO]: [VoxelSniper] Loading VoxelSniper v6.1.2
[02:52:26] [Server thread/INFO]: [InventoryKeeper] Loading InventoryKeeper v1.3.1
[02:52:26] [Server thread/INFO]: [NoMobGriefing] Loading NoMobGriefing v3.0.3
[02:52:26] [Server thread/INFO]: [AdventCalendar] Loading AdventCalendar v1.1.4
[02:52:26] [Server thread/INFO]: [TimeLockX] Loading TimeLockX v1.0
[02:52:26] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.5.1
[02:52:26] [Server thread/INFO]: [ViaVersion] ViaVersion 4.5.1 is now loaded, injecting!
[02:52:26] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[02:52:26] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[02:52:26] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[02:52:26] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[02:52:26] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[02:52:26] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[02:52:26] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[02:52:26] [Via-Mappingloader-7/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[02:52:26] [Server thread/INFO]: [DailyRewardsPlus] Loading DailyRewardsPlus v1.2.3
[02:52:26] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.5.1
[02:52:26] [Server thread/INFO]: [ViaBackwards] Loading translations...
[02:52:26] [Via-Mappingloader-8/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[02:52:26] [Via-Mappingloader-9/INFO]: [ViaVersion] Loading 1.19 -> 1.19.3 mappings...
[02:52:26] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[02:52:26] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[02:52:26] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[02:52:26] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[02:52:27] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[02:52:27] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[02:52:27] [Via-Mappingloader-4/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[02:52:27] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[02:52:27] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[02:52:27] [Server thread/INFO]: [TTA] Loading TTA v5.5
[02:52:27] [Server thread/INFO]: [AntiNetherRoof] Loading AntiNetherRoof v1.2.4
[02:52:27] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[02:52:27] [Server thread/INFO]: [ResourcePackDownloader] Loading ResourcePackDownloader v7.4
[02:52:27] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[02:52:27] [Server thread/INFO]: [NocsyItems] Loading NocsyItems v2.0
[02:52:27] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.1
[02:52:27] [Server thread/INFO]: [LoneLibs] Loading LoneLibs v1.0.21
[02:52:27] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b607
[02:52:27] [Via-Mappingloader-5/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[02:52:27] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[02:52:27] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[02:52:27] [Via-Mappingloader-5/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[02:52:27] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.19.3 -> 1.19 mappings...
[02:52:28] [Server thread/INFO]: [DeathCoordinates] Loading DeathCoordinates v1.12.1
[02:52:28] [Server thread/INFO]: [ChestRestock] Loading ChestRestock v2.3.2-b106
[02:52:28] [Server thread/INFO]: [HubThat] Loading HubThat v10.1.184
[02:52:28] [Server thread/INFO]: [Minepacks] Loading Minepacks v2.4.11-Release
[02:52:28] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[02:52:28] [Server thread/INFO]: [StaffChat] Loading StaffChat v2.3
[02:52:28] [Server thread/INFO]: [NewPlayerWelcome] Loading NewPlayerWelcome v1.0
[02:52:28] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.0-SNAPSHOT (b73-4f36112)
[02:52:28] [Server thread/INFO]: [floodgate] Took 349ms to boot Floodgate
[02:52:28] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[02:52:28] [Server thread/INFO]: [GroupManager] Loading GroupManager v2.9 (Phoenix)
[02:52:28] [Server thread/INFO]: [SimpleRename] Loading SimpleRename v13.8
[02:52:28] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v14.2.3
[02:52:28] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser-Spigot v2.1.0-SNAPSHOT
[02:52:28] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[02:52:28] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[02:52:28] [Server thread/INFO]: [LagAssist] Loading LagAssist v2.29.1
[02:52:28] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1
[02:52:29] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@40440cad]
[02:52:29] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.8
[02:52:29] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.0-dev+17-6e931b2
[02:52:29] [Server thread/INFO]: [MineableSpawners] Loading MineableSpawners v3.1.4
[02:52:29] [Server thread/INFO]: [RewardsLite] Loading RewardsLite v3.1.3
[02:52:29] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.7.5
[02:52:29] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[02:52:30] [Server thread/INFO]: [TCPShield] Loading TCPShield v2.6.1
[02:52:30] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.1.3
[02:52:30] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.20.0-dev+15-20011b9
[02:52:30] [Server thread/INFO]: [SuperbVote] Loading SuperbVote v0.5.5
[02:52:30] [Server thread/INFO]: [TAB] Loading TAB v3.2.0
[02:52:30] [Server thread/INFO]: [FirstJoinCommands] Loading FirstJoinCommands v3.8.5
[02:52:30] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.8-beta-01+cbb2ba7
[02:52:30] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.2.1-SNAPSHOT-c65a09c1
[02:52:30] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[02:52:30] [Server thread/INFO]: [Multiverse-Inventories] Loading Multiverse-Inventories vmaven-version-number
[02:52:30] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.0-dev+20-582a357
[02:52:30] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v20.1
[02:52:30] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.1
[02:52:30] [Server thread/INFO]: [ServerlistMOTD] Loading ServerlistMOTD vX-2021-11-23
[02:52:30] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2816)
[02:52:30] [Server thread/INFO]: [AdvancedCrates] Loading AdvancedCrates v3.6.2
[02:52:30] [Server thread/INFO]: [KeepChunks] Loading KeepChunks v1.6.10
[02:52:30] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.218
[02:52:30] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[02:52:30] [Server thread/INFO]: [SuperVanish] Loading SuperVanish v6.2.6
[02:52:30] [Server thread/INFO]: [ModelEngine] Loading ModelEngine vR3.1.2
[02:52:30] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.18
[02:52:30] [Server thread/INFO]: [Elevators] Loading Elevators v4.0.8
[02:52:30] [Server thread/INFO]: [GCore] Loading GCore v8.43.1
[02:52:30] [Server thread/INFO]: [MythicLib] Loading MythicLib v1.4.2
[02:52:30] [Server thread/INFO]: [MythicLib] Your server version is not compatible.
[02:52:30] [Server thread/WARN]: java.lang.ClassNotFoundException: io.lumine.mythic.lib.version.wrapper.VersionWrapper_1_19_R2
[02:52:30] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177)
[02:52:30] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124)
[02:52:30] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
[02:52:30] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[02:52:30] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:383)
[02:52:30] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:376)
[02:52:30] [Server thread/WARN]:     at MythicLib-1.4.2.jar//io.lumine.mythic.lib.version.ServerVersion.<init>(ServerVersion.java:15)
[02:52:30] [Server thread/WARN]:     at MythicLib-1.4.2.jar//io.lumine.mythic.lib.MythicLib.onLoad(MythicLib.java:88)
[02:52:30] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:442)
[02:52:30] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:273)
[02:52:30] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[02:52:30] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[02:52:30] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:52:30] [Server thread/INFO]: [FarmLimiter] Loading FarmLimiter v1.5.3
[02:52:30] [Server thread/INFO]: [LockettePro] Loading LockettePro v2.10.8
[02:52:30] [Server thread/INFO]: [DangerousCaves] Loading DangerousCaves v2.2.13;24
[02:52:30] [Server thread/INFO]: [GSit] Loading GSit v1.3.0
[02:52:30] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.4.4
[02:52:30] [Server thread/INFO]: [ChatManager] Loading ChatManager v3.7.6
[02:52:30] [Server thread/INFO]: [PvPManager] Loading PvPManager v3.10.9
[02:52:30] [Server thread/INFO]: [TitleManager] Loading TitleManager v2.3.6
[02:52:30] [Server thread/INFO]: [SimpleScore] Loading SimpleScore v3.12.2
[02:52:30] [Server thread/INFO]: [PlayerWarps] Loading PlayerWarps v6.18.1
[02:52:30] [Server thread/INFO]: [MCPets] Loading MCPets v3.0.2
[02:52:30] [Server thread/WARN]: [MCPets] : LuckPerms could not be found. Some features relating to giving permissions won't be available.
[02:52:30] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[02:52:30] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[02:52:30] [Server thread/INFO]: [CMILib] Loading CMILib v1.2.4.1
[02:52:30] [Server thread/INFO]: [Jobs] Loading Jobs v5.1.1.1
[02:52:30] [Server thread/INFO]: [MMOItems] Loading MMOItems v6.8.2
[02:52:30] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[02:52:30] [Server thread/ERROR]: [org.bukkit.craftbukkit.v1_19_R2.CraftServer] null initializing MMOItems v6.8.2 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at net.Indyuce.mmoitems.api.item.util.ConfigItems.<clinit>(ConfigItems.java:9) ~[MMOItems-6.8.2.jar:?]
    at net.Indyuce.mmoitems.manager.ConfigManager.<init>(ConfigManager.java:107) ~[MMOItems-6.8.2.jar:?]
    at net.Indyuce.mmoitems.MMOItems.onLoad(MMOItems.java:122) ~[MMOItems-6.8.2.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:442) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-343]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.lib.version.ServerVersion.isStrictlyHigher(int[])" because the return value of "io.lumine.mythic.lib.MythicLib.getVersion()" is null
    at io.lumine.mythic.lib.version.VersionMaterial.<init>(VersionMaterial.java:83) ~[MythicLib-1.4.2.jar:?]
    at io.lumine.mythic.lib.version.VersionMaterial.<init>(VersionMaterial.java:68) ~[MythicLib-1.4.2.jar:?]
    at io.lumine.mythic.lib.version.VersionMaterial.<clinit>(VersionMaterial.java:8) ~[MythicLib-1.4.2.jar:?]
    ... 8 more
[02:52:30] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.0
[02:52:30] [Server thread/INFO]: [GPFlags] Loading GPFlags v5.12.5
[02:52:30] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.12 (build 307)
[02:52:30] [Server thread/INFO]: [ChestShop] LockettePro version 2.10.8 loaded.
[02:52:30] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.8-beta-01+cbb2ba7 loaded.
[02:52:30] [Server thread/INFO]: [ChestShop] GriefPrevention version 16.18 loaded.
[02:52:30] [Server thread/INFO]: [DungeonSystem] Loading DungeonSystem v2.0.1
[02:52:30] [Server thread/INFO]: [QuestCreator] Loading QuestCreator v6.43.1
[02:52:30] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v3.3.2
[02:52:30] [Server thread/INFO]: [Vulcan] Loading Vulcan v2.7.1
[02:52:31] [Server thread/INFO]: [ChatItem] Loading ChatItem v2.4.5
[02:52:31] [Server thread/INFO]: [AdvancedEnchantments] Loading AdvancedEnchantments v9.0.0b47
[02:52:31] [Server thread/INFO]: [ItemsAdder] Loading ItemsAdder v3.3.0
[02:52:31] [Server thread/INFO]: [MagicCosmetics] Loading MagicCosmetics v2.1.1
[02:52:31] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.77.1
[02:52:31] [Server thread/INFO]: [MythicMobsGUI] Loading MythicMobsGUI v1.4.4
[02:52:31] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.6-Release
[02:52:31] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[02:52:31] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[02:52:31] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.21
[02:52:31] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b607
[02:52:31] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[02:52:31] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.20.0-dev+17-6e931b2 which is not a depend or softdepend of this plugin.
[02:52:31] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[02:52:31] [Server thread/WARN]: [Vault] Loaded class org.anjocaido.groupmanager.GroupManager from GroupManager v2.9 (Phoenix) which is not a depend or softdepend of this plugin.
[02:52:31] [Server thread/INFO]: [Vault] [Permission] GroupManager found: Waiting
[02:52:31] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[02:52:31] [Server thread/INFO]: [Vault] [Chat] GroupManager found: Waiting
[02:52:31] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[02:52:31] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1
[02:52:31] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[02:52:31] [Server thread/WARN]: [WorldEdit] Loaded class org.anjocaido.groupmanager.dataholder.worlds.WorldsHolder from GroupManager v2.9 (Phoenix) which is not a depend or softdepend of this plugin.
[02:52:31] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[02:52:31] [Server thread/WARN]: 
**********************************************
** This WorldEdit version does not fully support your version of Bukkit.
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**
** Please see https://worldedit.enginehub.org/en/latest/faq/#bukkit-adapters
**********************************************

[02:52:32] [Server thread/INFO]: Preparing level "world"
[02:52:32] [Server thread/INFO]: -------- World Settings For [world] --------
[02:52:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:52:32] [Server thread/INFO]: Item Merge Radius: 3.5
[02:52:32] [Server thread/INFO]: Item Despawn Rate: 6000
[02:52:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:52:32] [Server thread/INFO]: Simulation Distance: 4
[02:52:32] [Server thread/INFO]: View Distance: 7
[02:52:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:52:32] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:52:32] [Server thread/INFO]: Experience Merge Radius: 4.0
[02:52:32] [Server thread/INFO]: Mob Spawn Range: 3
[02:52:32] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa true
[02:52:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:52:32] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[02:52:32] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:52:32] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:52:32] [Server thread/INFO]: Max TNT Explosions: 100
[02:52:32] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[02:52:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:52:32] [Server thread/INFO]: Item Merge Radius: 3.5
[02:52:32] [Server thread/INFO]: Item Despawn Rate: 6000
[02:52:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:52:32] [Server thread/INFO]: Simulation Distance: 4
[02:52:32] [Server thread/INFO]: View Distance: 7
[02:52:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:52:32] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:52:32] [Server thread/INFO]: Experience Merge Radius: 4.0
[02:52:32] [Server thread/INFO]: Mob Spawn Range: 3
[02:52:32] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa true
[02:52:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:52:32] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[02:52:32] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:52:32] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:52:32] [Server thread/INFO]: Max TNT Explosions: 100
[02:52:32] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[02:52:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:52:32] [Server thread/INFO]: Item Merge Radius: 3.5
[02:52:32] [Server thread/INFO]: Item Despawn Rate: 6000
[02:52:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:52:32] [Server thread/INFO]: Simulation Distance: 4
[02:52:32] [Server thread/INFO]: View Distance: 7
[02:52:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:52:32] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:52:32] [Server thread/INFO]: Experience Merge Radius: 4.0
[02:52:32] [Server thread/INFO]: Mob Spawn Range: 3
[02:52:32] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:52:32] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa true
[02:52:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:52:32] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[02:52:32] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:52:32] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:52:32] [Server thread/INFO]: Max TNT Explosions: 100
[02:52:32] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[02:52:33] [Server thread/INFO]: Time elapsed: 123 ms
[02:52:33] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[02:52:33] [Server thread/INFO]: Time elapsed: 14 ms
[02:52:33] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[02:52:33] [Server thread/INFO]: Time elapsed: 15 ms
[02:52:33] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.8
[02:52:33] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[02:52:33] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[02:52:33] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[02:52:33] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.5.1 which is not a depend or softdepend of this plugin.
[02:52:33] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[02:52:33] [Server thread/INFO]: [FG] Enabling ForcedGrammar v1.8.1*
[02:52:33] [Server thread/INFO]: [FreedomChat] Enabling FreedomChat v1.3.1
[02:52:33] [Server thread/INFO]: [PreventEndermites] Enabling PreventEndermites v1.0-SNAPSHOT
[02:52:33] [Server thread/INFO]: [PreventEndermites] [STDOUT] Endermite Spawns Blocked
[02:52:33] [Server thread/WARN]: Nag author(s): '[]' of 'PreventEndermites' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:52:33] [Server thread/INFO]: [BalancedVillagerTrades] Enabling BalancedVillagerTrades v2.0-beta5
[02:52:33] [Server thread/INFO]: [BalancedVillagerTrades] Using Paper villager reputation API
[02:52:33] [Server thread/WARN]: [BalancedVillagerTrades] Using 'villager: profession/type ...' to target villagers is obsolete.
[02:52:33] [Server thread/WARN]: [BalancedVillagerTrades] See https://github.com/jacky8399/BalancedVillagerTrades/wiki/Fields#villager-properties for a better way to target specific villagers.
[02:52:33] [Server thread/WARN]: [BalancedVillagerTrades] Falling back to old item predicate for ingredient-0.
[02:52:33] [Server thread/INFO]: [BalancedVillagerTrades] Loaded 3 recipes
[02:52:33] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[02:52:33] [Server thread/ERROR]: [PL-Hide] The option included-groups is missing for the group default
[02:52:33] [Server thread/INFO]: [PlayerReport] Enabling PlayerReport v3.3.6
[02:52:33] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v6.1.2
[02:52:33] [Server thread/INFO]: [VoxelSniper] Registered 69 Sniper Brushes with 137 handles.
[02:52:33] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[02:52:33] [Server thread/INFO]: [InventoryKeeper] Enabling InventoryKeeper v1.3.1
[02:52:33] [Server thread/INFO]: [InventoryKeeper] Server version: v1_19_R2
[02:52:33] [Server thread/INFO]: [InventoryKeeper] Loading Config...
[02:52:33] [Server thread/ERROR]: [InventoryKeeper] Enchantment durability is not valid!
[02:52:33] [Server thread/INFO]: [InventoryKeeper] Initializing player data...
[02:52:33] [Server thread/INFO]: [InventoryKeeper] Initializing commands...
[02:52:33] [Server thread/INFO]: [InventoryKeeper] Initializing listeners...
[02:52:33] [Server thread/INFO]: [InventoryKeeper]   PlaceholderAPI Found! Hooking in...
[02:52:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: inventorykeeper [1.3.1]
[02:52:33] [Server thread/INFO]: [InventoryKeeper] Plugin loaded! Enjoy it!:)
[02:52:33] [Server thread/INFO]: [InventoryKeeper] Welcome to donate us:
[02:52:33] [Server thread/INFO]: [InventoryKeeper] paypal.me/starchier
[02:52:33] [Server thread/INFO]: [NoMobGriefing] Enabling NoMobGriefing v3.0.3
[02:52:33] [Server thread/INFO]: [NoMobGriefing] ***NoMobGriefing plugin by PinkNeonDino has been enabled.***
[02:52:33] [Server thread/INFO]: [AdventCalendar] Enabling AdventCalendar v1.1.4
[02:52:33] [Server thread/INFO]: [AdventCalendar] Version 1.1.0 Successfully Loaded!
[02:52:33] [Server thread/INFO]: [AdventCalendar] [STDOUT] MENU MANAGER HAS BEEN SETUP
[02:52:33] [Server thread/WARN]: Nag author(s): '[CaelenO42]' of 'AdventCalendar' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:52:33] [Server thread/INFO]: [AdventCalendar] [STDOUT] 
[02:52:33] [Server thread/INFO]: [AdventCalendar] [STDOUT] ClickGUI
[02:52:33] [Server thread/INFO]: [AdventCalendar] [STDOUT] PRMain
[02:52:33] [Server thread/INFO]: [AdventCalendar] [STDOUT] PRMain
[02:52:33] [Server thread/INFO]: [AdventCalendar] [ACF] Enabled Asynchronous Tab Completion Support!
[02:52:33] [Server thread/INFO]: [AdventCalendar] Userdata folder found!
[02:52:33] [Server thread/INFO]: [TimeLockX] Enabling TimeLockX v1.0*
[02:52:33] [Server thread/INFO]: [TimeLockX] [STDOUT] 

TimeLockX has been loaded!


[02:52:33] [Server thread/WARN]: Nag author(s): '[Skillux]' of 'TimeLockX' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:52:33] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.5.1
[02:52:33] [Server thread/INFO]: [DailyRewardsPlus] Enabling DailyRewardsPlus v1.2.3
[02:52:33] [Server thread/INFO]: [DailyRewardsPlus] [STDOUT] [Spigotunlocked.net] - -Michy-
[02:52:33] [Server thread/WARN]: Nag author(s): '[]' of 'DailyRewardsPlus' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:52:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: daily [1.0.0]
[02:52:33] [Server thread/INFO]: [DailyRewards+] Detected Placeholder API, Enabled plugin support
[02:52:33] [Server thread/INFO]: [DailyRewards+] Cleaning up...
[02:52:33] [Server thread/INFO]: [DailyRewards+] Has started successfully!
[02:52:33] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.5.1
[02:52:33] [Server thread/INFO]: [TTA] Enabling TTA v5.5*
[02:52:33] [Server thread/INFO]: 
[02:52:33] [Server thread/INFO]: =========>[TTA Terms]<=========
[02:52:33] [Server thread/INFO]: -> You are not permitted to claim this plugin as your own!
[02:52:33] [Server thread/INFO]: -> You are not permitted to decompiling the plugin's sourcecode!
[02:52:33] [Server thread/INFO]: -> You are not permitted to modify the code or the plugin and call it your own!
[02:52:33] [Server thread/INFO]: -> You are not permitted to redistributing this plugin as your own!
[02:52:33] [Server thread/INFO]: ======>[Terms Accepted!]<======
[02:52:33] [Server thread/INFO]: 
[02:52:33] [Server thread/INFO]: [TTA] Engine: Paper
[02:52:33] [Server thread/INFO]: [TTA] Minecraft 1.19 Support enabled!
[02:52:33] [Server thread/INFO]: [TTA] Version: 5.5 by [Herbystar] enabled!
[02:52:33] [Server thread/INFO]: [AntiNetherRoof] Enabling AntiNetherRoof v1.2.4*
[02:52:33] [Server thread/INFO]: AntiNetherRoof 1.2.4
[02:52:33] [Server thread/INFO]: Developer: Discord: iAngry#0932 Spigot: gregoryg
[02:52:33] [Server thread/INFO]: Enabled
[02:52:33] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[02:52:33] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[02:52:34] [Server thread/INFO]: [ClearLag] Loading modules...
[02:52:34] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R2.MinecraftServer)
[02:52:34] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[02:52:34] [Server thread/WARN]: [ClearLag] Config Read Error at line auto-removal.warnings:
[02:52:34] [Server thread/WARN]: [ClearLag] Failed to read 'time:' variable in 
[02:52:34] [Server thread/WARN]: [ClearLag] Insure you have a NUMBER after 'time:' specified
[02:52:34] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[02:52:34] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[02:52:34] [Thread-8/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[02:52:34] [Server thread/INFO]: [ResourcePackDownloader] Enabling ResourcePackDownloader v7.4*
[02:52:34] [Server thread/INFO]: ------------------------------
[02:52:34] [Server thread/INFO]: Resource Pack Downloader
[02:52:34] [Server thread/INFO]:  
[02:52:34] [Server thread/INFO]: Running version: 7.4
[02:52:34] [Server thread/INFO]: Author: Joshb_
[02:52:34] [Server thread/INFO]:  
[02:52:34] [Server thread/INFO]: ------------------------------
[02:52:34] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[02:52:34] [Server thread/INFO]: [BuycraftX] Validating your server key...
[02:52:34] [Thread-8/INFO]: [ClearLag] No updates found!
[02:52:35] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[02:52:35] [Server thread/INFO]: [NocsyItems] Enabling NocsyItems v2.0
[02:52:35] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.1
[02:52:35] [Server thread/INFO]: [Votifier] Loaded token for website: default
[02:52:35] [Server thread/INFO]: [Votifier] Using NIO transport to accept votes.
[02:52:35] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[02:52:35] [Server thread/INFO]: [DeathCoordinates] Enabling DeathCoordinates v1.12.1
[02:52:35] [Server thread/INFO]: [DeathCoordinates] Has been enabled! Version: 1.12.1
[02:52:35] [Server thread/INFO]: [DeathCoordinates] Thanks for using my plugin!  ~Ajneb97
[02:52:35] [Votifier NIO boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0]:8192.
[02:52:35] [Server thread/WARN]: [DeathCoordinates] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[02:52:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deathcoordinates [1.12.1]
[02:52:35] [Server thread/INFO]: [ChestRestock] Enabling ChestRestock v2.3.2-b106*
[02:52:35] [Server thread/WARN]: [ChestRestock] The world 'Aettioron' is not loaded!
[02:52:35] [Server thread/INFO]: [ChestRestock 2.3.2-b106] enabled.
[02:52:35] [Server thread/INFO]: [HubThat] Enabling HubThat v10.1.184
[02:52:35] [Server thread/WARN]: [HubThat] HubThat: Checking if config exists...
[02:52:35] [Server thread/INFO]: [HubThat] All files are working correctly.
[02:52:35] [Server thread/INFO]: [HubThat] Plugin HubThat Successfully Loaded!
[02:52:35] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.11-Release
[02:52:35] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[02:52:35] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[02:52:35] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[02:52:36] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[02:52:36] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[02:52:36] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[02:52:36] [Server thread/INFO]: [Minepacks] Loading item translations ...
[02:52:36] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[02:52:36] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[02:52:36] [Server thread/INFO]: [StaffChat] Enabling StaffChat v2.3*
[02:52:36] [Server thread/INFO]: [NewPlayerWelcome] Enabling NewPlayerWelcome v1.0*
[02:52:36] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.0-SNAPSHOT (b73-4f36112)
[02:52:36] [Server thread/INFO]: [GroupManager] Enabling GroupManager v2.9 (Phoenix)
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: aettioron
[02:52:36] [Server thread/WARN]: Nag author(s): '[AnjoCaido, Gabriel Couto, ElgarL]' of 'GroupManager' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: allseasonsbw
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: ba
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\ba\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: bedwars
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: bedwars1
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: bt
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\bt\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: bt1
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\bt1\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: bt3
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: deep_dark_arena
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\deep_dark_arena\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: hub
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: is
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\is\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: mcc
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\mcc\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: olymp
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: smp
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\smp\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: theshanty
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: wildwest
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: witp
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: world
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: world1
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world1\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: world2
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world2\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: world3
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: world4
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: world5
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_moderator' not found for group Moderator. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_builder' not found for group Builder. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:vanish_admin' not found for group Admin. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:groupmanager_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:bukkit_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:essentials_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/ERROR]: [GroupManager] [STDERR] [GroupManager] Inherited group 'g:towny_default' not found for group Default. Ignoring entry in file: plugins\GroupManager\worlds\world5\groups.yml
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: world_nether
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] World Found: world_the_end
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] Superperms support enabled.
[02:52:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: groupmanager [1.0.0]
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] Add-ons: PlaceholderAPI v2.11.2
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] Scheduled Data Saving is set for every 10 minutes!
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] Backups will be retained for 24 hours!
[02:52:36] [Server thread/INFO]: [GroupManager] [STDOUT] [GroupManager] version 2.9 (Phoenix) is enabled!
[02:52:36] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[02:52:36] [Server thread/INFO]: [Vault][Permission] GroupManager hooked.
[02:52:36] [Server thread/INFO]: [Vault] [Vault][Chat] GroupManager - Chat hooked.
[02:52:36] [Server thread/INFO]: [SimpleRename] Enabling SimpleRename v13.8
[02:52:36] [Server thread/INFO]: SimpleRename enabled!
[02:52:36] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.3
[02:52:36] [Server thread/ERROR]: [SkinsRestorer] Your Minecraft version is not supported by this version of SkinsRestorer! Is there a newer version available? If not, join our discord server!
net.skinsrestorer.bukkit.utils.NoMappingException: No mapping for this minecraft version found! (1afe2ffe8a9d7fc510442a168b3d4338)
    at net.skinsrestorer.bukkit.skinrefresher.MappingSpigotSkinRefresher.<init>(MappingSpigotSkinRefresher.java:44) ~[SkinsRestorer.jar:?]
    at net.skinsrestorer.bukkit.SkinApplierBukkit.selectSpigotRefresher(SkinApplierBukkit.java:96) ~[SkinsRestorer.jar:?]
    at net.skinsrestorer.bukkit.SkinApplierBukkit.detectRefresh(SkinApplierBukkit.java:78) ~[SkinsRestorer.jar:?]
    at net.skinsrestorer.bukkit.SkinApplierBukkit.<init>(SkinApplierBukkit.java:67) ~[SkinsRestorer.jar:?]
    at net.skinsrestorer.bukkit.SkinsRestorer.pluginStartup(SkinsRestorer.java:166) ~[SkinsRestorer.jar:?]
    at net.skinsrestorer.bukkit.SkinsRestorer.onEnable(SkinsRestorer.java:144) ~[SkinsRestorer.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-343]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-343]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:52:36] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.1.0-SNAPSHOT
[02:52:36] [Server thread/INFO]: [LagAssist] Enabling LagAssist v2.29.1
[02:52:37] [Server thread/INFO]: LagAssist » Enabling Systems:
[02:52:37] [Server thread/INFO]:     [] Economy manager
[02:52:37] [Server thread/INFO]:     [] Smart Mob Tools.
[02:52:37] [Server thread/INFO]:     [] MicroFeatures.
[02:52:37] [Server thread/INFO]:     [] Hopper Manager.
[02:52:37] [Server thread/INFO]:     [] Redstone Culler.
[02:52:37] [Server thread/INFO]:     [] Physics-Tweaker.
[02:52:37] [Server thread/INFO]:     [] Lag Monitor.
[02:52:37] [Server thread/INFO]:     [] MapVisualizer.
[02:52:37] [Server thread/INFO]:     [] Chunk Analyser.
[02:52:37] [Server thread/INFO]:     [] Chunk Limiter.
[02:52:37] [Server thread/INFO]:     [] StatsAnalyse.
[02:52:37] [Server thread/INFO]:     [] Spawner Manager.
[02:52:37] [Server thread/INFO]:     [] ChunkManager.
[02:52:37] [Server thread/INFO]:     [] GUI.
[02:52:37] [Server thread/INFO]:     [] Injecting PacketListener.
[02:52:37] [Server thread/INFO]:     [] API Tools.
[02:52:37] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.8
[02:52:37] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[02:52:37] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+17-6e931b2
[02:52:37] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[02:52:37] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsChat to the same version.
[02:52:37] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsSpawn to the same version.
[02:52:38] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[02:52:38] [Server thread/INFO]: [Essentials] Using locale en_US
[02:52:38] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[02:52:38] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[02:52:38] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[02:52:38] [Server thread/INFO]: [Essentials] Using Vault based permissions (GroupManager)
[02:52:38] [Server thread/INFO]: [MineableSpawners] Enabling MineableSpawners v3.1.4
[02:52:38] [Server thread/INFO]: [RewardsLite] Enabling RewardsLite v3.1.3
[02:52:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rewardslite [1.0.0]
[02:52:38] [Server thread/INFO]: [RewardsLite] Loaded 12 rewards.
[02:52:38] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.7.5
[02:52:38] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[02:52:38] [Server thread/INFO]: [LiteBans] Connecting to database...
[02:52:38] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[02:52:38] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[02:52:38] [Server thread/INFO]: [LiteBans] Connected to [jdbc:h2://C:\Users\marti\Desktop\FOLDA\plugins\LiteBans\litebans] (165.1 ms).
[02:52:38] [Server thread/INFO]: [LiteBans] Database connection fully initialized (168.3 ms).
[02:52:38] [Server thread/INFO]: [LiteBans] v2.7.5 enabled. Startup took 366 ms.
[02:52:38] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[02:52:38] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[02:52:38] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[02:52:39] [Server thread/INFO]: -------- World Settings For [Olymp] --------
[02:52:39] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:52:39] [Server thread/INFO]: Item Merge Radius: 3.5
[02:52:39] [Server thread/INFO]: Item Despawn Rate: 6000
[02:52:39] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:52:39] [Server thread/INFO]: Simulation Distance: 4
[02:52:39] [Server thread/INFO]: View Distance: 7
[02:52:39] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:52:39] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:52:39] [Server thread/INFO]: Experience Merge Radius: 4.0
[02:52:39] [Server thread/INFO]: Mob Spawn Range: 3
[02:52:39] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa true
[02:52:39] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:52:39] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[02:52:39] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:52:39] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:52:39] [Server thread/INFO]: Max TNT Explosions: 100
[02:52:39] [Server thread/INFO]: Preparing start region for dimension minecraft:olymp
[02:52:39] [Server thread/INFO]: Time elapsed: 51 ms
[02:52:39] [Server thread/INFO]: -------- World Settings For [Durel] --------
[02:52:39] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:52:39] [Server thread/INFO]: Item Merge Radius: 3.5
[02:52:39] [Server thread/INFO]: Item Despawn Rate: 6000
[02:52:39] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:52:39] [Server thread/INFO]: Simulation Distance: 4
[02:52:39] [Server thread/INFO]: View Distance: 7
[02:52:39] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:52:39] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:52:39] [Server thread/INFO]: Experience Merge Radius: 4.0
[02:52:39] [Server thread/INFO]: Mob Spawn Range: 3
[02:52:39] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa true
[02:52:39] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:52:39] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[02:52:39] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:52:39] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:52:39] [Server thread/INFO]: Max TNT Explosions: 100
[02:52:39] [Server thread/INFO]: Preparing start region for dimension minecraft:durel
[02:52:39] [Server thread/INFO]: Time elapsed: 10 ms
[02:52:39] [Server thread/INFO]: -------- World Settings For [Kenken] --------
[02:52:39] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:52:39] [Server thread/INFO]: Item Merge Radius: 3.5
[02:52:39] [Server thread/INFO]: Item Despawn Rate: 6000
[02:52:39] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:52:39] [Server thread/INFO]: Simulation Distance: 4
[02:52:39] [Server thread/INFO]: View Distance: 7
[02:52:39] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:52:39] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:52:39] [Server thread/INFO]: Experience Merge Radius: 4.0
[02:52:39] [Server thread/INFO]: Mob Spawn Range: 3
[02:52:39] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:52:39] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa true
[02:52:39] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:52:39] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[02:52:39] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:52:39] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:52:39] [Server thread/INFO]: Max TNT Explosions: 100
[02:52:39] [Server thread/INFO]: Preparing start region for dimension minecraft:kenken
[02:52:39] [Server thread/INFO]: Time elapsed: 24 ms
[02:52:39] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[02:52:39] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[02:52:39] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[02:52:39] [Server thread/INFO]: [TCPShield] Enabling TCPShield v2.6.1
[02:52:39] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.1.3
[02:52:39] [Server thread/INFO]:  
[02:52:39] [Server thread/INFO]: __________________________________________________________
[02:52:39] [Server thread/INFO]:  
[02:52:39] [Server thread/INFO]:                        TradeSystem [2.1.3]
[02:52:39] [Server thread/INFO]:  
[02:52:39] [Server thread/INFO]: Status:
[02:52:39] [Server thread/INFO]:  
[02:52:39] [Server thread/INFO]: MC-Version: 1.19.3 (R0.1-SNAPSHOT, Paper)
[02:52:39] [Server thread/INFO]:  
[02:52:39] [Server thread/INFO]:   > Loading sounds
[02:52:39] [Server thread/INFO]:   > Loading blacklist
[02:52:39] [Server thread/INFO]:     ...got 3 blocked item(s)
[02:52:39] [Server thread/INFO]:   > Loading layouts
[02:52:40] [Server thread/INFO]:     ...got 4 layout(s)
[02:52:40] [Server thread/INFO]:   > Database logging is disabled
[02:52:40] [Server thread/INFO]:  
[02:52:40] [Server thread/INFO]: Finished (364ms)
[02:52:40] [Server thread/INFO]:  
[02:52:40] [Server thread/INFO]: __________________________________________________________
[02:52:40] [Server thread/INFO]:  
[02:52:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[02:52:40] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+15-20011b9
[02:52:40] [Server thread/WARN]: [EssentialsChat] Version mismatch! Please update all Essentials jars to the same version.
[02:52:40] [Server thread/INFO]: [EssentialsChat] Secure signed chat and previews are enabled.
[02:52:40] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[02:52:40] [Server thread/INFO]: [SuperbVote] Enabling SuperbVote v0.5.5
[02:52:40] [Server thread/INFO]: [SuperbVote] Using clip's PlaceholderAPI to provide extra placeholders.
[02:52:40] [Server thread/INFO]: [TAB] Enabling TAB v3.2.0
[02:52:40] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[02:52:40] [Server thread/INFO]: [TAB] Loaded NMS hook in 37ms
[02:52:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.2.0]
[02:52:40] [Server thread/INFO]: [TAB] Enabled in 68ms
[02:52:40] [Server thread/INFO]: [FirstJoinCommands] Enabling FirstJoinCommands v3.8.5*
[02:52:40] [Server thread/INFO]: FirstJoinCommands V3.8.5 Has been enabled!
[02:52:40] [Server thread/INFO]: [FirstJoinCommands] FirstJoinCommands is now loaded!
[02:52:40] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7
[02:52:40] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[02:52:40] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[02:52:40] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[02:52:40] [Server thread/INFO]: [WorldGuard] (Olymp) TNT ignition is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (Olymp) Lighters are PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (Olymp) Lava fire is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (Olymp) Fire spread is UNRESTRICTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Olymp'
[02:52:40] [Server thread/INFO]: [WorldGuard] (Durel) TNT ignition is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (Durel) Lighters are PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (Durel) Lava fire is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (Durel) Fire spread is UNRESTRICTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Durel'
[02:52:40] [Server thread/INFO]: [WorldGuard] (Kenken) TNT ignition is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (Kenken) Lighters are PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (Kenken) Lava fire is PERMITTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] (Kenken) Fire spread is UNRESTRICTED.
[02:52:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Kenken'
[02:52:40] [Server thread/INFO]: [WorldGuard] Loading region data...
[02:52:40] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-SNAPSHOT-c65a09c1
[02:52:41] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
[02:52:41] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[02:52:41] [Server thread/WARN]: [MythicMobs] --====|||| Mythic ||||====--
[02:52:41] [Server thread/WARN]: [MythicMobs] This version of Mythic is not fully compatible with your version of Bukkit.
[02:52:41] [Server thread/WARN]: [MythicMobs] Some features may be limited or disabled until you use a compatible version.
[02:52:41] [Server thread/WARN]: [MythicMobs] Loaded class org.slf4j.impl.StaticLoggerBinder from DiscordSRV v1.26.0 which is not a depend or softdepend of this plugin.
[02:52:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 44 ms to scan 1 urls, producing 4 keys and 14 values 
[02:52:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 9 ms to scan 1 urls, producing 4 keys and 14 values 
[02:52:41] [Server thread/WARN]: [MythicMobs] Loaded class me.ryanhamshire.GriefPrevention.GriefPrevention from GriefPrevention v16.18 which is not a depend or softdepend of this plugin.
[02:52:41] [Server thread/INFO]: [MythicMobs] MythicMobs GriefPrevention Support has been enabled!
[02:52:41] [Server thread/WARN]: [MythicMobs] Loaded class com.gmail.nossr50.mcMMO from mcMMO v2.1.218 which is not a depend or softdepend of this plugin.
[02:52:41] [Server thread/INFO]: [MythicMobs] MythicMobs mcMMO Support has been enabled!
[02:52:41] [Server thread/INFO]: [MythicMobs] MythicMobs MMOItems Support has been enabled!
[02:52:41] [Server thread/INFO]: [MythicMobs] MythicMobs MythicLib Support has been enabled!
[02:52:41] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[02:52:41] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[02:52:41] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[02:52:41] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[02:52:41] [Server thread/INFO]: [MythicMobs] Base directory C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\SavedData
[02:52:41] [Server thread/INFO]: [MythicMobs] Module directory C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\SavedData\worlds
[02:52:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 20 ms to scan 1 urls, producing 11 keys and 445 values 
[02:52:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 37 ms to scan 1 urls, producing 29 keys and 881 values 
[02:52:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 11 ms to scan 1 urls, producing 9 keys and 152 values 
[02:52:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 2 keys and 11 values 
[02:52:41] [Server thread/INFO]: [MythicMobs] LOADED
[02:52:41] [Server thread/INFO]: [MythicMobs] Loading Packs...
[02:52:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\DungeonBandit\packinfo.yml
[02:52:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\littleroom\packinfo.yml
[02:52:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\MexBot_GlobalAssets\packinfo.yml
[02:52:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\MexBot_OutlandPack\packinfo.yml
[02:52:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\MythicBarrel's Waterlogged Vol.3\packinfo.yml
[02:52:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\Nocsy\packinfo.yml
[02:52:41] [Server thread/INFO]: [MythicMobs] Loading Items...
[02:52:42] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item 20attackspeed
[02:52:42] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\MexBot_OutlandPack\Items\attackspeed.yml
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Error Message: Attributes are configured incorrectly.
[02:52:42] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item DungeonBanditCutlass
[02:52:42] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\DungeonBandit\Items\DungeonBanditsItemsMEG.yml
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Error Message: Attributes are configured incorrectly.
[02:52:42] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item DungeonBanditDagger
[02:52:42] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\DungeonBandit\Items\DungeonBanditsItemsMEG.yml
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Error Message: Attributes are configured incorrectly.
[02:52:42] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item DungeonBanditSpear
[02:52:42] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\DungeonBandit\Items\DungeonBanditsItemsMEG.yml
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Error Message: Attributes are configured incorrectly.
[02:52:42] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item DungeonBanditBattleaxe
[02:52:42] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\DungeonBandit\Items\DungeonBanditsItemsMEG.yml
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Error Message: Attributes are configured incorrectly.
[02:52:42] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item DungeonBanditShield
[02:52:42] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Packs\DungeonBandit\Items\DungeonBanditsItemsMEG.yml
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Error Message: Attributes are configured incorrectly.
[02:52:42] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[02:52:42] [Server thread/INFO]: [MythicMobs] Loading Skills...
[02:52:42] [Server thread/WARN]: [MythicMobs] Failed to construct mechanic effect:firework{t=3;d=1;f=true;tr=true} @origin
[02:52:42] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[02:52:42] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:79)
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:483)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.SkillExecutor.getMechanic(SkillExecutor.java:243)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.MetaSkill.<init>(MetaSkill.java:172)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:101)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:84)
[02:52:42] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[02:52:42] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[02:52:42] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[02:52:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[02:52:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:52:42] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: No enum constant org.bukkit.FireworkEffect.Type.3
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:273)
[02:52:42] [Server thread/WARN]:     at org.bukkit.FireworkEffect$Type.valueOf(FireworkEffect.java:21)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.adapters.BukkitFirework.<init>(BukkitFirework.java:40)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createFirework(BukkitBootstrap.java:272)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.mechanics.FireworkEffect.<init>(FireworkEffect.java:74)
[02:52:42] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:67)
[02:52:42] [Server thread/WARN]:     ... 19 more
[02:52:42] [Server thread/WARN]: [MythicMobs] Failed to construct mechanic effect:firework{t=3;d=1;f=true;tr=true} @origin
[02:52:42] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[02:52:42] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:79)
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:483)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.SkillExecutor.getMechanic(SkillExecutor.java:243)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.MetaSkill.<init>(MetaSkill.java:172)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:101)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:84)
[02:52:42] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[02:52:42] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[02:52:42] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[02:52:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[02:52:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:52:42] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: No enum constant org.bukkit.FireworkEffect.Type.3
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:273)
[02:52:42] [Server thread/WARN]:     at org.bukkit.FireworkEffect$Type.valueOf(FireworkEffect.java:21)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.adapters.BukkitFirework.<init>(BukkitFirework.java:40)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createFirework(BukkitBootstrap.java:272)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.mechanics.FireworkEffect.<init>(FireworkEffect.java:74)
[02:52:42] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:67)
[02:52:42] [Server thread/WARN]:     ... 19 more
[02:52:42] [Server thread/WARN]: [MythicMobs] Failed to construct mechanic effect:firework{t=3;d=1;f=true;tr=true} @origin
[02:52:42] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[02:52:42] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:79)
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:483)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.SkillExecutor.getMechanic(SkillExecutor.java:243)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.MetaSkill.<init>(MetaSkill.java:172)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:101)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:84)
[02:52:42] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[02:52:42] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[02:52:42] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[02:52:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[02:52:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[02:52:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:52:42] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: No enum constant org.bukkit.FireworkEffect.Type.3
[02:52:42] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:273)
[02:52:42] [Server thread/WARN]:     at org.bukkit.FireworkEffect$Type.valueOf(FireworkEffect.java:21)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.adapters.BukkitFirework.<init>(BukkitFirework.java:40)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createFirework(BukkitBootstrap.java:272)
[02:52:42] [Server thread/WARN]:     at MythicMobs-5.2.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.mechanics.FireworkEffect.<init>(FireworkEffect.java:74)
[02:52:42] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:67)
[02:52:42] [Server thread/WARN]:     ... 19 more
[02:52:42] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic runaitargetselector
[02:52:42] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\minotaur.yml
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'goal' attribute is required.
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: runaitargetselector{goal=clear}
[02:52:42] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic runaitargetselector
[02:52:42] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\minotaur.yml
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'goal' attribute is required.
[02:52:42] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: runaitargetselector{goal=players}
[02:52:44] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[02:52:44] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[02:52:44] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: SummonSkeletons | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\ExampleSkills.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SkeletalMinion;amount=2;noise=5}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: SummonSkeletons | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\ExampleSkills.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SkeletalMinion;amount=2;noise=5}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: SummonSkeletons | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\ExampleSkills.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SkeletalMinion;amount=2;noise=5}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrine_alexCROSSBOWfireworkHIT | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\alex.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=herobrine_alex_fireworkFX;a=3;r=3;yr=4}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrine_alexAXE | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\alex.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=herobrine_alex_axe;onHit=herobrine_alexAXEHIT;v=13;i=1;hR=1;vR=1;sfo=1.25;tyo=1;hnp=true;syo=2}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrine_alexFISHING | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\alex.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=herobrine_alex_bobber}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrine_alexfishinglineHIT | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\alex.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=herobrine_alex_bobber;ctt=true}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrineCROSSBOWfireworkHIT | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\herobrine.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=herobrine_fireworkFX;a=3;r=3;yr=4}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrineAXE | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\herobrine.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=herobrine_axe;onHit=herobrineAXEHIT;v=13;i=1;hR=1;vR=1;sfo=1.25;tyo=1;hnp=true;syo=2}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrineFISHING | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\herobrine.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=herobrine_bobber}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrinefishinglineHIT | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\herobrine.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=herobrine_bobber;ctt=true}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrine_zombieCROSSBOWfireworkHIT | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\zombie.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=herobrine_zombie_fireworkFX;a=3;r=3;yr=4}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrine_zombieAXE | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\zombie.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=herobrine_zombie_axe;onHit=herobrine_zombieAXEHIT;v=13;i=1;hR=1;vR=1;sfo=1.25;tyo=1;hnp=true;syo=2}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrine_zombieFISHING | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\zombie.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=herobrine_zombie_bobber}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Skill: herobrine_zombiefishinglineHIT | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Skills\littleroom\herobrine\zombie.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=herobrine_zombie_bobber;ctt=true}
[02:52:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mob: AnimalForestAlphaWolfNonMeg | File: C:\Users\marti\Desktop\FOLDA\plugins\MythicMobs\Mobs\ForestAnimalsMobs.yml
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[02:52:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=AnimalForestWolf;amount=2;radius=3;summonerIsOwner=true}
[02:52:44] [Server thread/INFO]: [MythicMobs] ✓ Loaded 193 mobs.
[02:52:44] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1 vanilla mob overrides.
[02:52:44] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[02:52:44] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1463 skills.
[02:52:44] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[02:52:44] [Server thread/INFO]: [MythicMobs] ✓ Loaded 187 mythic items.
[02:52:44] [Server thread/INFO]: [MythicMobs] ✓ Loaded 99 drop tables.
[02:52:44] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[02:52:44] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[02:52:44] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[02:52:44] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.2.1 ( build c65a09c1 ) has been successfully loaded!
[02:52:44] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories vmaven-version-number
[02:52:44] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'default' are not loaded: world4, world3
[02:52:44] [Server thread/INFO]: [Multiverse-Inventories maven-version-number] enabled.
[02:52:44] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+20-582a357
[02:52:44] [Server thread/WARN]: [EssentialsSpawn] Version mismatch! Please update all Essentials jars to the same version.
[02:52:44] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[02:52:44] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v20.1
[02:52:44] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[02:52:44] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[02:52:44] [Server thread/INFO]: --------------------
[02:52:44] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[02:52:44] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[02:52:44] [Server thread/INFO]: --------------------
[02:52:44] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[02:52:44] [Server thread/INFO]: [WorldGuardExtraFlags] Loading chunks for region spawn located in world due to chunk-unload flag being deny
[02:52:48] [Server thread/INFO]: [ServerlistMOTD] Enabling ServerlistMOTD vX-2021-11-23*
[02:52:48] [Server thread/INFO]: [ServerlistMOTD] Loaded userdata from IP_UUID.dat(13816bytes) into memory in 2ms.
[02:52:48] [Server thread/INFO]: [ServerlistMOTD] Hooking into Vault.
[02:52:48] [Server thread/INFO]: [ServerlistMOTD] Using com.earth2me.essentials.economy.vault.VaultEconomyProvider@1beb0366 via Vault.
[02:52:48] [Server thread/INFO]: [ServerlistMOTD] Hooking into PlaceholderAPI.
[02:52:48] [Server thread/INFO]: [ServerlistMOTD] Hooking into ProtocolLib.
[02:52:48] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2816)
[02:52:48] [Server thread/INFO]: [Citizens] Loading external libraries
[02:52:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[02:52:48] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[02:52:48] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.6.2
[02:52:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedcrates [3.6.2]
[02:52:49] [Thread-15/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package de.tr7zw.advancedcrates.nbtapi' seems to be outdated!
[02:52:49] [Thread-15/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.1-SNAPSHOT' Newest Version: 2.11.1'
[02:52:49] [Thread-15/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[02:52:51] [Server thread/INFO]: [KeepChunks] Enabling KeepChunks v1.6.10
[02:52:51] [Server thread/INFO]: 
[02:52:51] [Server thread/INFO]:  _     _                   _______ _                 _          
[02:52:51] [Server thread/INFO]: (_)   | |                 (_______) |               | |  v1.6.10
[02:52:51] [Server thread/INFO]:  _____| |_____ _____ ____  _      | |__  _   _ ____ | |  _  ___ 
[02:52:51] [Server thread/INFO]: |  _   _) ___ | ___ |  _ \| |     |  _ \| | | |  _ \| |_/ )/___)
[02:52:51] [Server thread/INFO]: | |  \ \| ____| ____| |_| | |_____| | | | |_| | | | |  _ (|___ |
[02:52:51] [Server thread/INFO]: |_|   \_)_____)_____)  __/ \______)_| |_|____/|_| |_|_| \_|___/ 
[02:52:51] [Server thread/INFO]:                     |_|                                         
[02:52:51] [Server thread/INFO]: 
[02:52:51] [Server thread/INFO]: [KeepChunks] KeepChunks v1.6.10 has been enabled
[02:52:51] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.218
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
[02:52:51] [Server thread/INFO]: [mcMMO] Loading locale from plugins\mcMMO\locales\locale_override.properties
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
[02:52:51] [Server thread/INFO]: [mcMMO] Platform String: 1.19.3-R0.1-SNAPSHOT
[02:52:51] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.3
[02:52:51] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[02:52:51] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
[02:52:51] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
[02:52:51] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
[02:52:51] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
[02:52:51] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
[02:52:52] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
[02:52:52] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
[02:52:52] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
[02:52:52] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
[02:52:52] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
[02:52:52] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
[02:52:52] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
[02:52:52] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
[02:52:52] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
[02:52:52] [Server thread/INFO]: [mcMMO] (plugins\mcMMO\flatfile\mcmmo.users) Validating database file..
[02:52:52] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[02:52:52] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[02:52:53] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
[02:52:53] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
[02:52:53] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
[02:52:53] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
[02:52:53] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
[02:52:53] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
[02:52:53] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
[02:52:53] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.6
[02:52:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [6.2.6]
[02:52:53] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[02:52:53] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[02:52:53] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[02:52:53] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.2
[02:52:53] [Server thread/INFO]: [ModelEngine] [STDOUT] [Spigotunlocked.net] - COSMO
[02:52:53] [Server thread/WARN]: Nag author(s): '[Ticxo]' of 'ModelEngine' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:52:53] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[02:52:53] [Server thread/INFO]: [ModelEngine] Compatibility applied: MythicMobs
[02:52:53] [Server thread/INFO]: [ModelEngine] Compatibility applied: Citizens
[02:52:53] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18
[02:52:53] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:174) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:176) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:185) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:420) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:421) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:426) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:428) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:429) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:432) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:480) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:559) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:564) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:622) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:637) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:66) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:665) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:694) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:721) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:86) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[02:52:54] [Server thread/INFO]: [GriefPrevention] 242 total claims loaded.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[02:52:54] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[02:52:54] [Server thread/INFO]: [GriefPrevention] Boot finished.
[02:52:54] [Server thread/INFO]: [Elevators] Enabling Elevators v4.0.8
[02:52:54] [Server thread/INFO]: [Elevators] [STDOUT] This version of elevators does not support your servers current version! Some functions may not work as intended! Check the resource page for updates.
[02:52:54] [Server thread/WARN]: Nag author(s): '[Keehl]' of 'Elevators' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:52:54] [Server thread/INFO]: [GCore] Enabling GCore v8.43.1
[02:52:54] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (config)
[02:52:54] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (data)
[02:52:54] [Server thread/INFO]: [GCore-migration] Already processed v8.4 -> v8.5
[02:52:54] [Server thread/INFO]: [GCore-migration] Already processed v8.8 -> v8.9
[02:52:54] [Server thread/INFO]: [GCore-migration] Already processed v8.23 -> v8.24
[02:52:54] [Server thread/INFO]: [GCore-migration] Already processed v8.24 -> v8.25
[02:52:54] [Server thread/INFO]: [GCore-migration] Already processed v8.29 -> v8.30
[02:52:54] [Server thread/INFO]: [GCore-8.43.1] Found server version MC_1_19_R1
[02:52:54] [Server thread/INFO]: [GCore-8.43.1] Loading materials...
[02:52:54] [Server thread/INFO]: [GCore-8.43.1] Loading sounds...
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Loading particles...
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Enabled currency VAULT
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Enabled currency XP_LEVEL
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Enabled currency XP
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Loading texts...
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Enabled integration for Citizens
[02:52:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gcore [1.0.0]
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Enabled integration for PlaceholderAPI
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Enabled integration for MythicMobs
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Initializing worker and caches
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Couldn't enable NPC manager with ProtocolLib
[02:52:55] [Server thread/WARN]: java.lang.ClassNotFoundException: net.minecraft.network.protocol.game.PacketPlayOutPlayerInfo$EnumPlayerInfoAction
[02:52:55] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177)
[02:52:55] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124)
[02:52:55] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
[02:52:55] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[02:52:55] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:383)
[02:52:55] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:376)
[02:52:55] [Server thread/WARN]:     at GCore.jar//com.guillaumevdn.gcore.lib.reflection.Reflection.getClassMaybeCached(Reflection.java:39)
[02:52:55] [Server thread/WARN]:     at GCore.jar//com.guillaumevdn.gcore.lib.reflection.Reflection.getNmsClass(Reflection.java:54)
[02:52:55] [Server thread/WARN]:     at GCore.jar//com.guillaumevdn.gcore.lib.reflection.Reflection.getNmsEnum(Reflection.java:113)
[02:52:55] [Server thread/WARN]:     at GCore.jar//com.guillaumevdn.gcore.lib.legacy_npc.NpcProtocols.<init>(NpcProtocols.java:45)
[02:52:55] [Server thread/WARN]:     at GCore.jar//com.guillaumevdn.gcore.WorkerGCore.<init>(WorkerGCore.java:46)
[02:52:55] [Server thread/WARN]:     at GCore.jar//com.guillaumevdn.gcore.GCore.enable(GCore.java:191)
[02:52:55] [Server thread/WARN]:     at GCore.jar//com.guillaumevdn.gcore.lib.GPlugin.onEnable(GPlugin.java:436)
[02:52:55] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[02:52:55] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[02:52:55] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[02:52:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[02:52:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[02:52:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[02:52:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[02:52:55] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[02:52:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[02:52:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[02:52:55] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Registering integrations
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Initializing tasks and listeners
[02:52:55] [Server thread/INFO]: [GCore-8.43.1] Successfully enabled
[02:52:55] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.4.2
[02:52:55] [Server thread/ERROR]: Error occurred while enabling MythicLib v1.4.2 (Is it up to date?)
java.lang.NoClassDefFoundError: Could not initialize class io.lumine.mythic.lib.version.VersionMaterial
    at io.lumine.mythic.lib.api.crafting.uimanager.UIFilterManager.registerUIFilter(UIFilterManager.java:107) ~[MythicLib-1.4.2.jar:?]
    at io.lumine.mythic.lib.api.crafting.uifilters.VanillaUIFilter.register(VanillaUIFilter.java:185) ~[MythicLib-1.4.2.jar:?]
    at io.lumine.mythic.lib.api.crafting.recipes.MythicCraftingManager.<init>(MythicCraftingManager.java:56) ~[MythicLib-1.4.2.jar:?]
    at io.lumine.mythic.lib.MythicLib.onEnable(MythicLib.java:129) ~[MythicLib-1.4.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-343]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-343]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.NullPointerException [in thread "Server thread"]
    at io.lumine.mythic.lib.version.VersionMaterial.<init>(VersionMaterial.java:83) ~[MythicLib-1.4.2.jar:?]
    at io.lumine.mythic.lib.version.VersionMaterial.<init>(VersionMaterial.java:68) ~[MythicLib-1.4.2.jar:?]
    at io.lumine.mythic.lib.version.VersionMaterial.<clinit>(VersionMaterial.java:8) ~[MythicLib-1.4.2.jar:?]
    at net.Indyuce.mmoitems.api.item.util.ConfigItems.<clinit>(ConfigItems.java:9) ~[MMOItems-6.8.2.jar:?]
    at net.Indyuce.mmoitems.manager.ConfigManager.<init>(ConfigManager.java:107) ~[MMOItems-6.8.2.jar:?]
    at net.Indyuce.mmoitems.MMOItems.onLoad(MMOItems.java:122) ~[MMOItems-6.8.2.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:442) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-343]
    ... 3 more
[02:52:55] [Server thread/INFO]: [MythicLib] Disabling MythicLib v1.4.2
[02:52:55] [Server thread/ERROR]: Error occurred while disabling MythicLib v1.4.2 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.lib.glow.GlowModule.disable()" because "this.glowModule" is null
    at io.lumine.mythic.lib.MythicLib.onDisable(MythicLib.java:271) ~[MythicLib-1.4.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:375) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-343]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-343]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:52:55] [Server thread/INFO]: [FarmLimiter] Enabling FarmLimiter v1.5.3
[02:52:55] [Server thread/INFO]: [LockettePro] Enabling LockettePro v2.10.8
[02:52:55] [Server thread/INFO]: [LockettePro] Incompatible server version detected: 1.19.3 . Trying to run into 1.16 compatibility mode!
[02:52:55] [Server thread/INFO]: [LockettePro] ===================================
[02:52:55] [Server thread/INFO]: [DangerousCaves] Enabling DangerousCaves v2.2.13;24
[02:52:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dangerouscaves [1.0]
[02:52:55] [Server thread/INFO]: [GSit] Enabling GSit v1.3.0
[02:52:55] [Server thread/INFO]: DS » The Plugin was successfully enabled.
[02:52:55] [Server thread/INFO]: DS » Link with WorldGuard successful!
[02:52:55] [Server thread/INFO]: DS » Link with PlaceholderAPI successful!
[02:52:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.3.0]
[02:52:55] [Server thread/INFO]: DS » Link with GriefPrevention successful!
[02:52:55] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.4.4
[02:52:55] [Server thread/WARN]: [BetterRTP] The world `survival` doesn't seem to exist! Please update `master_world's` override! Maybe there are capital letters?
[02:52:55] [Server thread/WARN]: [BetterRTP] The world `survvial` doesn't seem to exist! Please update `creative_world's` override! Maybe there are capital letters?
[02:52:55] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
[02:52:55] [Server thread/INFO]: [ChatManager] Enabling ChatManager v3.7.6
[02:52:55] [Server thread/INFO]: [ChatManager] Hooked into: PlaceholderAPI v2.11.2
[02:52:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatmanager [3.7.6]
[02:52:55] [Server thread/INFO]: [ChatManager] Hooked into: Essentials v2.20.0-dev+17-6e931b2
[02:52:55] [Server thread/INFO]: [ChatManager] Hooked into: Vault v1.7.3-b131
[02:52:55] [Server thread/INFO]: [ChatManager] Hooked into: SuperVanish v6.2.6
[02:52:55] [Server thread/INFO]: [ChatManager] Hooked into: GroupManager v2.9 (Phoenix)
[02:52:55] [Server thread/INFO]: [ChatManager] Starting Metrics.
[02:52:55] [Server thread/INFO]: =========================
[02:52:55] [Server thread/INFO]: Chat Manager
[02:52:55] [Server thread/INFO]: Version 3.7.6
[02:52:55] [Server thread/INFO]: Author: H1DD3NxN1NJA
[02:52:55] [Server thread/INFO]: =========================
[02:52:55] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.10.9
[02:52:55] [Server thread/INFO]: [PvPManager] Loaded 306 players from users file
[02:52:55] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[02:52:55] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[02:52:55] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[02:52:55] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[02:52:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pvpmanager [3.10.9]
[02:52:55] [Server thread/INFO]: [PvPManager] mcMMO Found! Hooked successfully
[02:52:55] [Server thread/WARN]: [PvPManager] GriefPrevention has been detected. GriefPrevention has some combat features without showing any feedback messages. Make sure to disable Punish Logout and set tag time to 0 seconds in GP config. Issues with those features often get wrongly blamed on PvPManager and cause conflicts due to the lack of GP feedback messages.
[02:52:55] [Server thread/INFO]: [PvPManager] PvPManager Enabled (71 ms)
[02:52:55] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.3.6
[02:52:56] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.2
[02:52:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SimpleScore [3.12.2]
[02:52:56] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.18.1
[02:52:56] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[02:52:57] [Server thread/INFO]: [PlayerWarps] Found 19 config files to load!
[02:52:57] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (GroupManager)
[02:52:57] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[02:52:57] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (GroupManager - Chat)
[02:52:57] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[02:52:57] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[02:52:57] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[02:52:57] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[02:52:57] [ForkJoinPool.commonPool-worker-1/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[02:52:57] [Server thread/INFO]: [MCPets] Enabling MCPets v3.0.2
[02:52:58] [Server thread/INFO]: [MCPets] : Language file reloaded.
[02:52:58] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[02:52:58] [Server thread/INFO]: Loading pets... 
[02:52:58] [Server thread/INFO]:   - Skog loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-alar loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-anzubreed loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-blackwartiger loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-darnassian_nightsaber loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-phoenix loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-ravenlord loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-swift_frostsaber loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-swift_mistsaber loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-swift_moonsaber loaded succesfully.
[02:52:58] [Server thread/INFO]:   - mexbot_pet-swift_stormsaber loaded succesfully.
[02:52:58] [Server thread/INFO]:   - Nocsy_Cat-Bombay loaded succesfully.
[02:52:58] [Server thread/INFO]:   - Nocsy_Cat-European loaded succesfully.
[02:52:58] [Server thread/INFO]:   - Nocsy_Cat-Fallen loaded succesfully.
[02:52:58] [Server thread/INFO]:   - Nocsy_Cat-MaineCoon loaded succesfully.
[02:52:58] [Server thread/INFO]:   - Nocsy_Cat-Munchkin loaded succesfully.
[02:52:58] [Server thread/INFO]:   - Nocsy_Cat-ScottishFold loaded succesfully.
[02:52:58] [Server thread/INFO]:   - Nocsy_Cat-Siamese loaded succesfully.
[02:52:58] [Server thread/INFO]:   - Otter loaded succesfully.
[02:52:58] [Server thread/INFO]: [MCPets] : 19 pets registered successfully !
[02:52:58] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[02:52:58] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[02:52:58] [Server thread/ERROR]: [MCPets] [Database] Can't initialize MySQL.
[02:52:58] [Server thread/ERROR]: [MCPets] [Database] Will be using YAML support instead.
[02:52:58] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[02:52:58] [Server thread/INFO]:       Plugin made by Nocsy
[02:52:58] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[02:52:58] [Server thread/INFO]: -=- Launching Flags -=-
[02:52:58] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[02:52:58] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[02:52:58] [Server thread/INFO]: 2 flags launched.
[02:52:58] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.4.1
[02:52:59] [Server thread/INFO]: Server version: v1_19_R2 - 1.19.3 - paper
[02:52:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.4.1]
[02:52:59] [Server thread/INFO]: PlaceholderAPI hooked.
[02:52:59] [Server thread/INFO]: Updated (EN) language file. Took 24ms
[02:52:59] [Server thread/INFO]: [Jobs] Enabling Jobs v5.1.1.1
[02:52:59] [Server thread/INFO]: ------------- Jobs -------------
[02:52:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.1.1.1]
[02:52:59] [Server thread/INFO]: PlaceholderAPI hooked.
[02:52:59] [Server thread/INFO]: Connected to database (SqLite)
[02:52:59] [Server thread/INFO]: Loaded 11 titles
[02:52:59] [Server thread/INFO]: Loaded 67 protected blocks timers
[02:52:59] [Server thread/INFO]: Loaded 1282 custom item names
[02:52:59] [Server thread/INFO]: Loaded 79 custom entity names
[02:52:59] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[02:52:59] [Server thread/INFO]: Loaded 38 custom enchant names
[02:52:59] [Server thread/INFO]: Loaded 21 custom enchant names
[02:52:59] [Server thread/INFO]: Loaded 16 custom color names
[02:52:59] [Server thread/INFO]: Loaded 4 quests for Builder
[02:52:59] [Server thread/INFO]: Loaded 4 quests for Fisherman
[02:52:59] [Server thread/INFO]: Loaded 4 quests for Enchanter
[02:52:59] [Server thread/INFO]: Loaded 4 quests for Farmer
[02:52:59] [Server thread/INFO]: Loaded 4 quests for Miner
[02:52:59] [Server thread/INFO]: Loaded 2 quests for Hunter
[02:52:59] [Server thread/INFO]: Loaded 4 quests for Woodcutter
[02:52:59] [Server thread/INFO]: Loaded 4 quests for Digger
[02:52:59] [Server thread/INFO]: Loaded 8 jobs
[02:52:59] [Server thread/WARN]: [Jobs] Cant determine job by Crafter name for crafting-money-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Jobs list is empty for crafting-money-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Cant determine job by Explorer name for exploring-exp-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Jobs list is empty for exploring-exp-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Cant determine job by Brewer name for brewing-exp-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Jobs list is empty for brewing-exp-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Cant determine job by Crafter name for crafting-exp-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Jobs list is empty for crafting-exp-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Cant determine job by Weaponsmith name for weaponsmith-exp-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Jobs list is empty for weaponsmith-exp-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Cant determine job by Brewer name for brewing-points-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Jobs list is empty for brewing-points-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Cant determine job by Weaponsmith name for weaponsmith-points-boost boosted item!
[02:52:59] [Server thread/WARN]: [Jobs] Jobs list is empty for weaponsmith-points-boost boosted item!
[02:52:59] [Server thread/INFO]: Loaded 13 boosted items
[02:52:59] [Server thread/INFO]: Loaded 216 furnace for reassigning.
[02:52:59] [Server thread/INFO]: Loaded 55 brewing for reassigning.
[02:52:59] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[02:52:59] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[02:52:59] [Server thread/INFO]: Preloaded 1682 players data in 0.02
[02:52:59] [Server thread/INFO]: WorldGuard detected.
[02:52:59] [Server thread/INFO]: MythicMobs 5.x detected.
[02:52:59] [Server thread/INFO]: mcMMO2.1.218 was found - Enabling capabilities.
[02:52:59] [Server thread/INFO]: Registered McMMO 2.x listener
[02:52:59] [Server thread/INFO]: [Jobs] MythicMobs was found - Enabling capabilities.
[02:52:59] [Server thread/INFO]: Plugin has been enabled successfully.
[02:52:59] [Server thread/INFO]: ------------------------------------
[02:52:59] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.8.2
[02:52:59] [Server thread/INFO]: [MMOItems] [STDOUT] [Spigotunlocked.org] - COSMO
[02:52:59] [Server thread/WARN]: Nag author(s): '[Indyuce]' of 'MMOItems' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:52:59] [Server thread/ERROR]: Error occurred while enabling MMOItems v6.8.2 (Is it up to date?)
java.lang.NoClassDefFoundError: io/lumine/mythic/lib/version/SpigotPlugin
    at net.Indyuce.mmoitems.MMOItems.onEnable(MMOItems.java:147) ~[MMOItems-6.8.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-343]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-343]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-343]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: io.lumine.mythic.lib.version.SpigotPlugin
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 12 more
[02:52:59] [Server thread/INFO]: [MMOItems] Disabling MMOItems v6.8.2
[02:52:59] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.0
[02:52:59] [Server thread/INFO]: [GPFlags] Enabling GPFlags v5.12.5
[02:52:59] [Server thread/WARN]: [GPFlags] "GPFlags v5.12.5" has registered a listener for me.ryanhamshire.GriefPrevention.events.ClaimModifiedEvent on method "private void me.ryanhamshire.GPFlags.listener.PlayerListener.onChangeClaim(me.ryanhamshire.GriefPrevention.events.ClaimModifiedEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [Big_Scary, ShaneBee, DmitryRendov, DrBot].
[02:53:00] [Server thread/INFO]: DS » Finished loading configuration.
[02:53:00] [Server thread/INFO]: DS » Finished loading data.
[02:53:00] [Server thread/INFO]: DS » Successfully loaded in 0.22 seconds
[02:53:00] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12 (build 307)
[02:53:00] [Server thread/INFO]: [ChestShop] Found locales ar, it, es, el, hu, fr, pl, cs, pt_br, ja, sv, da, es_mx, sr, tr, nl, zh_tw, af, ko, no, vi, ro, he, ru, ca, zh, de, fi, en, uk
[02:53:00] [Server thread/INFO]: [ChestShop] LockettePro version 2.10.8 loaded.
[02:53:00] [Server thread/INFO]: [ChestShop] Using EssentialsX Economy as the Economy provider now.
[02:53:00] [Server thread/INFO]: [ChestShop] Vault loaded!
[02:53:00] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[02:53:00] [pool-78-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (819b02508abe8879cfc2a513fc6cea383b70b5c5)
[02:53:00] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[02:53:00] [Server thread/INFO]: [DungeonSystem] Enabling DungeonSystem v2.0.1
[02:53:00] [Server thread/INFO]: [DungeonSystem] [STDOUT] Spigotunlocked.org
[02:53:00] [Server thread/WARN]: Nag author(s): '[Snykkk]' of 'DungeonSystem' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:53:00] [Server thread/INFO]: You can ignore this message: Can't connect to SpigotMC.org, probably internet connection is blocked.
( Error connecting: 400 )
[02:53:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dungeon [null]
[02:53:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[02:53:01] [Server thread/INFO]: [QuestCreator] Enabling QuestCreator v6.43.1
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v5 -> v6 (config)
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v5 -> v6 (data)
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.1 -> v6.2
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.2 -> v6.3
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.3 -> v6.4
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.4 -> v6.5
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.5 -> v6.6
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.6 -> v6.7
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.8 -> v6.9
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.10 -> v6.11
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.11 -> v6.12
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.13 -> v6.14
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.20 -> v6.21
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.23 -> v6.24
[02:53:01] [Server thread/INFO]: [QuestCreator-migration] Already processed v6.31 -> v6.32
[02:53:01] [JDA MainWS-WriteThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Registering integrations
[02:53:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: questcreator [1.0.0]
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Enabled integration for PlaceholderAPI
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Enabled integration for Jobs
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Enabled integration for Votifier
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Enabled integration for Citizens
[02:53:01] [Server thread/WARN]: [GCore] Loaded class com.gmail.nossr50.datatypes.skills.PrimarySkillType from mcMMO v2.1.218 which is not a depend or softdepend of this plugin.
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Enabled integration for mcMMO
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Enabled integration for MythicMobs
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Waiting for this integrated plugin to be enabled before loading elements : MMOItems
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Loading texts...
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Loaded 4 missing texts from default lang for questcreator_editor.yml
[02:53:01] [Server thread/INFO]: [QuestCreator-6.43.1] Successfully enabled
[02:53:01] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.3.2
[02:53:01] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[02:53:01] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[02:53:02] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_19_R2
[02:53:02] [Server thread/INFO]: [AuctionHouse] Enabled DiscordSRV support
[02:53:02] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[02:53:02] [Server thread/INFO]: [AuctionHouse] Loaded 117 listings
[02:53:02] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.1
[02:53:02] [Server thread/INFO]: [Vulcan] Server Version: 1.19.3 detected!
[02:53:02] [Server thread/INFO]: [Vulcan] Floodgate 2.0 found. Enabling hook!
[02:53:02] [Server thread/INFO]: [Vulcan] mcMMO found. Enabling hook!
[02:53:02] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[02:53:02] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[02:53:02] [Server thread/INFO]: [Vulcan] BStats enabled!
[02:53:02] [Server thread/INFO]: [Vulcan] Registered mcMMO listener!
[02:53:02] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[02:53:02] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[02:53:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Vulcan [2.7.1]
[02:53:02] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[02:53:02] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.5
[02:53:02] [Server thread/INFO]: [ChatItem] Detected server version: v1_19
[02:53:02] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[02:53:02] [Server thread/INFO]: [ChatItem] Loaded 5 getter for base components.
[02:53:02] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[02:53:02] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[02:53:02] [Server thread/INFO]: [ChatItem] Load DiscordSRV support.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.0.0b47
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuardExtraFlags.
[02:53:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedenchantments [1.0.0]
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into MythicMobs.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Essentials.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into GriefPrevention.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Upgrade your CoreProtect API to v9 or higher.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Vulcan support has been enabled.
[02:53:02] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[02:53:02] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Dragon Shield(623838656263749634)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐉|𝐌𝐀𝐈𝐍-𝐂𝐇𝐀𝐓(905843497125412886)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⛏|𝐌𝐂-𝐂𝐇𝐀𝐓(915596415357562960)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌸|𝐃𝐄𝐕𝐈𝐍𝐄-𝐂𝐇𝐀𝐓(1046621774030327928)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖|𝐁𝐎𝐓-𝐂𝐎𝐌𝐌𝐀𝐍𝐃𝐒(850361733083824159)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⚛✷-🎀-𝒞𝓞𝒩𝒯𝐸𝒮𝒯-🎀-✷⚛(1049081918177681468)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📖|𝐑𝐔𝐋𝐄𝐒(623861537806876682)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🍾|𝐕𝐎𝐓𝐄(1053240258554245120)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👋|𝐖𝐄𝐋𝐂𝐎𝐌𝐄(623937178010910720)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢|𝐀𝐍𝐍𝐎𝐔𝐍𝐂𝐄𝐌𝐄𝐍𝐓𝐒(1043525903898120283)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💌|𝐒𝐔𝐆𝐆𝐄𝐒𝐓𝐈𝐎𝐍𝐒(908281115448598568)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💠|𝐔𝐏𝐃𝐀𝐓𝐄𝐒(908395434991575110)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🆘|𝐇𝐄𝐋𝐏(1043526365812633630)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎁|𝐆𝐈𝐕𝐄𝐀𝐖𝐀𝐘𝐒(725750201960104036)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📝|𝐑𝐄𝐏𝐎𝐑𝐓(1043526251001958430)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📝|𝐑𝐄𝐏𝐎𝐑𝐓-𝐁𝐔𝐆𝐒(1043526303590137969)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📄|𝐀𝐏𝐏𝐋𝐈𝐂𝐀𝐓𝐈𝐎𝐍𝐒(629436892068315140)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💌|𝐀𝐏𝐏𝐄𝐀𝐋𝐒(908292125370769448)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-chat(905843792626720828)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:punishmentformats(797167626093985822)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-punishment-book(850359793294114866)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-logs(813388407627710475)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-logs(800047630314504192)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:build-projects(1042007817390915604)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staffmemes(1052462413196300288)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Ineffable MC Server(604305286064242708)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:general(604305286064242711)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console(604305507016114186)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mc-chat(604326005137735701)
[02:53:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output