Paste #82267: MissGhouls / Ghoulcraft 3/21/21

Date: 2021/03/21 03:20:01 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435


[10:16:05] [main/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[10:16:06] [main/INFO]: Reloading ResourceManager: Default, bukkit
[10:16:06] [Worker-Main-5/INFO]: Loaded 7 recipes
[10:16:06] [Server thread/INFO]: Starting minecraft server version 1.16.5
[10:16:06] [Server thread/INFO]: Loading properties
[10:16:06] [Server thread/INFO]: This server is running Paper version git-Paper-545 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT)
[10:16:07] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:16:07] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:16:07] [Server thread/INFO]: Debug logging is disabled
[10:16:07] [Server thread/INFO]: Default game type: SURVIVAL
[10:16:07] [Server thread/INFO]: Generating keypair
[10:16:07] [Server thread/INFO]: Starting Minecraft server on *:25566
[10:16:07] [Server thread/INFO]: Using epoll channel type
[10:16:07] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:16:09] [Server thread/WARN]: Legacy plugin IA v1.0 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin Admin-Chat v1.4.4 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin AutoRestart v4.2.1 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin AcceptTheRules v4.7 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin PlayerBTH v2.2.3 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin Playtimes v1.3.10 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin RottenSmelt v1.0 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin MVdWPlaceholderAPI v3.1.1 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin breakableBarriers v1.0.0 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin ServerListPlus v3.4.8 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin NightVisionPlus v2.5 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin ColoredAnvils v1.08 does not specify an api-version.
[10:16:09] [Server thread/WARN]: Legacy plugin dynmap v3.1-beta7-449 does not specify an api-version.
[10:16:09] [Server thread/INFO]: [AsyncWorldEdit] Injector platform set to: InjectorBukkit
[10:16:09] [Server thread/INFO]: [AsyncWorldEdit] Injecting NMS classes...
[10:16:09] [Server thread/INFO]: [AsyncWorldEdit] Injecting WorldEdit classes...
[10:16:09] [Server thread/WARN]: [WorldEdit] Loaded class org.primesoft.asyncworldedit.injector.injected.util.eventbus.IDispatchableEventBus from AsyncWorldEdit v3.8.2 which is not a depend, softdepend or loadbefore of this plugin.
[10:16:09] [Server thread/INFO]: [AsyncWorldEdit] Injector Enabled
[10:16:09] [Server thread/INFO]: [AsyncWorldEdit] New class factory set to: org.primesoft.asyncworldedit.asyncinjector.async.AsyncClassFactory
[10:16:09] [Server thread/WARN]: Legacy plugin ProfileStorage v2.4.0 does not specify an api-version.
[10:16:10] [Server thread/WARN]: Legacy plugin EmojiChat v1.8.3 does not specify an api-version.
[10:16:10] [Server thread/INFO]: [ChatFilter] Loading ChatFilter v1.1.1
[10:16:10] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.9
[10:16:10] [Server thread/INFO]: [DeluxeCommands] Loading DeluxeCommands v1.11.2
[10:16:10] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.2.0
[10:16:10] [Server thread/INFO]: [IA] Loading IA v1.0
[10:16:10] [Server thread/INFO]: [SimpleLay] Loading SimpleLay v1.0.10
[10:16:10] [Server thread/INFO]: [CartographerCrashFix] Loading CartographerCrashFix v1.0-SNAPSHOT
[10:16:10] [Server thread/INFO]: [LeashesReturnToPlayer] Loading LeashesReturnToPlayer v1.0
[10:16:10] [Server thread/INFO]: [AdminChat] Loading Admin-Chat v1.4.4
[10:16:10] [Server thread/INFO]: [AutoRestart] Loading AutoRestart v4.2.1
[10:16:10] [Server thread/INFO]: [PetTransfer] Loading PetTransfer v1.3
[10:16:10] [Server thread/INFO]: [HorseTpWithMe] Loading HorseTpWithMe v7.4.0.2
[10:16:10] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v3.2.1
[10:16:10] [Server thread/INFO]: [ViaVersion] ViaVersion 3.2.1 is now loaded, injecting!
[10:16:10] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[10:16:10] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[10:16:10] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[10:16:10] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[10:16:10] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[10:16:10] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[10:16:10] [Server thread/INFO]: [ShulkerBoxBackPacks] Loading ShulkerBoxBackPacks v1.1.4
[10:16:10] [Server thread/INFO]: [LeashTeleport] Loading LeashTeleport v1.4
[10:16:10] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.3.0
[10:16:10] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[10:16:10] [Server thread/INFO]: [ItemEditor] Loading ItemEditor v0.1.5
[10:16:10] [Server thread/INFO]: [ATR] Loading AcceptTheRules v4.7
[10:16:10] [Server thread/INFO]: [PlayerBTH] Loading PlayerBTH v2.2.3
[10:16:10] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[10:16:10] [Server thread/INFO]: [ArmorStandEditor] Loading ArmorStandEditor v1.16-24
[10:16:10] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.6
[10:16:10] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.2
[10:16:10] [Server thread/INFO]: [ActionBarAPI] Loading ActionBarAPI v1.5.4a
[10:16:10] [Server thread/INFO]: [Playtimes] Loading Playtimes v1.3.10
[10:16:10] [Server thread/INFO]: [RottenSmelt] Loading RottenSmelt v1.0
[10:16:10] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.6.0
[10:16:11] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.24
[10:16:11] [Server thread/INFO]: [KixsAutoAnnouncerPremium] Loading KixsAutoAnnouncerPremium v1.2.3
[10:16:11] [Server thread/INFO]: [ChillPhantoms] Loading ChillPhantoms v0
[10:16:11] [Server thread/INFO]: [MVdWPlaceholderAPI] Loading MVdWPlaceholderAPI v3.1.1
[10:16:11] [Server thread/INFO]: [SwimmingHorses] Loading SwimmingHorses v1.1
[10:16:11] [Server thread/INFO]: [VoidGenerator] Loading VoidGenerator v1.7.0
[10:16:11] [Server thread/INFO]: [ImageOnMap] Loading ImageOnMap v4.0
[10:16:11] [Server thread/INFO]: [breakableBarriers] Loading breakableBarriers v1.0.0
[10:16:11] [Server thread/INFO]: [AntiXrayPlus] Loading AntiXrayPlus v1.0.0
[10:16:11] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[10:16:11] [Server thread/INFO]: [ServerListPlus] Loading ServerListPlus v3.4.8
[10:16:11] [Server thread/INFO]: [NightVisionPlus] Loading NightVisionPlus v2.5
[10:16:11] [Server thread/INFO]: [ColoredAnvils] Loading ColoredAnvils v1.08
[10:16:11] [Server thread/INFO]: [BottledExp] Loading BottledExp v2.2.8.2
[10:16:11] [Server thread/INFO]: [LWC] Loading LWC v2.1.5-09ad392
[10:16:11] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.4.6
[10:16:11] [Server thread/INFO]: [VoteParty] Loading VoteParty v2.24
[10:16:11] [Server thread/INFO]: [dynmap] Loading dynmap v3.1-beta7-449
[10:16:11] [Server thread/INFO]: [dynmap] version=git-Paper-545 (MC: 1.16.5)
[10:16:11] [Server thread/INFO]: [dynmap] Mod Support API available
[10:16:11] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.3+5680-135941e
[10:16:11] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@5aa12f7f]
[10:16:11] [Server thread/INFO]: [Essentials] Loading Essentials v2.18.2.0
[10:16:11] [Server thread/INFO]: [AdvancedDevelopmentLibrary] Loading AdvancedDevelopmentLibrary v1.3.0
[10:16:11] [Server thread/INFO]: [Elevator] Loading Elevator v3.11.0
[10:16:11] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.13.4
[10:16:11] [Server thread/INFO]: [BannerMaker] Loading BannerMaker v2.3.1
[10:16:11] [Server thread/INFO]: [AsyncWorldEdit] Loading AsyncWorldEdit v3.8.2
[10:16:11] [Server thread/INFO]: [AsyncWorldEdit] Plugin installed
[10:16:11] [Server thread/INFO]: [MobsToEggs] Loading MobsToEggs v1.5.5_3
[10:16:11] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.18.2.0
[10:16:11] [Server thread/INFO]: [TAB] Loading TAB v2.8.10
[10:16:11] [Server thread/INFO]: [WESV] Loading WorldEditSelectionVisualizer v2.0.7
[10:16:11] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v4.4.495
[10:16:11] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.4+f7ff984
[10:16:11] [Server thread/INFO]: [EpicWorldGenerator] Loading EpicWorldGenerator v8.2.1-BETA
[10:16:11] [Server thread/INFO]: [Negativity] Loading Negativity v1.9.7
[10:16:11] [Server thread/INFO]: [ProfileStorage] Loading ProfileStorage v2.4.0
[10:16:11] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.18.2.0
[10:16:11] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v19.4
[10:16:11] [Server thread/INFO]: [Harbor] Loading Harbor v1.6.3
[10:16:11] [Server thread/INFO]: [VeinMiner] Loading VeinMiner v1.17.5
[10:16:11] [Server thread/INFO]: [VeinMiner] Found WorldGuard. Registering custom region flag.
[10:16:11] [Server thread/INFO]: [SilkSpawners] Loading SilkSpawners v7.0.0
[10:16:11] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.2.2-b812
[10:16:11] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.27-SNAPSHOT (build 2279)
[10:16:11] [Server thread/INFO]: [SuperVanish] Loading SuperVanish v6.2.0
[10:16:11] [Server thread/INFO]: [PlayerParticles] Loading PlayerParticles v7.18
[10:16:11] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.17.1-2b69191
[10:16:11] [Server thread/INFO]: [eco] Loading eco v4.2.2
[10:16:11] [Server thread/INFO]: [SpecializedCrates] Loading SpecializedCrates v2.13.1
[10:16:11] [Server thread/INFO]: [Brewery] Loading Brewery v3.0
[10:16:11] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v4.10.1-SNAPSHOT
[10:16:11] [Server thread/INFO]: [Multiverse-Inventories] Loading Multiverse-Inventories v4.2.1-b490
[10:16:11] [Server thread/INFO]: [GriefPreventionFlags] Loading GriefPreventionFlags v5.10.0
[10:16:11] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.0.5
[10:16:11] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.1.5-SNAPSHOT
[10:16:11] [Server thread/INFO]: [BlockQuest] Loading BlockQuest v2.2.4
[10:16:11] [Server thread/INFO]: [MarriageMaster] Loading MarriageMaster v2.2.14-Release
[10:16:11] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[10:16:11] [Server thread/INFO]: [Jobs] Loading Jobs v4.17.0
[10:16:11] [Server thread/INFO]: [WorldBorder] Loading WorldBorder v2.1.0
[10:16:11] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants v6.10.1
[10:16:11] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.21.3
[10:16:11] [Server thread/INFO]: [EmojiChat] Loading EmojiChat v1.8.3
[10:16:11] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v2.1.12
[10:16:11] [Server thread/INFO]: [DeathMessages] Loading DeathMessages v1.2.3
[10:16:11] [Server thread/INFO]: [DeathMessages] WorldGuard v7 found. Enabling Hook.
[10:16:11] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:16:11] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.3.0
[10:16:11] [Server thread/INFO]:         __    
[10:16:11] [Server thread/INFO]:   |    |__)   LuckPerms v5.3.0
[10:16:11] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[10:16:11] [Server thread/INFO]: 
[10:16:11] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:16:11] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[10:16:12] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:16:12] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:16:12] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 768ms)
[10:16:12] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.6.0
[10:16:12] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[10:16:12] [Server thread/INFO]: [VoidGenerator] Enabling VoidGenerator v1.7.0
[10:16:12] [Server thread/INFO]: [VoidGenerator] v1_15
[10:16:12] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[10:16:12] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.18.2.0 which is not a depend, softdepend or loadbefore of this plugin.
[10:16:12] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[10:16:12] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:16:12] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[10:16:12] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:16:12] [Server thread/INFO]: [LWC] Enabling LWC v2.1.5-09ad392
[10:16:12] [Server thread/WARN]: [LWC] Loaded class com.sk89q.worldedit.extension.platform.Actor from WorldEdit v7.2.3+5680-135941e which is not a depend, softdepend or loadbefore of this plugin.
[10:16:12] [Server thread/INFO]: [LWC] Connecting to MySQL
[10:16:12] [Server thread/WARN]: Sun Mar 21 10:16:12 UTC 2021 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
[10:16:12] [Server thread/WARN]: [LWC] Loaded class com.sk89q.worldguard.bukkit.WorldGuardPlugin from WorldGuard v7.0.4+f7ff984 which is not a depend, softdepend or loadbefore of this plugin.
[10:16:12] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.3+5680-135941e
[10:16:12] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:16:12] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_16_R3 as the Bukkit adapter
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] Enabling AsyncWorldEdit v3.8.2
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] Platform set to Bukkit API
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] ===================================================================================
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] =     ___                         _       __           __    ________    ___ __   =
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] =    /   |  _______  ______  ____| |     / /___  _____/ /___/ / ____/___/ (_) /_  =
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] =   / /| | / ___/ / / / __ \/ ___/ | /| / / __ \/ ___/ / __  / __/ / __  / / __/  =
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] =  / ___ |(__  ) /_/ / / / / /__ | |/ |/ / /_/ / /  / / /_/ / /___/ /_/ / / /_    =
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] = /_/  |_/____/\__, /_/ /_/\___/ |__/|__/\____/_/  /_/\__,_/_____/\__,_/_/\__/    =
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] =             /____/                                                              =
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] = Author: SBPrime                                                                 =
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] =                                                                                 =
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] ===================================================================================
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] Initializing WorldEdit.
[10:16:13] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit] Undo cleanup started...
[10:16:13] [AWE:Cron:undoCleanup/INFO]: [AsyncWorldEdit] ...undo cleanup done.
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] No matching adapter found for Bukkit.v1_16_R3, DirectChunkAPI disabled
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] PlotMeFix set to class org.primesoft.asyncworldedit.plotme.NullFix.
[10:16:13] [Server thread/INFO]: [AsyncWorldEdit] Enabled
[10:16:13] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v4.4.495
[10:16:13] [Server thread/INFO]: Version is PlotSquared-4.4
[10:16:13] [Thread-24/INFO]: [AsyncWorldEdit] You have the latest version of the plugin.
[10:16:13] [Server thread/INFO]: [P2] PlotSquared is using online UUIDs
[10:16:13] [Server thread/INFO]: PlotSquared Scripting Test
[10:16:13] [Server thread/INFO]: [P2] PlotSquared hooked into WorldEdit.
[10:16:13] [Server thread/INFO]: [P2] PlotSquared is now enabled
[10:16:13] [Server thread/INFO]: [P2] Metrics enabled.
[10:16:13] [Server thread/INFO]: [EpicWorldGenerator] Enabling EpicWorldGenerator v8.2.1-BETA
[10:16:13] [Server thread/INFO]:  
[10:16:13] [Server thread/INFO]:  
[10:16:13] [Server thread/INFO]:   _                              __
[10:16:13] [Server thread/INFO]:  |_ ._  o  _ \    / _  ._ |  _| /__  _  ._   _  ._ _. _|_  _  ._ 
[10:16:13] [Server thread/INFO]:  |_ |_) | (_  \/\/ (_) |  | (_| \_| (/_ | | (/_ | (_|  |_ (_) |  
[10:16:13] [Server thread/INFO]:     |       
[10:16:13] [Server thread/INFO]:  
[10:16:13] [Server thread/INFO]:               Version 8.2.1-BETA
[10:16:13] [Server thread/INFO]:  
[10:16:13] [Server thread/INFO]:  Documentation can be found at http://discuss.dynamic-bytes.com/p/1-wiki
[10:16:13] [Server thread/INFO]:  
[10:16:13] [Server thread/INFO]:  
[10:16:13] [Server thread/INFO]:   > Loading structures (.EWG schematics)
[10:16:14] [Server thread/INFO]:     - DECO_forest_house    - DECO_desert_tower    - DECO_jungle_tower    - DECO_portals_204    - DECO_rock_01    - DECO_rock_18    - DECO_rock_02    - DECO_rock_19    - DECO_rock_03    - DECO_rock_20    - DECO_rock_21    - DECO_rock_22    - DECO_rock_04    - DECO_rock_23    - DECO_rock_24    - DECO_rock_25    - DECO_swampBush_1    - DECO_rock_10    - DECO_swampPlants_1    - DECO_swampPlants_2    - DECO_swampPlants_3    - DECO_swampPlants_4    - DECO_swampRocks_1    - DECO_rock_17    - DECO_swampRootSmall_1    - DECO_swampRootSmall_2    - DECO_swampRootSmall_3    - DECO_swampRootSmall_4    - DECO_swampRootSmall_5    - DECO_swampRootSmall_6    - DECO_swampRoot_1    - DECO_swampRoot_2    - DECO_swampRoot_3    - DECO_swampRoot_4    - DECO_swampRoot_5    - DECO_swampRoot_6    - DECO_swampRoot_7    - TREES_birch_normal    - TREES_birch_normal_2    - TREES_birch_normal_3    - TREES_birch_normal_4    - TREES_bonsai_big_2    - TREES_bonsai_big    - TREES_bonsai_big_3    - TREES_bonsai_huge    - TREES_bonsai_medium    - TREES_bonsai_medium_2    - TREES_bonsai_normal    - TREES_bonsai_normal_2    - TREES_bonsai_small    - TREES_bonsai_tiny    - TREES_dead_big    - TREES_dead_huge    - TREES_dead_medium    - TREES_dead_medium_2    - TREES_dead_normal    - TREES_dead_normal_2    - TREES_fantasy_normal    - TREES_fantasy_normal_2    - TREES_fantasy_small    - TREES_fantasy_small_2    - TREES_fantasy_small_3    - TREES_forgottenForest_medium    - TREES_forgottenForest_medium_4    - TREES_forgottenForest_medium_5    - TREES_forgottenForest_normal_2    - TREES_forgottenForest_normal_3    - TREES_jungle_big    - TREES_jungle_huge    - TREES_jungle_medium    - TREES_jungle_normal    - TREES_jungle_normal_2    - TREES_jungle_normal_3    - TREES_jungle_normal_4    - TREES_jungle_small    - TREES_jungle_small_2    - TREES_nether_normal    - TREES_jungle_small_3    - TREES_oakTree_huge_1    - TREES_oakTree_huge_2    - TREES_oakTree_huge_3    - TREES_pineLong_huge_4    - TREES_oldtree_normal_2    - TREES_pineLong_normal_1    - TREES_oakTree_normal_4    - TREES_oldtree_normal_1    - TREES_pineLong_normal_2    - TREES_pineLong_normal_3    - TREES_pine_big    - TREES_pine_huge    - TREES_pine_medium    - TREES_pine_normal    - TREES_pine_normal_2    - TREES_pine_small    - TREES_pine_small_2    - TREES_pine_small_3    - TREES_pine_tiny    - TREES_pine_tiny_2    - TREES_scotsPine_normal_10    - TREES_scotsPine_normal_11    - TREES_scotsPine_normal_12    - TREES_scotsPine_normal_6    - TREES_scotsPine_normal_8    - TREES_scotsPine_normal_9    - TREES_snowyPine_normal_01    - TREES_willow_big    - TREES_snowyPine_normal_02    - TREES_snowyPine_normal_03    - TREES_stoneForest_normal    - TREES_stoneForest_normal_2    - TREES_stoneForest_normal_3    - TREES_swamp_huge_1    - TREES_swamp_huge_2    - TREES_swamp_medium_1    - TREES_swamp_medium_2    - TREES_swamp_medium_3    - TREES_swamp_small_1    - TREES_tropicalForest_medium_1    - TREES_tropicalForest_medium_2    - TREES_tropicalForest_medium_3    - TREES_tropicalForest_medium_4    - TREES_tropicalForest_small_1    - TREES_willow_big_2    - TREES_willow_huge    - TREES_willow_medium    - TREES_willow_medium_2    - TREES_willow_normal    - TREES_willow_small    - TREES_willow_tiny    - TREES_willow_tiny_2    - TREES_willow_tiny_3 
[10:16:14] [Server thread/INFO]:   > Loading configuration
[10:16:14] [Server thread/INFO]: [EpicWorldGenerator] [EpicWorldGenerator] Hooked into MVdWPlaceholderAPI!
[10:16:14] [Server thread/INFO]: /root/survival/plugins/EpicWorldGenerator/chestconfig.json 
[10:16:14] [Server thread/INFO]: Done
[10:16:14] [Server thread/INFO]: [ProfileStorage] Enabling ProfileStorage v2.4.0*
[10:16:14] [Server thread/INFO]: [ProfileStorage] - - - - - - - - Loading - - - - - - - -
[10:16:14] [Server thread/INFO]: [ProfileStorage] SQLITE Integration
[10:16:14] [Server thread/INFO]: [ProfileStorage]   Connected to SQLITE!
[10:16:14] [Server thread/INFO]: [ProfileStorage] - - - - - Successfully loaded - - - - -
[10:16:14] [Server thread/INFO]: [EcoEnchants] Enabling EcoEnchants v6.10.1
[10:16:14] [Server thread/INFO]: [EcoEnchants] 
[10:16:14] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants
[10:16:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ecoenchants
[10:16:14] [Server thread/INFO]: [EcoEnchants] Loaded integrations: Essentials, PlaceholderAPI
[10:16:15] [Server thread/INFO]: [EcoEnchants] No extensions found
[10:16:15] [Server thread/INFO]: [EcoEnchants] 230 Enchantments Loaded
[10:16:15] [Server thread/INFO]: [EcoEnchants] 
[10:16:15] [Server thread/INFO]: Preparing level "Survival"
[10:16:15] [Server thread/INFO]: -------- World Settings For [Survival] --------
[10:16:15] [Server thread/INFO]: Experience Merge Radius: 3.0
[10:16:15] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv true
[10:16:15] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:16:15] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[10:16:15] [Server thread/INFO]: Max TNT Explosions: 100
[10:16:15] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:16:15] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:16:15] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:16:15] [Server thread/INFO]: View Distance: 10
[10:16:15] [Server thread/INFO]: Item Merge Radius: 2.5
[10:16:15] [Server thread/INFO]: Item Despawn Rate: 6000
[10:16:15] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[10:16:15] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[10:16:15] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:16:15] [Server thread/INFO]: Mob Spawn Range: 6
[10:16:15] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:16:15] [Server thread/INFO]: ~~~~~~~~~~~~[ EWG Settings for Survival ]~~~~~~~~~~~~
[10:16:15] [Server thread/INFO]: 
[10:16:15] [Server thread/INFO]: Biomes that will generated;
[10:16:15] [Server thread/INFO]:  * Bamboo Forest
[10:16:15] [Server thread/INFO]:  * Birch Forest
[10:16:15] [Server thread/INFO]:  * Bonsai Forest
[10:16:15] [Server thread/INFO]:  * Volcano
[10:16:15] [Server thread/INFO]:  * Desert
[10:16:15] [Server thread/INFO]:  * Deep Ocean
[10:16:15] [Server thread/INFO]:  * Deciduous Forest
[10:16:15] [Server thread/INFO]:  * Fantasy Forest
[10:16:15] [Server thread/INFO]:  * Farmland
[10:16:15] [Server thread/INFO]:  * Forgotten Forest
[10:16:15] [Server thread/INFO]:  * Frozen Ocean
[10:16:15] [Server thread/INFO]:  * Scots pine forest
[10:16:15] [Server thread/INFO]:  * Jungle
[10:16:15] [Server thread/INFO]:  * Jungle Edge
[10:16:15] [Server thread/INFO]:  * Lukewarm Ocean
[10:16:15] [Server thread/INFO]:  * Mesa
[10:16:15] [Server thread/INFO]:  * Mega Spruce Taiga
[10:16:15] [Server thread/INFO]:  * Mega Taiga
[10:16:15] [Server thread/INFO]:  * Ocean
[10:16:15] [Server thread/INFO]:  * Pine Forest
[10:16:15] [Server thread/INFO]:  * Plains
[10:16:15] [Server thread/INFO]:  * River
[10:16:15] [Server thread/INFO]:  * Stone Forest
[10:16:15] [Server thread/INFO]:  * Swamp
[10:16:15] [Server thread/INFO]:  * Snowy Pine
[10:16:15] [Server thread/INFO]:  * Savanna
[10:16:15] [Server thread/INFO]:  * Swamp Edge
[10:16:15] [Server thread/INFO]:  * Swampland
[10:16:15] [Server thread/INFO]:  * Tropical Forest
[10:16:15] [Server thread/INFO]:  * Warm Ocean
[10:16:15] [Server thread/INFO]: 
[10:16:15] [Server thread/INFO]: Generator version: 8.1.12
[10:16:15] [Server thread/INFO]: 
[10:16:15] [Server thread/INFO]: Biomes in total: 30
[10:16:15] [Server thread/INFO]: Preparing world injection
[10:16:15] [Server thread/INFO]: -------- World Settings For [Survival_nether] --------
[10:16:15] [Server thread/INFO]: Experience Merge Radius: 3.0
[10:16:15] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv true
[10:16:15] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:16:15] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[10:16:15] [Server thread/INFO]: Max TNT Explosions: 100
[10:16:15] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:16:15] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:16:15] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:16:15] [Server thread/INFO]: View Distance: 10
[10:16:15] [Server thread/INFO]: Item Merge Radius: 2.5
[10:16:15] [Server thread/INFO]: Item Despawn Rate: 6000
[10:16:15] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[10:16:15] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[10:16:15] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:16:15] [Server thread/INFO]: Mob Spawn Range: 6
[10:16:15] [Server thread/INFO]: -------- World Settings For [Survival_the_end] --------
[10:16:15] [Server thread/INFO]: Experience Merge Radius: 3.0
[10:16:15] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:16:15] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv true
[10:16:15] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:16:15] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[10:16:15] [Server thread/INFO]: Max TNT Explosions: 100
[10:16:15] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:16:15] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:16:15] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:16:15] [Server thread/INFO]: View Distance: 10
[10:16:15] [Server thread/INFO]: Item Merge Radius: 2.5
[10:16:15] [Server thread/INFO]: Item Despawn Rate: 6000
[10:16:15] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[10:16:15] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[10:16:15] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:16:15] [Server thread/INFO]: Mob Spawn Range: 6
[10:16:15] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:16:16] [Server thread/INFO]: Loaded 0 spawn chunks for world Survival
[10:16:16] [Server thread/INFO]: Preparing spawn area: 0%
[10:16:16] [Server thread/INFO]: Time elapsed: 389 ms
[10:16:16] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[10:16:16] [Server thread/INFO]: Loaded 0 spawn chunks for world Survival_nether
[10:16:16] [Server thread/INFO]: Preparing spawn area: 0%
[10:16:16] [Server thread/INFO]: Time elapsed: 49 ms
[10:16:16] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[10:16:16] [Server thread/INFO]: Loaded 0 spawn chunks for world Survival_the_end
[10:16:16] [Server thread/INFO]: Preparing spawn area: 0%
[10:16:16] [Server thread/INFO]: Time elapsed: 118 ms
[10:16:16] [Server thread/INFO]: [ChatFilter] Enabling ChatFilter v1.1.1
[10:16:16] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.9
[10:16:16] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:16:16] [Server thread/INFO]: [DeluxeCommands] Enabling DeluxeCommands v1.11.2
[10:16:16] [Server thread/INFO]: [DeluxeCommands] Successfully setup compatibility for your server version!
[10:16:16] [Server thread/INFO]: [DeluxeCommands] 5 commands loaded!
[10:16:16] [Server thread/INFO]: [DeluxeCommands] Hooked into PlaceholderAPI for placeholders!
[10:16:16] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.2.0
[10:16:16] [Server thread/INFO]: [IA] Enabling IA v1.0*
[10:16:16] [Server thread/INFO]: IA >> Author : RavenZ
[10:16:16] [Server thread/INFO]: IA >> Enabled Succesfully!
[10:16:16] [Server thread/INFO]: [SimpleLay] Enabling SimpleLay v1.0.10
[10:16:16] [Server thread/INFO]: [CartographerCrashFix] Enabling CartographerCrashFix v1.0-SNAPSHOT
[10:16:16] [Server thread/INFO]: [LeashesReturnToPlayer] Enabling LeashesReturnToPlayer v1.0
[10:16:16] [Server thread/INFO]: [AdminChat] Enabling Admin-Chat v1.4.4*
[10:16:16] [Server thread/INFO]: [AdminChat] Enabling metrics...
[10:16:16] [Server thread/INFO]: [AdminChat] Enabling executive manager...
[10:16:16] [Server thread/INFO]: [AdminChat] Enabling Command Handler...
[10:16:16] [Server thread/INFO]: [AdminChat] Enabling Channel Manager...
[10:16:16] [Server thread/WARN]: [AdminChat] The permission adminchat.channel.vipchat is already registered!
[10:16:16] [Server thread/WARN]: [AdminChat] The permission adminchat.channel.management is already registered!
[10:16:16] [Server thread/WARN]: [AdminChat] The permission adminchat.channel.staff is already registered!
[10:16:16] [Server thread/WARN]: [AdminChat] The permission adminchat.channel.fstaff is already registered!
[10:16:16] [Server thread/WARN]: [AdminChat] The permission adminchat.channel.ghouls is already registered!
[10:16:16] [Server thread/INFO]: [AdminChat] Enabling Listener...
[10:16:16] [Server thread/INFO]: [AutoRestart] Enabling AutoRestart v4.2.1*
[10:16:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: autorestart
[10:16:16] [Server thread/INFO]: [AutoRestart] Loaded
[10:16:16] [Server thread/INFO]: [PetTransfer] Enabling PetTransfer v1.3
[10:16:16] [Server thread/INFO]: [HorseTpWithMe] Enabling HorseTpWithMe v7.4.0.2
[10:16:16] [Server thread/INFO]: [HorseTpWithMe] Writing Permissions.txt File!
[10:16:16] [Server thread/INFO]: [HorseTpWithMe] The EntityDismountEvent has been Detected! All Entities will be supported!
[10:16:16] [Server thread/INFO]: [HorseTpWithMe] HorseTpWithMe v7.4.0.2 for API version 1.15+ is enabled and Working! (115423350ns)
[10:16:16] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v3.2.1
[10:16:16] [Server thread/INFO]: [ShulkerBoxBackPacks] Enabling ShulkerBoxBackPacks v1.1.4
[10:16:16] [Server thread/INFO]: [ShulkerBoxBackPacks] ShulkerBoxBackPacks V: 1.1.4 has been enabled
[10:16:16] [Server thread/INFO]: [LeashTeleport] Enabling LeashTeleport v1.4
[10:16:16] [Server thread/INFO]: [ItemEditor] Enabling ItemEditor v0.1.5
[10:16:16] [Server thread/INFO]: [ItemEditor] ItemEditor v0.1.5, by Freakey
[10:16:16] [Server thread/INFO]: [ItemEditor] PlaceholderAPI was found, placeholders are enabled!
[10:16:16] [Server thread/INFO]: [ATR] Enabling AcceptTheRules v4.7*
[10:16:17] [Server thread/INFO]: [com.j256.ormlite.table.TableUtils] creating table 'playerdata'
[10:16:17] [Server thread/INFO]: [ATR] Version 4.7 is enabled!
[10:16:17] [Server thread/INFO]: [PlayerBTH] Enabling PlayerBTH v2.2.3*
[10:16:17] [Server thread/INFO]: Injecting dependency JodaTime.jar into plugin PlayerBTH
[10:16:17] [Server thread/INFO]: -------------------
[10:16:17] [Server thread/INFO]:  
[10:16:17] [Server thread/INFO]: Initializing [ GSA ] PlayerBTH version 2.2.3
[10:16:17] [Server thread/INFO]:  
[10:16:17] [Server thread/INFO]: -------------------
[10:16:17] [Server thread/INFO]: [ PlayerBTH ] INFO: Copied config.yml file and comments
[10:16:17] [Server thread/INFO]: [ PlayerBTH ] INFO: Copied messages.yml file and comments
[10:16:17] [Server thread/INFO]: [ PlayerBTH ] WARNING: NoteBlockAPI not found, we recommend you to download it if you want to play songs
[10:16:17] [Server thread/INFO]: [ PlayerBTH ] INFO: PlaceholderAPI found, hooking it
[10:16:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: birthday
[10:16:17] [Server thread/INFO]: CUSTOM TERRAIN: Scots pine forestExecuting PlayerBTH.jar in PlayerBTH.jar
[10:16:17] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[10:16:17] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[10:16:17] [Server thread/INFO]: [ClearLag] Loading modules...
[10:16:17] [Server thread/WARN]: [ClearLag] Failed to initialize 'mob-range' controller ~ This is possibly caused by an unsupported Bukkit/Spigot server version
[10:16:17] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[10:16:17] [Server thread/WARN]: [ClearLag] Invalid entity type specified path="chunk-entity-limiter.entities" value=Cave
[10:16:17] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[10:16:17] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[10:16:17] [Server thread/INFO]: [ArmorStandEditor] Enabling ArmorStandEditor v1.16-24
[10:16:17] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.6
[10:16:17] [Server thread/INFO]: [BuycraftX] Validating your server key...
[10:16:17] [Server thread/WARN]: [BuycraftX] Loaded class kotlin.Unit from AutoRestart v4.2.1 which is not a depend, softdepend or loadbefore of this plugin.
[10:16:17] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[10:16:17] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.2
[10:16:17] [Server thread/INFO]: [Votifier] Loaded token for website: default
[10:16:17] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[10:16:17] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[10:16:17] [Server thread/INFO]: [ActionBarAPI] Enabling ActionBarAPI v1.5.4a
[10:16:17] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /0:0:0:0:0:0:0:0%0:8589.
[10:16:17] [Server thread/INFO]: ActionBarAPI V1.5.4a has been enabled!
[10:16:17] [Server thread/INFO]: [Playtimes] Enabling Playtimes v1.3.10*
[10:16:17] [Server thread/INFO]: [PlayTime] Plugin is up to date! - 1.3.10
[10:16:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PlayTimes
[10:16:17] [Server thread/INFO]: [PlayTime] PlaceholdersAPI Hooked!
[10:16:17] [Server thread/INFO]: [PlayTime] Successfully loaded.
[10:16:17] [Server thread/INFO]: [RottenSmelt] Enabling RottenSmelt v1.0*
[10:16:17] [Server thread/INFO]: >---<>---<>---> RottenSmelt <---<>---<>---<
[10:16:17] [Server thread/INFO]: 
[10:16:17] [Server thread/INFO]: RottenSmelt Version 1.0
[10:16:17] [Server thread/INFO]: Coded by Tronax
[10:16:17] [Server thread/INFO]: Plugin enabled!
[10:16:17] [Server thread/INFO]: 
[10:16:17] [Server thread/INFO]: >---<>---<>---> RottenSmelt <---<>---<>---<
[10:16:17] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.24
[10:16:17] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.24-Free.jar
[10:16:17] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_16_R3
[10:16:17] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #878
[10:16:17] [Server thread/INFO]: [LibsDisguises] Build Date: 13/02/2021 01:57
[10:16:17] [Server thread/INFO]: [LibsDisguises] Found a premium Lib's Disguises jar (v10.0.15, build #666, created 08/07/2020 06:11)
[10:16:17] [Server thread/INFO]: [LibsDisguises] Registered to: 119185 (25)
[10:16:17] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[10:16:18] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[10:16:18] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[10:16:18] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[10:16:18] [Server thread/INFO]: [KixsAutoAnnouncerPremium] Enabling KixsAutoAnnouncerPremium v1.2.3
[10:16:18] [Server thread/INFO]: --------------------------------------
[10:16:18] [Server thread/INFO]:     kix's auto announcer premium
[10:16:18] [Server thread/INFO]:       enabled on version 1.2.3
[10:16:18] [Server thread/INFO]: --------------------------------------
[10:16:18] [Server thread/INFO]: [Kix's Auto Announcer ++] Data files loaded successfully.
[10:16:18] [Server thread/INFO]: [Kix's Auto Announcer ++] Loaded 16 broadcasts.
[10:16:18] [Server thread/INFO]: [ChillPhantoms] Enabling ChillPhantoms v0
[10:16:18] [Server thread/INFO]: [MVdWPlaceholderAPI] Enabling MVdWPlaceholderAPI v3.1.1*
[10:16:18] [Server thread/INFO]: [MVdWPlaceholderAPI] Initializing placeholders ...
[10:16:18] [Server thread/INFO]: [MVdWPlaceholderAPI] Sending metrics ...
[10:16:18] [Server thread/INFO]: [SwimmingHorses] Enabling SwimmingHorses v1.1
[10:16:18] [Server thread/INFO]: [ImageOnMap] Enabling ImageOnMap v4.0
[10:16:18] [Server thread/INFO]: [ImageOnMap] Loaded 99 player map files.
[10:16:18] [Server thread/INFO]: [breakableBarriers] Enabling breakableBarriers v1.0.0*
[10:16:18] [Server thread/WARN]: [breakableBarriers] Loaded class com.comphenix.protocol.events.PacketListener from ProtocolLib v4.6.0 which is not a depend, softdepend or loadbefore of this plugin.
[10:16:18] [Server thread/INFO]: [breakableBarriers] Plugin is now active.
[10:16:18] [Server thread/INFO]: Barrier Pickaxe
[10:16:18] [Server thread/INFO]: [AntiXrayPlus] Enabling AntiXrayPlus v1.0.0
[10:16:18] [Server thread/INFO]: [ServerListPlus] Enabling ServerListPlus v3.4.8*
[10:16:18] [Server thread/INFO]: [ServerListPlus] [Core] Reloading configuration...
[10:16:18] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: ServerStatusConf
[10:16:18] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: PluginConf
[10:16:18] [Server thread/INFO]: [ServerListPlus] [Core] Reloading saved player identities...
[10:16:18] [Server thread/INFO]: [ServerListPlus] Successfully loaded!
[10:16:18] [Server thread/INFO]: [ServerListPlus] ServerListPlus v3.4.8 enabled.
[10:16:18] [Server thread/INFO]: [NightVisionPlus] Enabling NightVisionPlus v2.5*
[10:16:18] [Server thread/INFO]: [NV+] Checking for updates...
[10:16:18] [Server thread/INFO]: [NV+] Could not connect to Spigot
[10:16:18] [Server thread/WARN]: java.io.IOException: Server returned HTTP response code: 405 for URL: https://api.spigotmc.org/legacy/update.php?resource=58282
[10:16:18] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1900)
[10:16:18] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1498)
[10:16:18] [Server thread/WARN]:     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:268)
[10:16:18] [Server thread/WARN]:     at com.samgameryt.nightvisionplus.updatehandler.UpdateChecker.checkUpdate(UpdateChecker.java:42)
[10:16:18] [Server thread/WARN]:     at com.samgameryt.nightvisionplus.Main.onEnable(Main.java:32)
[10:16:18] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263)
[10:16:18] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380)
[10:16:18] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483)
[10:16:18] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501)
[10:16:18] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415)
[10:16:18] [Server thread/WARN]:     at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468)
[10:16:18] [Server thread/WARN]:     at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:241)
[10:16:18] [Server thread/WARN]:     at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:943)
[10:16:18] [Server thread/WARN]:     at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177)
[10:16:18] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[10:16:18] [Server thread/INFO]: [ColoredAnvils] Enabling ColoredAnvils v1.08*
[10:16:18] [Server thread/INFO]: [ColoredAnvils] ColoredAnvils v1.08 has been enabled!
[10:16:18] [Server thread/INFO]: [ColoredAnvils] Permissions for ColoredAnvils are disabled.
[10:16:18] [Server thread/INFO]: [BottledExp] Enabling BottledExp v2.2.8.2
[10:16:19] [Server thread/INFO]: [BottledExp] Version 2.2.8.2 has been enabled
[10:16:19] [Server thread/INFO]: [BottledExp] Using LuckPerms via Vault.
[10:16:19] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.4.6
[10:16:19] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib.
[10:16:19] [Server thread/INFO]: [VoteParty] Enabling VoteParty v2.24
[10:16:19] [Server thread/INFO]: [VoteParty] [ACF] Enabled Asynchronous Tab Completion Support!
[10:16:19] [Server thread/INFO]: 
 _  _  ____
/ )( \(  _ \
\ \/ / ) __/ VoteParty v2.24
 \__/ (__)   Server Version: git-Paper-545 (MC: 1.16.5)

[10:16:19] [Server thread/WARN]: [VoteParty] Loaded class us.myles.ViaVersion.api.protocol.ProtocolRegistry from ViaVersion v3.2.1 which is not a depend, softdepend or loadbefore of this plugin.
[10:16:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: voteparty
[10:16:20] [Server thread/INFO]: [dynmap] Enabling dynmap v3.1-beta7-449*
[10:16:20] [Server thread/INFO]: [dynmap] Using LuckPerms 5.3.0 for access control
[10:16:20] [Server thread/INFO]: [dynmap] Opening MySQL database localhost:3306/dynmap as map store
[10:16:20] [Server thread/WARN]: Sun Mar 21 10:16:20 UTC 2021 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
[10:16:20] [Server thread/INFO]: [dynmap] Mod Support processing completed
[10:16:20] [Server thread/INFO]: [dynmap] Loaded 25 shaders.
[10:16:20] [Server thread/INFO]: [dynmap] Loaded 82 perspectives.
[10:16:20] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[10:16:20] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[10:16:20] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[10:16:20] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:8123
[10:16:20] [Server thread/INFO]: [dynmap] version 3.1-beta7-449 is enabled - core version 3.1-beta7-449
[10:16:20] [Server thread/INFO]: [dynmap] For support, visit https://reddit.com/r/Dynmap or our Discord at https://discord.gg/s3rd5qn
[10:16:20] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[10:16:20] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[10:16:20] [Server thread/INFO]: [dynmap] Loaded 1 maps of world 'Survival'.
[10:16:20] [Server thread/INFO]: [dynmap] Loaded 4 pending tile renders for world 'Survival'
[10:16:20] [Server thread/INFO]: [dynmap] World 'Survival_nether' disabled
[10:16:20] [Server thread/INFO]: [dynmap] World 'Survival_the_end' disabled
[10:16:20] [Server thread/INFO]: [dynmap] Enabled
[10:16:20] [Server thread/INFO]: [Essentials] Enabling Essentials v2.18.2.0
[10:16:20] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[10:16:20] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[10:16:20] [Server thread/INFO]: [Essentials] No kits found to migrate.
[10:16:20] [Server thread/INFO]: [Essentials] Loaded 25599 items from items.json.
[10:16:20] [Server thread/INFO]: [Essentials] Using locale en_US
[10:16:20] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[10:16:21] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[10:16:21] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[10:16:21] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[10:16:21] [Server thread/INFO]: [AdvancedDevelopmentLibrary] Enabling AdvancedDevelopmentLibrary v1.3.0
[10:16:21] [Server thread/INFO]: [Library] - - - - - - - - Loading - - - - - - - -
[10:16:21] [Server thread/INFO]: [Library] - - - - - Successfully loaded - - - - -
[10:16:21] [Server thread/INFO]: [Elevator] Enabling Elevator v3.11.0
[10:16:21] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.13.4
[10:16:21] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[10:16:21] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[10:16:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb
[10:16:21] [Server thread/INFO]: [BannerMaker] Enabling BannerMaker v2.3.1
[10:16:21] [Server thread/INFO]: [BannerMaker] Language: en
[10:16:21] [Server thread/INFO]: [BannerMaker] Vault dependency found! Enable economy supported
[10:16:21] [Server thread/INFO]: [MobsToEggs] Enabling MobsToEggs v1.5.5_3
[10:16:21] [Server thread/INFO]: ------------------
[10:16:21] [Server thread/INFO]: Thanks for using MobsToEggs v1.5.5_3!
[10:16:21] [Server thread/INFO]: Loading language: EN
[10:16:21] [Server thread/INFO]: Author: [Sugarfyi]
[10:16:21] [Server thread/INFO]: https://sugarfyi.com
[10:16:21] [Server thread/INFO]: ------------------
[10:16:21] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.18.2.0
[10:16:21] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[10:16:21] [Server thread/INFO]: [TAB] Enabling TAB v2.8.10
[10:16:21] [Server thread/INFO]: [TAB] Server version: 1.16.5 (v1_16_R3)
[10:16:21] [Server thread/INFO]: [TAB] File plugins/TAB/errors.txt exists and is not empty. Take a look at the error messages and try to resolve them. After you do, delete the file.
[10:16:21] [Server thread/INFO]: [TAB] There was 1 startup warning.
[10:16:21] [Server thread/INFO]: [TAB] Enabled in 25ms
[10:16:21] [Server thread/INFO]: [WESV] Enabling WorldEditSelectionVisualizer v2.0.7
[10:16:21] [Server thread/INFO]: [WESV] Using WorldEdit 7 api
[10:16:21] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.4+f7ff984
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival) TNT ignition is PERMITTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival) Lighters are PERMITTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival) Lava fire is PERMITTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival) Fire spread is UNRESTRICTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Survival'
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival_nether) TNT ignition is PERMITTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival_nether) Lighters are PERMITTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival_nether) Lava fire is PERMITTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival_nether) Fire spread is UNRESTRICTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Survival_nether'
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival_the_end) TNT ignition is PERMITTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival_the_end) Lighters are PERMITTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival_the_end) Lava fire is PERMITTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] (Survival_the_end) Fire spread is UNRESTRICTED.
[10:16:21] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Survival_the_end'
[10:16:21] [Server thread/INFO]: [WorldGuard] Loading region data...
[10:16:21] [Server thread/INFO]: [Negativity] Enabling Negativity v1.9.7
[10:16:21] [Server thread/INFO]: [Negativity] Detected server version: v1_16 (v1_16_R3)
[10:16:21] [Server thread/INFO]: [Negativity] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[10:16:21] [Server thread/INFO]: [Negativity] This plugin is free, but you can buy the premium version : https://www.spigotmc.org/resources/86874 <3
[10:16:21] [Server thread/INFO]: [Negativity] New version available (1.9.8). Download it here: https://www.spigotmc.org/resources/48399/
[10:16:21] [Server thread/INFO]: [Negativity] Loaded support for Essentials, WorldGuard, ViaVersion.
[10:16:21] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.18.2.0
[10:16:21] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[10:16:21] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v19.4
[10:16:21] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled!
[10:16:21] [Server thread/INFO]: [CoreProtect] Using MySQL for data storage.
[10:16:21] [Server thread/INFO]: --------------------
[10:16:21] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[10:16:21] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[10:16:21] [Server thread/INFO]: --------------------
[10:16:21] [Server thread/INFO]: [Harbor] Enabling Harbor v1.6.3
[10:16:21] [Server thread/INFO]: [VeinMiner] Enabling VeinMiner v1.17.5
[10:16:21] [Server thread/INFO]: [VeinMiner] Registering events
[10:16:21] [Server thread/INFO]: [VeinMiner] Registering commands
[10:16:21] [Server thread/INFO]: [VeinMiner] Vault found. Attempting to enable economy support...
[10:16:21] [Server thread/INFO]: [VeinMiner] Economy found! Hooked successfully.
[10:16:21] [Server thread/INFO]: [VeinMiner] Enabling Plugin Metrics
[10:16:21] [Server thread/INFO]: [VeinMiner] Thanks for enabling Metrics! The anonymous stats are appreciated
[10:16:21] [Server thread/INFO]: [VeinMiner] Loading configuration options to local memory
[10:16:21] [Server thread/INFO]: [VeinMiner] Performing an update check!
[10:16:21] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v7.0.0
[10:16:21] [ForkJoinPool.commonPool-worker-9/INFO]: [VeinMiner] An update is available! VeinMiner 1.17.6 may be downloaded on SpigotMC
[10:16:21] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[10:16:21] [Server thread/INFO]: [SilkSpawners] Loading support for v1_16_R3
[10:16:21] [Server thread/INFO]: [SilkSpawners] AutoUpdater is enabled and now running.
[10:16:21] [Server thread/INFO]: [SilkSpawners] BarAPI is disabled due to config setting.
[10:16:21] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.2.2-b812
[10:16:21] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.2.2-b812" 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--].
[10:16:21] [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.
[10:16:22] [Server thread/INFO]: -------- World Settings For [AdminBuild] --------
[10:16:22] [Server thread/INFO]: Experience Merge Radius: 3.0
[10:16:22] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv true
[10:16:22] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:16:22] [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 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[10:16:22] [Server thread/INFO]: Max TNT Explosions: 100
[10:16:22] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:16:22] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:16:22] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:16:22] [Server thread/INFO]: View Distance: 10
[10:16:22] [Server thread/INFO]: Item Merge Radius: 2.5
[10:16:22] [Server thread/INFO]: Item Despawn Rate: 6000
[10:16:22] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[10:16:22] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[10:16:22] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:16:22] [Server thread/INFO]: Mob Spawn Range: 6
[10:16:22] [Server thread/INFO]: Time elapsed: 1944253233 ms
[10:16:22] [Server thread/INFO]: [WorldGuard] (AdminBuild) TNT ignition is PERMITTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] (AdminBuild) Lighters are PERMITTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] (AdminBuild) Lava fire is PERMITTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] (AdminBuild) Fire spread is UNRESTRICTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AdminBuild'
[10:16:22] [Server thread/INFO]: [dynmap] World 'AdminBuild' disabled
[10:16:22] [Server thread/INFO]: -------- World Settings For [resources] --------
[10:16:22] [Server thread/INFO]: Experience Merge Radius: 3.0
[10:16:22] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv true
[10:16:22] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:16:22] [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 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[10:16:22] [Server thread/INFO]: Max TNT Explosions: 100
[10:16:22] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:16:22] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:16:22] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:16:22] [Server thread/INFO]: View Distance: 10
[10:16:22] [Server thread/INFO]: Item Merge Radius: 2.5
[10:16:22] [Server thread/INFO]: Item Despawn Rate: 6000
[10:16:22] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[10:16:22] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[10:16:22] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:16:22] [Server thread/INFO]: Mob Spawn Range: 6
[10:16:22] [Server thread/INFO]: Preparing start region for dimension minecraft:resources
[10:16:22] [Server thread/INFO]: Loaded 0 spawn chunks for world resources
[10:16:22] [Server thread/INFO]: Preparing spawn area: 0%
[10:16:22] [Server thread/INFO]: Time elapsed: 24 ms
[10:16:22] [Server thread/INFO]: [WorldGuard] (resources) TNT ignition is PERMITTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] (resources) Lighters are PERMITTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] (resources) Lava fire is PERMITTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] (resources) Fire spread is UNRESTRICTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'resources'
[10:16:22] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'resources'.
[10:16:22] [Server thread/INFO]: -------- World Settings For [Void] --------
[10:16:22] [Server thread/INFO]: Experience Merge Radius: 3.0
[10:16:22] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:16:22] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv true
[10:16:22] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:16:22] [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 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[10:16:22] [Server thread/INFO]: Max TNT Explosions: 100
[10:16:22] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:16:22] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:16:22] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:16:22] [Server thread/INFO]: View Distance: 10
[10:16:22] [Server thread/INFO]: Item Merge Radius: 2.5
[10:16:22] [Server thread/INFO]: Item Despawn Rate: 6000
[10:16:22] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[10:16:22] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[10:16:22] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:16:22] [Server thread/INFO]: Mob Spawn Range: 6
[10:16:22] [Server thread/INFO]: Time elapsed: 1944253441 ms
[10:16:22] [Server thread/INFO]: [WorldGuard] (Void) TNT ignition is PERMITTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] (Void) Lighters are PERMITTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] (Void) Lava fire is PERMITTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] (Void) Fire spread is UNRESTRICTED.
[10:16:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Void'
[10:16:22] [Server thread/INFO]: [dynmap] World 'Void' disabled
[10:16:23] [Paper Async Chunk Task Thread #0/ERROR]: Unknown registry key: minecraft:normal_tree
[10:16:23] [Paper Async Chunk Task Thread #0/ERROR]: Unknown registry key: minecraft:normal_tree
[10:16:23] [Server thread/INFO]: -------- World Settings For [creative] --------
[10:16:23] [Server thread/INFO]: Experience Merge Radius: 3.0
[10:16:23] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv true
[10:16:23] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:16:23] [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 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[10:16:23] [Server thread/INFO]: Max TNT Explosions: 100
[10:16:23] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:16:23] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:16:23] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:16:23] [Server thread/INFO]: View Distance: 10
[10:16:23] [Server thread/INFO]: Item Merge Radius: 2.5
[10:16:23] [Server thread/INFO]: Item Despawn Rate: 6000
[10:16:23] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[10:16:23] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[10:16:23] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:16:23] [Server thread/INFO]: Mob Spawn Range: 6
[10:16:23] [Paper Async Chunk Task Thread #0/ERROR]: Unknown registry key: minecraft:normal_tree
[10:16:23] [Paper Async Chunk Task Thread #0/ERROR]: Unknown registry key: minecraft:normal_tree
[10:16:23] [Server thread/INFO]: [P2] Detected world load for 'creative'
[10:16:23] [Server thread/INFO]: [P2]  - generator: PlotSquared>PlotSquared
[10:16:23] [Server thread/INFO]: [P2]  - plotworld: com.github.intellectualsites.plotsquared.plot.generator.HybridPlotWorld
[10:16:23] [Server thread/INFO]: [P2]  - plotAreaManager: com.github.intellectualsites.plotsquared.plot.generator.HybridPlotManager
[10:16:23] [Server thread/INFO]: Time elapsed: 1944253982 ms
[10:16:23] [Server thread/INFO]: [WorldGuard] (creative) TNT ignition is PERMITTED.
[10:16:23] [Server thread/INFO]: [WorldGuard] (creative) Lighters are PERMITTED.
[10:16:23] [Server thread/INFO]: [WorldGuard] (creative) Lava fire is PERMITTED.
[10:16:23] [Server thread/INFO]: [WorldGuard] (creative) Fire spread is UNRESTRICTED.
[10:16:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'creative'
[10:16:23] [Server thread/INFO]: [dynmap] World 'creative' disabled
[10:16:23] [Server thread/INFO]: -------- World Settings For [Catalog] --------
[10:16:23] [Server thread/INFO]: Experience Merge Radius: 3.0
[10:16:23] [Server thread/INFO]: Cactus Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Cane Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Melon Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Sapling Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Carrot Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Potato Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Wheat Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Vine Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Kelp Growth Modifier: 100%
[10:16:23] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv true
[10:16:23] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[10:16:23] [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 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[10:16:23] [Server thread/INFO]: Max TNT Explosions: 100
[10:16:23] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[10:16:23] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[10:16:23] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[10:16:23] [Server thread/INFO]: View Distance: 10
[10:16:23] [Server thread/INFO]: Item Merge Radius: 2.5
[10:16:23] [Server thread/INFO]: Item Despawn Rate: 6000
[10:16:23] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[10:16:23] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[10:16:23] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[10:16:23] [Server thread/INFO]: Mob Spawn Range: 6
[10:16:23] [Server thread/INFO]: Time elapsed: 1944254052 ms
[10:16:23] [Server thread/INFO]: [WorldGuard] (Catalog) TNT ignition is PERMITTED.
[10:16:23] [Server thread/INFO]: [WorldGuard] (Catalog) Lighters are PERMITTED.
[10:16:23] [Server thread/INFO]: [WorldGuard] (Catalog) Lava fire is PERMITTED.
[10:16:23] [Server thread/INFO]: [WorldGuard] (Catalog) Fire spread is UNRESTRICTED.
[10:16:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Catalog'
[10:16:23] [Server thread/INFO]: [dynmap] World 'Catalog' disabled
[10:16:23] [Server thread/INFO]: [Multiverse-Core] 8 - World(s) loaded.
[10:16:23] [Server thread/INFO]: [Multiverse-Core] Version 4.2.2-b812 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[10:16:23] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.27-SNAPSHOT (build 2279)
[10:16:23] [Server thread/INFO]: Creating file: config.yml
[10:16:23] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.0
[10:16:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish
[10:16:23] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[10:16:23] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_isvanished}
[10:16:23] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_vanishedplayers}
[10:16:23] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_playercount}
[10:16:23] [Server thread/INFO]: [SuperVanish] Hooked into MVdWPlaceholderAPI
[10:16:23] [Server thread/INFO]: [SuperVanish] Hooked into dynmap
[10:16:23] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[10:16:23] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[10:16:23] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v7.18
[10:16:23] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[10:16:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerparticles
[10:16:24] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.17.1-2b69191
[10:16:24] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[10:16:24] [Server thread/WARN]: Sun Mar 21 10:16:24 UTC 2021 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
[10:16:24] [Server thread/INFO]: [GriefPrevention] 2659 total claims loaded.
[10:16:24] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[10:16:24] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[10:16:24] [Server thread/INFO]: [GriefPrevention] Finished loading data (Database Mode).
[10:16:24] [Server thread/INFO]: [GriefPrevention] Boot finished.
[10:16:24] [Server thread/INFO]: [eco] Enabling eco v4.2.2
[10:16:24] [Server thread/INFO]: [eco] 
[10:16:24] [Server thread/INFO]: [eco] Loading eco
[10:16:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eco
[10:16:24] [Server thread/INFO]: [eco] Loaded integrations: GriefPrevention, PlaceholderAPI, WorldGuard
[10:16:24] [Server thread/INFO]: [eco] 
[10:16:24] [Server thread/INFO]: [SpecializedCrates] Enabling SpecializedCrates v2.13.1
[10:16:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: specializedcrates
[10:16:24] [Server thread/INFO]: 
[10:16:24] [Server thread/INFO]: 
[10:16:24] [Server thread/INFO]: SimpleCrate
[10:16:24] [Server thread/INFO]:   + Success: there were no issues.
[10:16:24] [Server thread/INFO]: 
[10:16:24] [Server thread/INFO]: LegendaryCrate
[10:16:24] [Server thread/INFO]:   + Success: there were no issues.
[10:16:24] [Server thread/INFO]: 
[10:16:24] [Server thread/INFO]: RareCrate
[10:16:24] [Server thread/INFO]:   + Success: there were no issues.
[10:16:24] [Server thread/INFO]: 
[10:16:24] [Server thread/INFO]: EpicCrate
[10:16:24] [Server thread/INFO]:   + Success: there were no issues.
[10:16:24] [Server thread/INFO]: 
[10:16:24] [Server thread/INFO]: 
[10:16:24] [Server thread/INFO]: [Brewery] Enabling Brewery v3.0
[10:16:24] [Server thread/INFO]: [Brewery] Brewery enabled!
[10:16:24] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v4.10.1-SNAPSHOT
[10:16:24] [Server thread/INFO]: [LumineUtils] (io.lumine.xikage.mythicmobs.utils.) is bound to plugin MythicMobs - io.lumine.xikage.mythicmobs.MythicMobs
[10:16:24] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.16.5)...
[10:16:24] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[10:16:24] [Server thread/WARN]: [MythicMobs] --====|||| MythicMobs ||||====--
[10:16:24] [Server thread/WARN]: [MythicMobs] This version of MythicMobs is not fully compatible with your version of Bukkit.
[10:16:24] [Server thread/WARN]: [MythicMobs] Some features may be limited or disabled until you use a compatible version.
[10:16:24] [Server thread/INFO]: [MythicMobs] MythicMobs HolographicDisplays Support has been enabled!
[10:16:24] [Server thread/INFO]: [MythicMobs] MythicMobs LibsDisguises Support has been enabled!
[10:16:24] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[10:16:24] [Server thread/INFO]: [MythicMobs] Loaded ProtocolLib packet handlers
[10:16:24] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[10:16:24] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[10:16:24] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[10:16:24] [Server thread/INFO]: [MythicMobs] Loading Mob Registry...
[10:16:24] [Server thread/INFO]: [MythicMobs] Base directory /root/survival/plugins/MythicMobs/SavedData
[10:16:24] [Server thread/INFO]: [MythicMobs] Module directory /root/survival/plugins/MythicMobs/SavedData/worlds
[10:16:24] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 33 ms to scan 1 urls, producing 10 keys and 293 values 
[10:16:24] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 18 ms to scan 1 urls, producing 23 keys and 593 values 
[10:16:24] [Server thread/INFO]: [io.lumine.xikage.mythicmobs.util.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 6 keys and 83 values 
[10:16:24] [Server thread/INFO]: [MythicMobs] LOADED
[10:16:24] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Item 'SkeletonKingSword' in 'ExampleItems.yml': Attributes are configured incorrectly.
[10:16:24] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Item 'KingsCrown' in 'ExampleItems.yml': Attributes are configured incorrectly.
[10:16:24] [Server thread/ERROR]: Error occurred while enabling MythicMobs v4.10.1-SNAPSHOT (Is it up to date?)
java.lang.NoSuchMethodError: net.kyori.adventure.key.Key.of(Ljava/lang/String;)Lnet/kyori/adventure/key/Key;
    at io.lumine.xikage.mythicmobs.utils.text.format.Style.<clinit>(Style.java:48) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.text.TextComponentImpl.createDirect(TextComponentImpl.java:43) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.text.TextComponentImpl.<clinit>(TextComponentImpl.java:38) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.text.TextComponent.of(TextComponent.java:121) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.text.minimessage.MiniMessageParser.parseFormat0(MiniMessageParser.java:370) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.text.minimessage.MiniMessageParser.parseFormat(MiniMessageParser.java:196) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.text.minimessage.MiniMessageImpl.deserialize(MiniMessageImpl.java:49) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.text.minimessage.MiniMessageImpl.deserialize(MiniMessageImpl.java:33) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.text.minimessage.MiniMessage.parse(MiniMessage.java:82) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.text.Text.colorizeBungee(Text.java:104) ~[?:?]
    at io.lumine.xikage.mythicmobs.adapters.bukkit.BukkitItemStack.display(BukkitItemStack.java:130) ~[?:?]
    at io.lumine.xikage.mythicmobs.drops.droppables.ItemDrop.<init>(ItemDrop.java:36) ~[?:?]
    at io.lumine.xikage.mythicmobs.drops.Drop.getDrop(Drop.java:195) ~[?:?]
    at io.lumine.xikage.mythicmobs.drops.DropTable.lambda$new$1(DropTable.java:94) ~[?:?]
    at io.lumine.xikage.mythicmobs.drops.DropManager.lambda$runSecondPass$0(DropManager.java:78) ~[?:?]
    at java.util.ArrayList.forEach(ArrayList.java:1259) ~[?:1.8.0_262]
    at io.lumine.xikage.mythicmobs.drops.DropManager.runSecondPass(DropManager.java:78) ~[?:?]
    at io.lumine.xikage.mythicmobs.drops.DropManager.loadDropTables(DropManager.java:71) ~[?:?]
    at io.lumine.xikage.mythicmobs.io.ConfigManager.load(ConfigManager.java:104) ~[?:?]
    at io.lumine.xikage.mythicmobs.MythicMobs.enable(MythicMobs.java:131) ~[?:?]
    at io.lumine.xikage.mythicmobs.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:61) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.16.5.jar:git-Paper-545]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.16.5.jar:git-Paper-545]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.16.5.jar:git-Paper-545]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501) ~[patched_1.16.5.jar:git-Paper-545]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415) ~[patched_1.16.5.jar:git-Paper-545]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468) ~[patched_1.16.5.jar:git-Paper-545]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:241) ~[patched_1.16.5.jar:git-Paper-545]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:943) ~[patched_1.16.5.jar:git-Paper-545]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.5.jar:git-Paper-545]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_262]
[10:16:24] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v4.10.1-SNAPSHOT
[10:16:24] [Server thread/INFO]: [MythicMobs] Disabling Mythic Mobs...
[10:16:24] [Server thread/INFO]: [MythicMobs] All active settings have been saved.
[10:16:24] [Server thread/INFO]: [MythicMobs] UNLOADED
[10:16:24] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.1-b490
[10:16:24] [Server thread/INFO]: [Multiverse-Inventories 4.2.1-b490] enabled.
[10:16:24] [Server thread/INFO]: [GriefPreventionFlags] Enabling GriefPreventionFlags v5.10.0
[10:16:24] [Server thread/INFO]: [GPFlags] Finished loading configuration.
[10:16:25] [Server thread/INFO]: [GPFlags] Finished loading data.
[10:16:25] [Server thread/INFO]: [GPFlags] Successfully loaded in 0.38 seconds
[10:16:25] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.0.5
[10:16:25] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `master_world's` override! Maybe there are capital letters?
[10:16:25] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `creative_world's` override! Maybe there are capital letters?
[10:16:25] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.1.5-SNAPSHOT
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[10:16:25] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[10:16:25] [Server thread/INFO]: [BlockQuest] Enabling BlockQuest v2.2.4
[10:16:25] [Server thread/INFO]: Registered series lumberjack
[10:16:25] [Server thread/INFO]: Registered series furbies
[10:16:25] [Server thread/INFO]: Registered series perfpumpkin
[10:16:25] [Server thread/INFO]: Registered series mushfriend
[10:16:25] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.2.14-Release
[10:16:25] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[10:16:25] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[10:16:25] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[10:16:25] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[10:16:25] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[10:16:25] [Server thread/WARN]: Sun Mar 21 10:16:25 UTC 2021 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
[10:16:25] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[10:16:25] [Server thread/INFO]: [MarriageMaster] MySQL Server version: 8.0.17
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Loading marriages ...
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Marriages loaded
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Loading priests ...
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Priests loaded
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Loading players ...
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Players loaded
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Writing marriages into cache ...
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Marriages loaded into cache
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Loading homes ...
[10:16:25] [Thread-49/WARN]: java.sql.SQLException: Column 'home_yaw' not found.
[10:16:25] [Thread-49/WARN]:     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965)
[10:16:25] [Thread-49/WARN]:     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)
[10:16:25] [Thread-49/WARN]:     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)
[10:16:25] [Thread-49/WARN]:     at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)
[10:16:25] [Thread-49/WARN]:     at com.mysql.jdbc.ResultSetImpl.findColumn(ResultSetImpl.java:1069)
[10:16:25] [Thread-49/WARN]:     at com.mysql.jdbc.ResultSetImpl.getFloat(ResultSetImpl.java:2402)
[10:16:25] [Thread-49/WARN]:     at at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.pool.HikariProxyResultSet.getFloat(HikariProxyResultSet.java)
[10:16:25] [Thread-49/WARN]:     at at.pcgamingfreaks.MarriageMasterStandalone.Database.Backend.SQL.loadHomes(SQL.java:462)
[10:16:25] [Thread-49/WARN]:     at at.pcgamingfreaks.MarriageMasterStandalone.Database.Backend.SQL.loadAll(SQL.java:397)
[10:16:25] [Thread-49/WARN]:     at at.pcgamingfreaks.MarriageMasterStandalone.Database.BaseDatabase$LoadRunnable.run(BaseDatabase.java:271)
[10:16:25] [Thread-49/WARN]:     at java.lang.Thread.run(Thread.java:748)
[10:16:25] [Thread-49/INFO]: [MarriageMaster] Homes loaded
[10:16:25] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[10:16:25] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[10:16:25] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 829 items.
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_color_heart}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_colored_heart}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_coloredheart}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_colorheart}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_has_home}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_has_nearest_home}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_hashome}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_hasnearesthome}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_heart}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_home}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_home_coordinates}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_home_world}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_home_x}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_home_y}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_home_z}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_homecoordinates}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_homeworld}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_homex}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_homey}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_homez}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_ismarried}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_ispriest}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_magic_heart}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_magicheart}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_married}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_has_home}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_home}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_home_coordinates}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_home_world}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_home_x}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_home_y}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_home_z}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_homecoordinates}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_homeworld}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_homex}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_homey}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_homez}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_partner_displayname}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_partner_name}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_partnerdisplayname}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_partnername}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_prefix}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_suffix}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearest_surname}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearesthashome}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearesthome}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearesthomecoordinates}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearesthomeworld}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearesthomex}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearesthomey}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearesthomez}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearestpartnerdisplayname}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearestpartnername}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearestprefix}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearestsuffix}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_nearestsurname}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partner}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partner_count}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partner_displayname}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partner_displayname_list}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partner_list}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partner_name}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partner_name_list}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partnercount}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partnerdisplayname}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partnerdisplayname_list}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partnerdisplaynamelist}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partnerlist}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partnername}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_partnernamelist}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_prefix}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_status_heart}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_statusheart}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_suffix}
[10:16:25] [Server thread/INFO]: [MVdWPlaceholderAPI] MarriageMaster added custom placeholder {marriagemaster_surname}
[10:16:25] [Server thread/INFO]: [MarriageMaster] MVdW placeholder hook was successfully registered!
[10:16:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: marriagemaster
[10:16:25] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[10:16:25] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[10:16:25] [Server thread/INFO]: [Jobs] Enabling Jobs v4.17.0
[10:16:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr
[10:16:26] [Server thread/INFO]: [Jobs] PlaceholderAPI hooked.
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 8 titles!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 restricted areas!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 75 protected blocks timers!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1076 custom item names!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 72 custom entity names!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 2 custom MythicMobs names!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 38 custom enchant names!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 16 custom color names!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 4 shop items!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Miner
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Weaponsmith
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Woodcutter
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Farmer
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Crafter
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Brewer
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Fisherman
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Enchanter
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Builder
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 1 quests for Digger
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 10 jobs!
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 5566 furnace for reassigning.
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 497 brewing for reassigning.
[10:16:27] [Jobs-DatabaseSaveTask/INFO]: [Jobs] Started database save task.
[10:16:27] [Jobs-BufferedPaymentThread/INFO]: [Jobs] Started buffered payment thread.
[10:16:27] [Server thread/INFO]: [Jobs] WorldGuard detected.
[10:16:27] [Server thread/INFO]: [Jobs] Loaded 2642 block protection entries. 30ms
[10:16:27] [Server thread/INFO]: [Jobs] Plugin has been enabled successfully.
[10:16:27] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v2.1.0
[10:16:27] [Server thread/INFO]: [WorldBorder] [CONFIG] Using rectangular/square border, knockback of 3.0 blocks, and timer delay of 5.
[10:16:27] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[10:16:27] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world" has border radius 15000 at X: 0.5 Z: 0.5
[10:16:27] [Server thread/INFO]: [WorldBorder] [CONFIG] World "survival" has border radius 15000 at X: 0.5 Z: 0.5
[10:16:27] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Survival" has border radius 30000 at X: 0.5 Z: 0.5
[10:16:27] [Server thread/INFO]: [WorldBorder] [CONFIG] World "resources" has border radius 10000 at X: 0.0 Z: 0.0
[10:16:27] [Server thread/INFO]: [WorldBorder] [CONFIG] Successfully hooked into DynMap for the ability to display borders.
[10:16:27] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: 0.0 Y: 63.0 Z: 112.0
[10:16:27] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.21.3
[10:16:27] [Server thread/INFO]: [EmojiChat] Enabling EmojiChat v1.8.3*
[10:16:27] [Server thread/INFO]: [DiscordSRV] API listener io.github.radbuilder.emojichat.hooks.DiscordSrvHook subscribed (2 methods)
[10:16:27] [Server thread/INFO]: [EmojiChat] Hooked DiscordSRV
[10:16:27] [Server thread/INFO]: [EmojiChat] Hooked MVdWPlaceholderAPI
[10:16:27] [Server thread/WARN]: [PlaceholderAPI] EmojiChat is attempting to register placeholders via a PlaceholderHook class which is no longer supported!
[10:16:27] [Server thread/INFO]: [EmojiChat] Hooked PlaceholderAPI
[10:16:27] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.1.12
[10:16:27] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[10:16:27] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[10:16:27] [ForkJoinPool.commonPool-worker-9/INFO]: [Jobs] Preloaded 4299 players data in 0.17
[10:16:28] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_16_R3
[10:16:28] [Server thread/INFO]: [AuctionHouse] Enabled HeadDatabase support
[10:16:28] [Server thread/INFO]: [AuctionHouse] Enabled DiscordSRV support
[10:16:28] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[10:16:28] [pool-82-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (886ab36f357894cf5b4179e25dbe72e5617d6c25)
[10:16:28] [Log4j2-TF-1-AsyncLogger[AsyncContext@70dea4e]-1/INFO]: [DiscordSRV] [JDA] Login Successful!
[10:16:28] [Log4j2-TF-1-AsyncLogger[AsyncContext@70dea4e]-1/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[10:16:29] [Log4j2-TF-1-AsyncLogger[AsyncContext@70dea4e]-1/INFO]: [DiscordSRV] [JDA] Finished Loading!
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:GC [Staff](809346951006519337)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcements(809359050504142858)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-rules(809348086076932127)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-info(809348023741054986)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:roles(817696538934640640)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:helper-commands(822065871224569856)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mod-commands(822066085221236746)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:srmod-commands(822066140150104067)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-commands(822066192700407808)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🕑-breaktime(809348203802787870)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⌛-staff-hours(809348458112090122)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📋-changelog(809348637473374228)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✅-staff-to-do(809348684793380875)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐞-bug-report(817724415700631643)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🏙-warps(809348726283567134)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎉-events(809349616260218910)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🙋-questions(809349788889645056)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📝-suggestions(817708452029530133)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬-general(809348340600537130)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:😡-venting(809348370342608936)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📸-selfies(809348525821394965)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎨-arts-and-crafts(810373912038604800)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐾-pets(809348539448688660)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🥪-food(809348546867363862)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⛔-nsfw(809363429138759700)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:groovy-bot(809367991249534976)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:punishment-discussion(809347687291420682)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:punishments(809347732904476752)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:watch-list(809349845029617695)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🦌-nonny-moose(822020676201873428)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcement-preview(822098334071259197)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-important(809360074622369823)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-helpful(809390814240178246)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-general(809347369774088195)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-nsfw(809347765083308062)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:plugin-spam(809350049481359360)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:member-join(809357162119299074)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-logs(817707145859694602)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:evanxx(822101381263261727)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:remy_baby(822117900210667531)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:doxxxy(822118275391029288)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:shortansweet(822118537501343785)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:duckinc(822118861775962132)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:acefusti138(822119066100563978)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:beans___(822119380040417300)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:cateyez86(822119687407403058)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:nyxxiesticks(822119933931945984)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-maybe-we-will-see(822295622270713918)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Ghoulcraft Server(661048652160303114)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:member-join(661062600498348067)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:the-rules(661062413977911326)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:introductions(661062537562816513)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:meet-the-staff(661068472003985408)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:role-assign(661062654231838729)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcements(661062813221126144)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:helpful-things(661063011703717949)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ban-appeals(745915376830775367)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:help(758229655776919562)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-submit(758227862255566849)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-logs(758227968115343390)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bug-reports(749946206322425866)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-astroemmyyy(822979018151559228)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:contest-suggestions(805864477768941618)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:towns(758233646175617054)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rank-promotions(661063422980390934)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:polls(661063507575570442)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suggestions(661063586776350730)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:player-run-events(774794454279651338)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot-commands(778611322806992946)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:general(661066068885897216)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:story-time(821326097659985941)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:memes-and-links(661066255012462642)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:build-showcase(661066300252094494)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:selfies(661066169477759001)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:fashion-n-makeup(818798147412164640)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:food(818797082101022780)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:pet-pics(661066145427619870)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot-games(818798383590277120)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:other-games(661066327317807148)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:event-pics(784446136336252938)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:inspiration(661066359257432116)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:artwork(765417382469566505)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival(714777149709615124)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:builder-rules(770956512092880916)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:to-do-list(770948664414699521)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:events-chat(770949087738331146)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:event-ideas(770948477789929472)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:attraction-ideas(777835404132483072)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:progress-pics(770948972104777759)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:archived-events(734482026224418867)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:movie-night-chat(760781305780240414)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:vc-context(770479857960222730)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:music-list(778663703272357888)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-announcements(661069315700686859)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:updates(815202513900666940)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-commands-and-help(661069365273165864)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:fly-list(766852271614328863)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:a-non-a-moose(758947347446628382)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:changelog(758258002515591170)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-to-do(661069389914963974)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-general(661069057155399730)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:breaktime(661085030877102105)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-questions(661069247853887529)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-suggestions(661069095944454164)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:punishments(661069144162304003)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:punishment-discussion(661069192228765721)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:watch-list(661069226223599616)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-recommend(760403475543621652)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:general(661069868187254784)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:test-announcements(798231777709260821)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:promotions-and-demotions(797728613406998548)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:overhaul-plans(787241123176251392)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:plugin-spam(661134299768029195)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:chat-logs(661299387523268656)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival-console(687626219927502957)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sm-raffle(799657080314134559)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:winter-build-contest(783293797672288277)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:winter-skin-contest(783293928723578930)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:onlystaffs-18-plus(760262611803176961)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-help-request(661063704896339997)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:autumn-build-contest(661064186419216404)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:autumn-skin-contest(661064289406287872)
[10:16:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:console-maybe-we-will-see(822295622270713918)
[10:16:30] [Server thread/INFO]: [AuctionHouse] Loaded 21061 listings
[10:16:30] [Server thread/INFO]: [DeathMessages] Enabling DeathMessages v1.2.3
[10:16:30] [Server thread/INFO]: [DeathMessages] Partnered with Sparked Host
[10:16:30] [Server thread/INFO]: [DeathMessages] Grab a server today with the code `Josh` for 15% off @ https://sparkedhost.com
[10:16:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Not using JDBC, one of host/port/database was default
[10:16:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deathmessages
[10:16:30] [Server thread/INFO]: [DeathMessages] PlaceholderAPI found. Enabling Hook.
[10:16:30] [Server thread/INFO]: [DeathMessages] WorldGuard found. Enabling Hook.
[10:16:30] [Server thread/INFO]: [DeathMessages] PlugMan found. Adding this plugin to its ignored plugins list.
[10:16:30] [Server thread/WARN]: Could not register alias enchant because it contains commands that do not exist: updateenchants
[10:16:30] [Server thread/WARN]: Could not register alias kit because it contains commands that do not exist: updateenchants
[10:16:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[10:16:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[10:16:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling dynmap hook
[10:16:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[10:16:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] No chat plugin hooks enabled
[10:16:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[10:16:31] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:16:31] [Server thread/INFO]: Running delayed init tasks
[10:16:31] [Craft Scheduler Thread - 4/INFO]: [ProfileStorage] Checking for update...
[10:16:31] [Craft Scheduler Thread - 7/INFO]: [HorseTpWithMe] Checking for updates...
[10:16:31] [Craft Scheduler Thread - 13/INFO]: [Library] Checking for update...
[10:16:31] [Server thread/INFO]: [AsyncWorldEdit] Loading plugins...
[10:16:31] [Server thread/INFO]: [AutoRestart] Up to date!
[10:16:31] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.16.4(754)
[10:16:31] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[10:16:31] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[10:16:31] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[10:16:31] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://jo0001.github.io/ViaSetup
[10:16:31] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[10:16:31] [Craft Scheduler Thread - 18/INFO]: [Vault] Checking for Updates ... 
[10:16:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab
[10:16:31] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[10:16:31] [Server thread/INFO]: [SilkSpawners] Result from AutoUpdater is: NO_UPDATE
[10:16:31] [Server thread/INFO]: [Jobs] Successfully linked with Vault.
[10:16:31] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Vault for Vault's Economy API
[10:16:31] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LuckPerms for Vault's Chat API
[10:16:31] [Craft Scheduler Thread - 3/INFO]: [VoteParty] Version is up to date
[10:16:31] [Craft Scheduler Thread - 15/WARN]: [WESV] A new version is available ! Last version is 2.0.8 and you are on 2.0.7
[10:16:31] [Craft Scheduler Thread - 15/WARN]: [WESV] You can download it on: https://www.spigotmc.org/resources/worldeditselectionvisualizer.17311/
[10:16:31] [Craft Scheduler Thread - 7/INFO]: [HorseTpWithMe] You're all up to date.
[10:16:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv
[10:16:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player
[10:16:31] [Server thread/INFO]: 1 placeholder hooks successfully registered!
[10:16:31] [Craft Scheduler Thread - 18/INFO]: [Vault] No new version available
[10:16:32] [Craft Scheduler Thread - 4/INFO]: [ProfileStorage]   You are using the latest version.
[10:16:32] [Craft Scheduler Thread - 13/INFO]: [Library]   You are using the latest version.
[10:16:32] [Thread-59/INFO]: --------------------
[10:16:32] [Thread-59/INFO]: [CoreProtect] Version 19.5 is now available.
[10:16:32] [Thread-59/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[10:16:32] [Thread-59/INFO]: --------------------
[10:16:32] [Craft Scheduler Thread - 16/INFO]: [HeadDatabase] Succesfully loaded 35804 heads!
[10:16:32] [Craft Scheduler Thread - 16/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[10:16:33] [Server thread/INFO]: [EcoEnchants] Loaded EcoEnchants
[10:16:34] [Server thread/ERROR]: [Citizens] The trait trader failed to load for NPC ID: 18.
[10:16:34] [Server thread/ERROR]: [Citizens] The trait fishing failed to load for NPC ID: 37.
[10:16:34] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 42.
[10:16:35] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 89.
[10:16:35] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 88.
[10:16:35] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 81.
[10:16:35] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 79.
[10:16:35] [Paper Async Chunk Urgent Task Thread/WARN]: Unable to resolve BlockEntity for ItemStack: minecraft:air
[10:16:35] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 170.
[10:16:35] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 192.
[10:16:35] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 206.
[10:16:35] [Server thread/WARN]: java.lang.IllegalArgumentException: unable to find valid entity superclass for class class net.citizensnpcs.nms.v1_16_R3.entity.nonliving.FishingHookController$EntityFishingHookNPC
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.nms.v1_16_R3.util.NMSImpl.registerEntityClass(NMSImpl.java:993)
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.util.NMS.registerEntityClass(NMS.java:344)
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.npc.AbstractEntityController.<init>(AbstractEntityController.java:16)
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.nms.v1_16_R3.entity.MobEntityController.<init>(MobEntityController.java:26)
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.nms.v1_16_R3.entity.nonliving.FishingHookController.<init>(FishingHookController.java:37)
[10:16:35] [Server thread/WARN]:     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[10:16:35] [Server thread/WARN]:     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
[10:16:35] [Server thread/WARN]:     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
[10:16:35] [Server thread/WARN]:     at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
[10:16:35] [Server thread/WARN]:     at java.lang.Class.newInstance(Class.java:442)
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.npc.EntityControllers.createForType(EntityControllers.java:20)
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.npc.CitizensNPCRegistry.getByType(CitizensNPCRegistry.java:128)
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.npc.CitizensNPCRegistry.createNPC(CitizensNPCRegistry.java:58)
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:56)
[10:16:35] [Server thread/WARN]:     at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:501)
[10:16:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:100)
[10:16:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:468)
[10:16:35] [Server thread/WARN]:     at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:952)
[10:16:35] [Server thread/WARN]:     at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177)
[10:16:35] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[10:16:35] [Server thread/WARN]: [Citizens] Task #1103 for Citizens v2.0.27-SNAPSHOT (build 2279) generated an exception
java.lang.NullPointerException: null
    at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:770) ~[patched_1.16.5.jar:git-Paper-545]
    at net.citizensnpcs.npc.CitizensNPC.<init>(CitizensNPC.java:62) ~[?:?]
    at net.citizensnpcs.npc.CitizensNPCRegistry.getByType(CitizensNPCRegistry.java:128) ~[?:?]
    at net.citizensnpcs.npc.CitizensNPCRegistry.createNPC(CitizensNPCRegistry.java:58) ~[?:?]
    at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:56) ~[?:?]
    at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:501) ~[?:?]
    at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:100) ~[patched_1.16.5.jar:git-Paper-545]
    at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:468) ~[patched_1.16.5.jar:git-Paper-545]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:952) ~[patched_1.16.5.jar:git-Paper-545]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.5.jar:git-Paper-545]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_262]
[10:16:35] [Server thread/INFO]: [eco] Loaded eco
[10:16:35] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[10:16:35] [Server thread/INFO]: [Kix's Auto Announcer ++ Updater] You are running the latest version of KAA++.
[10:16:35] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[10:16:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse
[10:16:35] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[10:16:35] [Server thread/INFO]: [AuctionHouse] Found MVdWPlaceholderAPI plugin
[10:16:35] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_active_listings}
[10:16:35] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_player_listings}
[10:16:35] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_expired_listings}
[10:16:35] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_sold_items}
[10:16:35] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_max_listings}
[10:16:35] [Server thread/INFO]: [AuctionHouse] Registered MVdWPlaceholderAPI placeholders
[10:16:35] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[10:16:35] [Server thread/INFO]: Done (29.015s)! For help, type "help"
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] ************************************************************
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * WARNING - YOU ARE RUNNING AN OUTDATED VERSION OF JAVA.
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * PAPER WILL STOP BEING COMPATIBLE WITH THIS VERSION OF
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * JAVA WHEN MINECRAFT 1.17 IS RELEASED.
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] *
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * Please update the version of Java you use to run Paper
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * to at least Java 11. When Paper for Minecraft 1.17 is
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * released support for versions of Java before 11 will
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * be dropped.
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] *
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * Current Java version: 1.8.0_262
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] *
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * Check this forum post for more information: 
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] *   https://papermc.io/java11
[10:16:35] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] ************************************************************
[10:16:35] [Server thread/INFO]: Timings Reset
[10:16:36] [Craft Scheduler Thread - 16/INFO]: [Simple Elevators] A new update is available at:
[10:16:36] [Craft Scheduler Thread - 16/INFO]: https://www.spigotmc.org/resources/44462/updates
[10:16:36] [Craft Scheduler Thread - 27/WARN]: [HeadDatabase] You are using an outdated version!
[10:16:36] [Craft Scheduler Thread - 27/WARN]: [HeadDatabase] Latest version: 4.13.5. You are on version: 4.13.4.
[10:16:36] [Craft Scheduler Thread - 27/WARN]: [HeadDatabase] Update here: https://www.spigotmc.org/resources/head-database.14280/
[10:16:36] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5003ms or 100 ticks behind
[10:16:38] [Paper Async Chunk Urgent Task Thread/WARN]: Unable to resolve BlockEntity for ItemStack: minecraft:bee_nest
[10:16:40] [Paper Async Chunk Urgent Task Thread/WARN]: Unable to resolve BlockEntity for ItemStack: minecraft:bee_nest
[10:16:40] [Paper Async Chunk Urgent Task Thread/WARN]: Unable to resolve BlockEntity for ItemStack: minecraft:light_gray_banner
[10:16:42] [Craft Scheduler Thread - 31/INFO]: [BuycraftX] Fetching all due players...
[10:16:42] [Dynmap Render Thread/WARN]: Sun Mar 21 10:16:42 UTC 2021 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
[10:16:42] [Dynmap Render Thread/WARN]: Sun Mar 21 10:16:42 UTC 2021 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
[10:16:42] [Craft Scheduler Thread - 31/INFO]: [BuycraftX] Fetched due players (5 found).
[10:16:49] [Craft Scheduler Thread - 28/INFO]: [Brewery] Background data loading complete.
[10:17:50] [User Authenticator #1/INFO]: UUID of player MissGhouls is 7af36598-1d8b-46ce-a4a1-b5a37c030c5c
[10:17:50] [Server thread/INFO]: [ProfileStorage] Using Offline mode for loading properties!
[10:17:50] [pool-25-thread-5/WARN]: [TAB] Loaded class me.libraryaddict.disguise.DisguiseAPI from LibsDisguises v10.0.24 which is not a depend, softdepend or loadbefore of this plugin.
[10:17:50] [Server thread/INFO]: MissGhouls[/76.181.55.149:60189] logged in with entity id 6602 at ([Survival]6.946840011356839, 72.42095119873734, 83.14244445709038)
[10:17:51] [Server thread/INFO]: [ProfileStorage] Profile data of player MissGhouls were updated!
[10:18:37] [Craft Scheduler Thread - 4/INFO]: [BuycraftX] Fetching all due players...
[10:18:37] [Craft Scheduler Thread - 4/INFO]: [BuycraftX] Fetched due players (5 found).