Paste #77126: Untitled Paste

Date: 2020/11/03 11:34:43 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[19:31:08] [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'
[19:31:09] [main/INFO]: Reloading ResourceManager: Default, bukkit
[19:31:09] [Worker-Main-3/INFO]: Loaded 7 recipes
[19:31:10] [Server thread/INFO]: Starting minecraft server version 1.16.4
[19:31:10] [Server thread/INFO]: Loading properties
[19:31:10] [Server thread/INFO]: This server is running Paper version git-Paper-259 (MC: 1.16.4) (Implementing API version 1.16.4-R0.1-SNAPSHOT)
[19:31:10] [Server thread/INFO]: Server Ping Player Sample Count: 12
[19:31:10] [Server thread/INFO]: Using 4 threads for Netty based IO
[19:31:10] [Server thread/INFO]: Debug logging is disabled
[19:31:10] [Server thread/INFO]: Default game type: SURVIVAL
[19:31:10] [Server thread/INFO]: Generating keypair
[19:31:10] [Server thread/INFO]: Starting Minecraft server on *:25565
[19:31:10] [Server thread/INFO]: Using epoll channel type
[19:31:11] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[19:31:15] [Server thread/WARN]: Legacy plugin GuiRedeemMCMMO v2.0.2-BETA does not specify an api-version.
[19:31:16] [Server thread/ERROR]: Could not load 'plugins/Vivecraft_Spigot_Extensions.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.NoClassDefFoundError: net/minecraft/server/v1_16_R2/IChatBaseComponent
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:141) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:397) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:305) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServer.java:389) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:206) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:939) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_272]
Caused by: java.lang.NoClassDefFoundError: net/minecraft/server/v1_16_R2/IChatBaseComponent
    at java.lang.Class.forName0(Native Method) ~[?:1.8.0_272]
    at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_272]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:68) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:137) ~[patched_1.16.4.jar:git-Paper-259]
    ... 7 more
Caused by: java.lang.ClassNotFoundException: net.minecraft.server.v1_16_R2.IChatBaseComponent
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:105) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:100) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_272]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_272]
    at java.lang.Class.forName0(Native Method) ~[?:1.8.0_272]
    at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_272]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:68) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:137) ~[patched_1.16.4.jar:git-Paper-259]
    ... 7 more
[19:31:16] [Server thread/WARN]: Legacy plugin Webizen v0.2.5 does not specify an api-version.
[19:31:16] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.2.23
[19:31:16] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.10-DEV-111
[19:31:16] [Server thread/INFO]: [spark] Loading spark v1.4.3
[19:31:16] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.6
[19:31:16] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.1
[19:31:16] [Server thread/INFO]: [DeathMessagesPrime] Loading DeathMessagesPrime v1.16.5
[19:31:16] [Server thread/INFO]: [GuiRedeemMCMMO] Loading GuiRedeemMCMMO v2.0.2-BETA
[19:31:16] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v3.2.0
[19:31:16] [Server thread/INFO]: [ViaVersion] ViaVersion 3.2.0 is now loaded, injecting!
[19:31:16] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[19:31:16] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[19:31:16] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[19:31:16] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[19:31:16] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[19:31:16] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[19:31:16] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[19:31:16] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.3.0-SNAPSHOT+5491-5ae691a
[19:31:16] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[19:31:17] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@318695fa]
[19:31:17] [Server thread/INFO]: [Essentials] Loading Essentials v2.18.1.32
[19:31:17] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.5-SNAPSHOT+2079-664ab18
[19:31:17] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.6.0-SNAPSHOT-b482
[19:31:17] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.16.4) has not yet been tested! Proceed with caution.
[19:31:17] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.2.3-SNAPSHOT-b816
[19:31:17] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.18-SNAPSHOT
[19:31:17] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.27-SNAPSHOT (build 2161)
[19:31:17] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v2.1.11
[19:31:17] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.18.1.32
[19:31:17] [Server thread/INFO]: [TAB] Loading TAB v2.8.8
[19:31:17] [Server thread/INFO]: [CraftBook] Loading CraftBook v3.10.3-SNAPSHOT;4671-6a0a899
[19:31:17] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.152
[19:31:17] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[19:31:17] [Server thread/INFO]: [SimplePortals] Loading SimplePortals v1.5.1
[19:31:17] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.18.1.32
[19:31:17] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v19.2
[19:31:17] [Server thread/INFO]: [Denizen] Loading Denizen v1.1.8-SNAPSHOT (build 5136-DEV)
[19:31:17] [Server thread/INFO]: [dDiscordBot] Loading dDiscordBot v0.6 (build 104)
[19:31:17] [Server thread/INFO]: [Towny] Loading Towny v0.96.3.1
[19:31:17] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.4.5-SNAPSHOT-b161
[19:31:17] [Server thread/INFO]: [Webizen] Loading Webizen v0.2.5
[19:31:17] [Server thread/INFO]: [Insecurizen] Loading Insecurizen v1.1
[19:31:17] [Server thread/INFO]: [Depenizen] Loading Depenizen v2.0.0 (build 670)
[19:31:17] [Server thread/INFO]: [TownyNameUpdater] Loading TownyNameUpdater v5.0
[19:31:17] [Server thread/INFO]: [CrazyCrates] Loading CrazyCrates v1.10.1-SNAPSHOT-Build#92
[19:31:17] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[19:31:17] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.2.23
[19:31:17] [Server thread/WARN]: [LuckPerms] Loaded class us.myles.ViaVersion.api.protocol.ProtocolRegistry from ViaVersion v3.2.0 which is not a depend, softdepend or loadbefore of this plugin.
[19:31:17] [Server thread/INFO]:         __    
[19:31:17] [Server thread/INFO]:   |    |__)   LuckPerms v5.2.23
[19:31:17] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[19:31:17] [Server thread/INFO]: 
[19:31:17] [Server thread/INFO]: [LuckPerms] Loading configuration...
[19:31:18] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[19:31:19] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[19:31:19] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[19:31:19] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1659ms)
[19:31:19] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[19:31:19] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.18.1.32 which is not a depend, softdepend or loadbefore of this plugin.
[19:31:19] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[19:31:19] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[19:31:19] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[19:31:19] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[19:31:19] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.0-SNAPSHOT+5491-5ae691a
[19:31:19] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[19:31:19] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_16_R3 as the Bukkit adapter
[19:31:20] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.6.0-SNAPSHOT-b482
[19:31:20] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[19:31:20] [Server thread/INFO]: Preparing level "world"
[19:31:20] [Server thread/INFO]: -------- World Settings For [world] --------
[19:31:20] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:20] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:20] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:20] [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
[19:31:20] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:20] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:20] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:20] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:20] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:20] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:20] [Server thread/INFO]: View Distance: 4
[19:31:20] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:20] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:20] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:20] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:20] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[19:31:20] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[19:31:20] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:20] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:20] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:20] [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
[19:31:20] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:20] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:20] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:20] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:20] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:20] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:20] [Server thread/INFO]: View Distance: 4
[19:31:20] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:20] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:20] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:20] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:20] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[19:31:20] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:20] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:20] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:20] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:20] [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
[19:31:20] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:20] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:20] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:20] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:20] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:20] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:20] [Server thread/INFO]: View Distance: 4
[19:31:20] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:20] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:20] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:20] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:20] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[19:31:21] [Server thread/INFO]: Loaded 0 spawn chunks for world world
[19:31:21] [Server thread/INFO]: Preparing spawn area: 0%
[19:31:21] [Server thread/INFO]: Preparing spawn area: 0%
[19:31:21] [Server thread/INFO]: Preparing spawn area: 0%
[19:31:21] [Server thread/INFO]: Time elapsed: 1139 ms
[19:31:21] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[19:31:22] [Server thread/INFO]: Loaded 0 spawn chunks for world world_nether
[19:31:22] [Server thread/INFO]: Time elapsed: 310 ms
[19:31:22] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[19:31:22] [Server thread/INFO]: Loaded 0 spawn chunks for world world_the_end
[19:31:22] [Server thread/INFO]: Time elapsed: 84 ms
[19:31:22] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.10-DEV-111
[19:31:22] [Server thread/INFO]: [spark] Enabling spark v1.4.3
[19:31:22] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[19:31:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark
[19:31:22] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[19:31:22] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.6
[19:31:22] [Server thread/INFO]: [BuycraftX] Validating your server key...
[19:31:24] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[19:31:24] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.1
[19:31:24] [Server thread/INFO]: [Votifier] Loaded token for website: default
[19:31:24] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[19:31:24] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[19:31:24] [Server thread/INFO]: [DeathMessagesPrime] Enabling DeathMessagesPrime v1.16.5
[19:31:24] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /0:0:0:0:0:0:0:0%0:8192.
[19:31:24] [Server thread/WARN]: [DeathMessagesPrime] !!! WARNING !!! Your configuration is old. There may be new features or some config behavior might have changed, so it is advised to regenerate your config when possible!
[19:31:24] [Server thread/INFO]: [DeathMessagesPrime] Minecraft version is 1.16.4
[19:31:24] [Server thread/INFO]: [GuiRedeemMCMMO] Enabling GuiRedeemMCMMO v2.0.2-BETA*
[19:31:24] [Server thread/INFO]: GuiRedeemMCMMO Has Been Enabled!
[19:31:24] [Server thread/WARN]: [GuiRedeemMCMMO] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.10.10-DEV-111 which is not a depend, softdepend or loadbefore of this plugin.
[19:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: guiredeemmcmmo
[19:31:24] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v3.2.0
[19:31:24] [Server thread/INFO]: [Essentials] Enabling Essentials v2.18.1.32
[19:31:24] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[19:31:24] [Server thread/INFO]: [Essentials] No kits found to migrate.
[19:31:24] [Server thread/INFO]: [Essentials] Loaded 25515 items from items.json.
[19:31:24] [Server thread/INFO]: [Essentials] Using locale en
[19:31:24] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[19:31:24] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[19:31:24] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[19:31:24] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[19:31:24] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.5-SNAPSHOT+2079-664ab18
[19:31:24] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[19:31:24] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[19:31:24] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[19:31:24] [Server thread/INFO]: [WorldGuard] (world) All fire spread is disabled.
[19:31:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[19:31:24] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[19:31:24] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[19:31:24] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
[19:31:24] [Server thread/INFO]: [WorldGuard] (world_nether) All fire spread is disabled.
[19:31:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[19:31:24] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[19:31:24] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[19:31:24] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
[19:31:24] [Server thread/INFO]: [WorldGuard] (world_the_end) All fire spread is disabled.
[19:31:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[19:31:25] [Server thread/INFO]: [WorldGuard] Loading region data...
[19:31:25] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.2.3-SNAPSHOT-b816
[19:31:25] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.2.3-SNAPSHOT-b816" 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--].
[19:31:25] [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.
[19:31:25] [Server thread/INFO]: -------- World Settings For [void] --------
[19:31:25] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:25] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:25] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:25] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:25] [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
[19:31:25] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:25] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:25] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:25] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:25] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:25] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:25] [Server thread/INFO]: View Distance: 4
[19:31:25] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:25] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:25] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:25] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:25] [Server thread/INFO]: Preparing start region for dimension minecraft:void
[19:31:25] [Server thread/INFO]: Loaded 0 spawn chunks for world void
[19:31:25] [Server thread/INFO]: Preparing spawn area: 0%
[19:31:26] [Server thread/INFO]: Preparing spawn area: 0%
[19:31:26] [Server thread/INFO]: Time elapsed: 959 ms
[19:31:26] [Server thread/INFO]: [WorldGuard] (void) TNT ignition is PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (void) Lighters are PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (void) Lava fire is blocked.
[19:31:26] [Server thread/INFO]: [WorldGuard] (void) All fire spread is disabled.
[19:31:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'void'
[19:31:26] [Server thread/INFO]: -------- World Settings For [dungold] --------
[19:31:26] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:26] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:26] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:26] [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
[19:31:26] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:26] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:26] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:26] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:26] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:26] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:26] [Server thread/INFO]: View Distance: 4
[19:31:26] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:26] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:26] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:26] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:26] [Server thread/INFO]: Preparing start region for dimension minecraft:dungold
[19:31:26] [Server thread/INFO]: Loaded 0 spawn chunks for world dungold
[19:31:26] [Server thread/INFO]: Time elapsed: 48 ms
[19:31:26] [Server thread/INFO]: [WorldGuard] (dungold) TNT ignition is PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (dungold) Lighters are PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (dungold) Lava fire is blocked.
[19:31:26] [Server thread/INFO]: [WorldGuard] (dungold) All fire spread is disabled.
[19:31:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'dungold'
[19:31:26] [Server thread/INFO]: -------- World Settings For [Exodus] --------
[19:31:26] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:26] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:26] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:26] [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
[19:31:26] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:26] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:26] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:26] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:26] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:26] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:26] [Server thread/INFO]: View Distance: 4
[19:31:26] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:26] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:26] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:26] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:26] [Server thread/INFO]: Preparing start region for dimension minecraft:exodus
[19:31:26] [Server thread/INFO]: Loaded 0 spawn chunks for world Exodus
[19:31:26] [Server thread/INFO]: Time elapsed: 70 ms
[19:31:26] [Server thread/INFO]: [WorldGuard] (Exodus) TNT ignition is PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (Exodus) Lighters are PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (Exodus) Lava fire is blocked.
[19:31:26] [Server thread/INFO]: [WorldGuard] (Exodus) All fire spread is disabled.
[19:31:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Exodus'
[19:31:26] [Server thread/INFO]: -------- World Settings For [Arenas] --------
[19:31:26] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:26] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:26] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:26] [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
[19:31:26] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:26] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:26] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:26] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:26] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:26] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:26] [Server thread/INFO]: View Distance: 4
[19:31:26] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:26] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:26] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:26] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:26] [Server thread/INFO]: Preparing start region for dimension minecraft:arenas
[19:31:26] [Server thread/INFO]: Loaded 0 spawn chunks for world Arenas
[19:31:26] [Server thread/INFO]: Time elapsed: 38 ms
[19:31:26] [Server thread/INFO]: [WorldGuard] (Arenas) TNT ignition is PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (Arenas) Lighters are PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (Arenas) Lava fire is blocked.
[19:31:26] [Server thread/INFO]: [WorldGuard] (Arenas) All fire spread is disabled.
[19:31:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Arenas'
[19:31:26] [Server thread/INFO]: -------- World Settings For [facRTemplate] --------
[19:31:26] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:26] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:26] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:26] [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
[19:31:26] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:26] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:26] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:26] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:26] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:26] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:26] [Server thread/INFO]: View Distance: 4
[19:31:26] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:26] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:26] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:26] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:26] [Server thread/INFO]: Preparing start region for dimension minecraft:facrtemplate
[19:31:26] [Server thread/INFO]: Loaded 0 spawn chunks for world facRTemplate
[19:31:26] [Server thread/INFO]: Time elapsed: 30 ms
[19:31:26] [Server thread/INFO]: [WorldGuard] (facRTemplate) TNT ignition is PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (facRTemplate) Lighters are PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (facRTemplate) Lava fire is blocked.
[19:31:26] [Server thread/INFO]: [WorldGuard] (facRTemplate) All fire spread is disabled.
[19:31:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'facRTemplate'
[19:31:26] [Server thread/INFO]: -------- World Settings For [DungeonLobby] --------
[19:31:26] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:26] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:26] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:26] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:26] [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
[19:31:26] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:26] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:26] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:26] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:26] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:26] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:26] [Server thread/INFO]: View Distance: 4
[19:31:26] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:26] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:26] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:26] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:26] [Server thread/INFO]: Preparing start region for dimension minecraft:dungeonlobby
[19:31:26] [Server thread/INFO]: Loaded 0 spawn chunks for world DungeonLobby
[19:31:26] [Server thread/INFO]: Time elapsed: 153 ms
[19:31:26] [Server thread/INFO]: [WorldGuard] (DungeonLobby) TNT ignition is PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (DungeonLobby) Lighters are PERMITTED.
[19:31:26] [Server thread/INFO]: [WorldGuard] (DungeonLobby) Lava fire is blocked.
[19:31:26] [Server thread/INFO]: [WorldGuard] (DungeonLobby) All fire spread is disabled.
[19:31:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'DungeonLobby'
[19:31:27] [Server thread/INFO]: -------- World Settings For [SDungVoid] --------
[19:31:27] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:27] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:27] [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
[19:31:27] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:27] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:27] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:27] [Server thread/INFO]: View Distance: 4
[19:31:27] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:27] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:27] [Server thread/INFO]: Preparing start region for dimension minecraft:sdungvoid
[19:31:27] [Server thread/INFO]: Loaded 0 spawn chunks for world SDungVoid
[19:31:27] [Server thread/INFO]: Time elapsed: 52 ms
[19:31:27] [Server thread/INFO]: [WorldGuard] (SDungVoid) TNT ignition is PERMITTED.
[19:31:27] [Server thread/INFO]: [WorldGuard] (SDungVoid) Lighters are PERMITTED.
[19:31:27] [Server thread/INFO]: [WorldGuard] (SDungVoid) Lava fire is blocked.
[19:31:27] [Server thread/INFO]: [WorldGuard] (SDungVoid) All fire spread is disabled.
[19:31:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SDungVoid'
[19:31:27] [Server thread/INFO]: -------- World Settings For [voidy] --------
[19:31:27] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:27] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:27] [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
[19:31:27] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:27] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:27] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:27] [Server thread/INFO]: View Distance: 4
[19:31:27] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:27] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:27] [Server thread/INFO]: Preparing start region for dimension minecraft:voidy
[19:31:27] [Server thread/INFO]: Loaded 0 spawn chunks for world voidy
[19:31:27] [Server thread/INFO]: Time elapsed: 46 ms
[19:31:27] [Server thread/INFO]: [WorldGuard] (voidy) TNT ignition is PERMITTED.
[19:31:27] [Server thread/INFO]: [WorldGuard] (voidy) Lighters are PERMITTED.
[19:31:27] [Server thread/INFO]: [WorldGuard] (voidy) Lava fire is blocked.
[19:31:27] [Server thread/INFO]: [WorldGuard] (voidy) All fire spread is disabled.
[19:31:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'voidy'
[19:31:27] [Server thread/INFO]: -------- World Settings For [builder] --------
[19:31:27] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:27] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:27] [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
[19:31:27] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:27] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:27] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:27] [Server thread/INFO]: View Distance: 4
[19:31:27] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:27] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:27] [Server thread/INFO]: Preparing start region for dimension minecraft:builder
[19:31:27] [Server thread/INFO]: Loaded 0 spawn chunks for world builder
[19:31:27] [Server thread/INFO]: Time elapsed: 269 ms
[19:31:27] [Server thread/INFO]: [WorldGuard] (builder) TNT ignition is PERMITTED.
[19:31:27] [Server thread/INFO]: [WorldGuard] (builder) Lighters are PERMITTED.
[19:31:27] [Server thread/INFO]: [WorldGuard] (builder) Lava fire is blocked.
[19:31:27] [Server thread/INFO]: [WorldGuard] (builder) All fire spread is disabled.
[19:31:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'builder'
[19:31:27] [Server thread/INFO]: -------- World Settings For [libDungeon] --------
[19:31:27] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:27] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:27] [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
[19:31:27] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:27] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:27] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:27] [Server thread/INFO]: View Distance: 4
[19:31:27] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:27] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:27] [Server thread/INFO]: Preparing start region for dimension minecraft:libdungeon
[19:31:27] [Server thread/INFO]: Loaded 0 spawn chunks for world libDungeon
[19:31:27] [Server thread/INFO]: Time elapsed: 146 ms
[19:31:27] [Server thread/INFO]: [WorldGuard] (libDungeon) TNT ignition is PERMITTED.
[19:31:27] [Server thread/INFO]: [WorldGuard] (libDungeon) Lighters are PERMITTED.
[19:31:27] [Server thread/INFO]: [WorldGuard] (libDungeon) Lava fire is blocked.
[19:31:27] [Server thread/INFO]: [WorldGuard] (libDungeon) All fire spread is disabled.
[19:31:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'libDungeon'
[19:31:27] [Server thread/INFO]: -------- World Settings For [Spawn] --------
[19:31:27] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:27] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:27] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:27] [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
[19:31:27] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:27] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:27] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:27] [Server thread/INFO]: View Distance: 4
[19:31:27] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:27] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:28] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[19:31:28] [Server thread/INFO]: Loaded 0 spawn chunks for world Spawn
[19:31:28] [Server thread/INFO]: Time elapsed: 698 ms
[19:31:28] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[19:31:28] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[19:31:28] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is blocked.
[19:31:28] [Server thread/INFO]: [WorldGuard] (Spawn) All fire spread is disabled.
[19:31:28] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[19:31:28] [Server thread/INFO]: -------- World Settings For [SlimeIce] --------
[19:31:28] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:28] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:28] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:28] [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
[19:31:28] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:28] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:28] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:28] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:28] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:28] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:28] [Server thread/INFO]: View Distance: 4
[19:31:28] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:28] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:28] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:28] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:28] [Server thread/INFO]: Preparing start region for dimension minecraft:slimeice
[19:31:28] [Server thread/INFO]: Loaded 0 spawn chunks for world SlimeIce
[19:31:28] [Server thread/INFO]: Time elapsed: 48 ms
[19:31:28] [Server thread/INFO]: [WorldGuard] (SlimeIce) TNT ignition is PERMITTED.
[19:31:28] [Server thread/INFO]: [WorldGuard] (SlimeIce) Lighters are PERMITTED.
[19:31:28] [Server thread/INFO]: [WorldGuard] (SlimeIce) Lava fire is blocked.
[19:31:28] [Server thread/INFO]: [WorldGuard] (SlimeIce) All fire spread is disabled.
[19:31:28] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SlimeIce'
[19:31:28] [Server thread/INFO]: -------- World Settings For [cryptsvoid] --------
[19:31:28] [Server thread/INFO]: Experience Merge Radius: 10.0
[19:31:28] [Server thread/INFO]: Cactus Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Cane Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Melon Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Sapling Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Carrot Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Potato Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Wheat Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Vine Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Kelp Growth Modifier: 100%
[19:31:28] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[19:31:28] [Server thread/INFO]: Hopper Transfer: 20 Hopper Check: 1 Hopper Amount: 16
[19:31:28] [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
[19:31:28] [Server thread/INFO]: Max TNT Explosions: 100
[19:31:28] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[19:31:28] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[19:31:28] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[19:31:28] [Server thread/INFO]: Item Merge Radius: 5.0
[19:31:28] [Server thread/INFO]: Item Despawn Rate: 6000
[19:31:28] [Server thread/INFO]: View Distance: 4
[19:31:28] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:1200
[19:31:28] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[19:31:28] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[19:31:28] [Server thread/INFO]: Mob Spawn Range: 6
[19:31:28] [Server thread/INFO]: Preparing start region for dimension minecraft:cryptsvoid
[19:31:28] [Server thread/INFO]: Loaded 0 spawn chunks for world cryptsvoid
[19:31:29] [Server thread/INFO]: Time elapsed: 277 ms
[19:31:29] [Server thread/INFO]: [WorldGuard] (cryptsvoid) TNT ignition is PERMITTED.
[19:31:29] [Server thread/INFO]: [WorldGuard] (cryptsvoid) Lighters are PERMITTED.
[19:31:29] [Server thread/INFO]: [WorldGuard] (cryptsvoid) Lava fire is blocked.
[19:31:29] [Server thread/INFO]: [WorldGuard] (cryptsvoid) All fire spread is disabled.
[19:31:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'cryptsvoid'
[19:31:29] [Server thread/INFO]: [Multiverse-Core] 16 - World(s) loaded.
[19:31:29] [Server thread/INFO]: [Multiverse-Core] Version 4.2.3-SNAPSHOT-b816 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[19:31:29] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.18-SNAPSHOT
[19:31:29] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[19:31:29] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_16_R3
[19:31:29] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #783
[19:31:29] [Server thread/INFO]: [LibsDisguises] Build Date: 03/11/2020 06:01
[19:31:29] [Server thread/WARN]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[19:31:29] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[19:31:30] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[19:31:30] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[19:31:30] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[19:31:30] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.27-SNAPSHOT (build 2161)
[19:31:30] [Server thread/ERROR]: [Citizens] v2.0.27-SNAPSHOT (build 2161) is not compatible with Minecraft v1_16_R3 - try upgrading or downgrading Citizens. Disabling.
[19:31:30] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.27-SNAPSHOT (build 2161)
[19:31:30] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.1.11
[19:31:30] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[19:31:30] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[19:31:30] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_16_R3
[19:31:30] [Server thread/ERROR]: [AuctionHouse] Error! This plugin only supports Spigot versions 1.13.2+!
[19:31:30] [Server thread/ERROR]: [AuctionHouse] Please download the AuctionHouse-Retro plugin for 1.8.8 support!
[19:31:30] [Server thread/ERROR]: [AuctionHouse] Please download the AuctionHouse-Legacy plugin for 1.9.4-1.12.2 support!
[19:31:30] [Server thread/ERROR]: [AuctionHouse] Plugin will be disabled!
[19:31:30] [Server thread/INFO]: [AuctionHouse] Disabling AuctionHouse v2.1.11
[19:31:30] [Server thread/INFO]: [AuctionHouse] Saving auctions data
[19:31:30] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.18.1.32
[19:31:30] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[19:31:30] [Server thread/INFO]: [TAB] Enabling TAB v2.8.8
[19:31:30] [Server thread/INFO]: [TAB] Server version: 1.16.4 (v1_16_R3)
[19:31:31] [Server thread/INFO]: [TAB] File plugins/TAB/errors.txt exists and is not empty. Please take a look at the errors and try to correct them. You can also join our discord for assistance. After you resolve them, delete the file.
[19:31:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab
[19:31:31] [Server thread/INFO]: [TAB] There was 1 startup warning.
[19:31:31] [Server thread/INFO]: [TAB] Enabled in 53ms
[19:31:31] [Server thread/INFO]: [CraftBook] Enabling CraftBook v3.10.3-SNAPSHOT;4671-6a0a899
[19:31:31] [Server thread/INFO]: [CraftBook] Loading persistent data from YAML!
[19:31:31] [Server thread/INFO]: [CraftBook] Enumerating chunks for self-triggered components...
[19:31:31] [Server thread/INFO]: [CraftBook] 4498 chunk(s) for 16 world(s) processed (116ms elapsed)
[19:31:31] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.152
[19:31:31] [Server thread/INFO]: [mcMMO] Platform String: 1.16.4-R0.1-SNAPSHOT
[19:31:31] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.16.4
[19:31:31] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[19:31:31] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[19:31:31] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_en_US.properties
[19:31:31] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[19:31:31] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[19:31:32] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
[19:31:32] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.5.1
[19:31:32] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 2ms)
[19:31:32] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_16_R3!
[19:31:32] [Server thread/INFO]: [SimplePortals] The plugin has enabled successfully!
[19:31:32] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.18.1.32
[19:31:32] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[19:31:32] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v19.2
[19:31:32] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled!
[19:31:32] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[19:31:32] [Server thread/INFO]: --------------------
[19:31:32] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[19:31:32] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[19:31:32] [Server thread/INFO]: --------------------
[19:31:32] [Server thread/INFO]: [Denizen] Enabling Denizen v1.1.8-SNAPSHOT (build 5136-DEV)
[19:31:32] [Server thread/ERROR]: Error occurred while enabling Denizen v1.1.8-SNAPSHOT (build 5136-DEV) (Is it up to date?)
java.lang.NoClassDefFoundError: net/minecraft/server/v1_16_R2/MinecraftServer
    at java.lang.Class.forName0(Native Method) ~[?:1.8.0_272]
    at java.lang.Class.forName(Class.java:264) ~[?:1.8.0_272]
    at com.denizenscript.denizen.nms.NMSHandler.initialize(NMSHandler.java:50) ~[?:?]
    at com.denizenscript.denizen.Denizen.onEnable(Denizen.java:175) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:239) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:939) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_272]
Caused by: java.lang.ClassNotFoundException: net.minecraft.server.v1_16_R2.MinecraftServer
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:105) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:100) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_272]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_272]
    ... 14 more
[19:31:32] [Server thread/INFO]: [Denizen] Disabling Denizen v1.1.8-SNAPSHOT (build 5136-DEV)
[19:31:32] [Server thread/INFO]: [dDiscordBot] Enabling dDiscordBot v0.6 (build 104)
[19:31:32] [Server thread/ERROR]: Error occurred while enabling dDiscordBot v0.6 (build 104) (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizencore/utilities/debugging/Debug
    at com.denizenscript.ddiscordbot.DenizenDiscordBot.onEnable(DenizenDiscordBot.java:22) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:239) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:939) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_272]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizencore.utilities.debugging.Debug
    at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_272]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:171) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:100) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_272]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_272]
    ... 11 more
[19:31:32] [Server thread/INFO]: [dDiscordBot] Disabling dDiscordBot v0.6 (build 104)
[19:31:32] [Server thread/INFO]: [Towny] Enabling Towny v0.96.3.1
[19:31:32] [Server thread/INFO]: ====================      Towny      ========================
[19:31:32] [Server thread/INFO]: [Towny] Lang: english.yml v0.88 loaded.
[19:31:32] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[19:31:33] [Server thread/INFO]: [Towny] Database: Loaded in 360ms.
[19:31:33] [Server thread/INFO]: [Towny] Database: 100% of residents have stored UUIDs.
[19:31:33] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Cleaning up old backups...
[19:31:33] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Successfully cleaned backups.
[19:31:33] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[19:31:33] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Making backup...
[19:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: townyadvanced
[19:31:33] [Server thread/INFO]: [Towny] Plugins found: 
[19:31:33] [Server thread/INFO]:   Permissions: TownyPerms, LuckPerms 5.2.23 via Vault
[19:31:33] [Server thread/INFO]:   Economy: Essentials Economy via Vault
[19:31:33] [Server thread/INFO]:   Add-ons: PlaceholderAPI v2.10.10-DEV-111
[19:31:33] [Server thread/INFO]: [Towny] Warning: Essentials Economy has been known to reset
[19:31:33] [Server thread/INFO]:         town and nation bank accounts to their default amount.
[19:31:33] [Server thread/INFO]:         The authors of Essentials recommend using another
[19:31:33] [Server thread/INFO]:         economy plugin until they have fixed this bug.
[19:31:33] [Server thread/INFO]: [Towny] Time until a New Day: 16 hours, 28 minutes, 27 seconds
[19:31:33] [Server thread/INFO]: =============================================================
[19:31:33] [Server thread/INFO]: [Towny] Version: 0.96.3.1 - Plugin Enabled
[19:31:33] [Server thread/INFO]: =============================================================
[19:31:33] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.4.5-SNAPSHOT-b161
[19:31:33] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib.
[19:31:33] [Server thread/INFO]: [Webizen] Enabling Webizen v0.2.5*
[19:31:33] [Server thread/ERROR]: Error occurred while enabling Webizen v0.2.5 (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizen/Denizen
    at space.morphanone.webizen.Webizen.onEnable(Webizen.java:20) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:239) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:939) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_272]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.Denizen
    at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_272]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:171) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:100) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_272]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_272]
    ... 11 more
[19:31:33] [Server thread/INFO]: [Webizen] Disabling Webizen v0.2.5
[19:31:33] [Server thread/INFO]: [Insecurizen] Enabling Insecurizen v1.1
[19:31:33] [Server thread/ERROR]: Error occurred while enabling Insecurizen v1.1 (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizen/utilities/DenizenAPI
    at xeane.Insecurizen.onEnable(Insecurizen.java:20) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:239) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:939) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_272]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.utilities.DenizenAPI
    at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_272]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:171) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:100) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_272]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_272]
    ... 11 more
[19:31:33] [Server thread/INFO]: [Insecurizen] Disabling Insecurizen v1.1
[19:31:33] [Server thread/INFO]: [Insecurizen] Insecurizen signing off!!
[19:31:33] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.0.0 (build 670)
[19:31:33] [Server thread/ERROR]: Error occurred while enabling Depenizen v2.0.0 (build 670) (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizen/utilities/debugging/Debug
    at com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:27) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:239) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:939) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_272]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.utilities.debugging.Debug
    at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_272]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:171) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:100) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_272]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_272]
    ... 11 more
[19:31:33] [Server thread/INFO]: [Depenizen] Disabling Depenizen v2.0.0 (build 670)
[19:31:33] [Server thread/ERROR]: Error occurred while disabling Depenizen v2.0.0 (build 670) (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizencore/events/ScriptEvent
    at com.denizenscript.depenizen.bukkit.Depenizen.onDisable(Depenizen.java:46) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:265) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:516) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:384) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:239) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:939) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_272]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizencore.events.ScriptEvent
    at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_272]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:171) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:100) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_272]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_272]
    ... 13 more
[19:31:33] [Server thread/INFO]: [TownyNameUpdater] Enabling TownyNameUpdater v5.0
[19:31:33] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.10.1-SNAPSHOT-Build#92
[19:31:33] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[19:31:33] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[19:31:33] [Server thread/INFO]: [CrazyCrates] Loading the Messages.yml
[19:31:33] [Server thread/INFO]: [CrazyCrates] Successfully loaded Messages.yml
[19:31:33] [Server thread/INFO]: [CrazyCrates] Loading the Locations.yml
[19:31:33] [Server thread/INFO]: [CrazyCrates] Successfully loaded Locations.yml
[19:31:33] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[19:31:33] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[19:31:33] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[19:31:33] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Vote.yml.
[19:31:33] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Boss.yml.
[19:31:33] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Custom.yml.
[19:31:33] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Faction.yml.
[19:31:33] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[19:31:33] [Server thread/ERROR]: Error occurred while enabling CrazyCrates v1.10.1-SNAPSHOT-Build#92 (Is it up to date?)
java.lang.NoClassDefFoundError: net/minecraft/server/v1_16_R2/World
    at me.badbones69.crazycrates.api.CrazyCrates.loadCrates(CrazyCrates.java:206) ~[?:?]
    at me.badbones69.crazycrates.Main.onEnable(Main.java:76) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:380) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:239) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:939) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_272]
Caused by: java.lang.ClassNotFoundException: net.minecraft.server.v1_16_R2.World
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:105) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:100) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_272]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_272]
    ... 12 more
[19:31:33] [Server thread/INFO]: [CrazyCrates] Disabling CrazyCrates v1.10.1-SNAPSHOT-Build#92
[19:31:33] [Server thread/ERROR]: Error occurred while disabling CrazyCrates v1.10.1-SNAPSHOT-Build#92 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at me.badbones69.crazycrates.Main.onDisable(Main.java:117) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:265) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:516) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:384) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:483) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:501) ~[patched_1.16.4.jar:git-Paper-259]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:415) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:468) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:239) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:939) ~[patched_1.16.4.jar:git-Paper-259]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.4.jar:git-Paper-259]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_272]
Caused by: java.lang.NullPointerException
    at me.badbones69.crazycrates.api.objects.QuadCrateSession.<clinit>(QuadCrateSession.java:28) ~[?:?]
    ... 13 more
[19:31:33] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[19:31:33] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[19:31:33] [Server thread/INFO]: Running delayed init tasks
[19:31:33] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.16.4(754)
[19:31:33] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[19:31:33] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[19:31:33] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[19:31:33] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://jo0001.github.io/ViaSetup
[19:31:33] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[19:31:33] [Craft Scheduler Thread - 19/INFO]: [SimplePortals] Everything looks like it is up to date!
[19:31:33] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[19:31:33] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.2.23 which is not a depend, softdepend or loadbefore of this plugin.
[19:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms
[19:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player
[19:31:33] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend, softdepend or loadbefore of this plugin.
[19:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault
[19:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault
[19:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player
[19:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms
[19:31:33] [Server thread/INFO]: 6 placeholder hooks successfully registered!
[19:31:34] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.10.9) is available at:
[19:31:34] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[19:31:34] [Server thread/INFO]: [ViaVersion] Shutting down mapping loader executor!
[19:31:34] [Server thread/INFO]: Done (23.684s)! For help, type "help"
[19:31:34] [Server thread/INFO]: Timings Reset
[19:31:34] [Craft Scheduler Thread - 1/INFO]: [Vault] Checking for Updates ... 
[19:31:34] [Craft Scheduler Thread - 1/INFO]: [Vault] No new version available
[19:31:34] [Thread-33/INFO]: [CoreProtect] No donation key found. Please check config.yml.
[19:31:36] [Craft Scheduler Thread - 1/INFO]: [BuycraftX] Fetching all due players...
[19:31:36] [Craft Scheduler Thread - 1/INFO]: [BuycraftX] Fetched due players (0 found).
[19:31:38] [pool-122-thread-7/INFO]: [TAB] Expansion denizen is used but not installed. Installing!
[19:31:39] [Server thread/INFO]: The eCloud Manager is not enabled!
[19:32:05] [Server thread/INFO]: Unknown command. Type "/help" for help.
[19:32:09] [Server thread/INFO]: Stopping the server
[19:32:09] [Server thread/INFO]: Stopping server
[19:32:09] [Server thread/INFO]: [TownyNameUpdater] Disabling TownyNameUpdater v5.0
[19:32:09] [Server thread/INFO]: [HolographicDisplays] Disabling HolographicDisplays v2.4.5-SNAPSHOT-b161
[19:32:09] [Server thread/INFO]: [Towny] Disabling Towny v0.96.3.1
[19:32:09] [Server thread/INFO]: ==============================================================
[19:32:09] [Server thread/INFO]: [Towny] Finishing File IO Tasks...
[19:32:09] [Server thread/INFO]: [Towny] Version: 0.96.3.1 - Plugin Disabled
[19:32:09] [Server thread/INFO]: =============================================================
[19:32:09] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v19.2
[19:32:09] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[19:32:10] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v19.2
[19:32:10] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.18.1.32
[19:32:10] [Server thread/INFO]: [SimplePortals] Disabling SimplePortals v1.5.1
[19:32:10] [Server thread/INFO]: [SimplePortals] All portals have been saved!
[19:32:10] [Server thread/INFO]: [SimplePortals] The plugin has been disabled.
[19:32:10] [Server thread/INFO]: [mcMMO] Disabling mcMMO v2.1.152
[19:32:10] [Server thread/INFO]: [CraftBook] Disabling CraftBook v3.10.3-SNAPSHOT;4671-6a0a899
[19:32:10] [Server thread/INFO]: [CraftBook] Saving persistent data to YAML!
[19:32:10] [Server thread/INFO]: [TAB] Disabling TAB v2.8.8
[19:32:10] [Server thread/INFO]: [TAB] Disabled in 5ms
[19:32:10] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.18.1.32
[19:32:10] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.18-SNAPSHOT
[19:32:10] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.2.3-SNAPSHOT-b816
[19:32:10] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v4.6.0-SNAPSHOT-b482
[19:32:10] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.5-SNAPSHOT+2079-664ab18
[19:32:10] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[19:32:10] [Server thread/INFO]: [Essentials] Disabling Essentials v2.18.1.32
[19:32:10] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[19:32:10] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.3.0-SNAPSHOT+5491-5ae691a
[19:32:10] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[19:32:10] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[19:32:10] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion: vault
[19:32:10] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v3.2.0
[19:32:10] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[19:32:10] [Server thread/INFO]: [GuiRedeemMCMMO] Disabling GuiRedeemMCMMO v2.0.2-BETA
[19:32:10] [Server thread/INFO]: GuiRedeemMCMMO Has Been Disabled!
[19:32:10] [Server thread/INFO]: [GuiRedeemMCMMO] Disabled Version 2.0.2-BETA
[19:32:10] [Server thread/INFO]: [DeathMessagesPrime] Disabling DeathMessagesPrime v1.16.5
[19:32:10] [Server thread/INFO]: [Votifier] Disabling Votifier v2.7.1
[19:32:10] [Server thread/INFO]: [Votifier] Votifier disabled.
[19:32:10] [Server thread/INFO]: [BuycraftX] Disabling BuycraftX v12.0.6
[19:32:10] [Server thread/INFO]: [spark] Disabling spark v1.4.3
[19:32:10] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.10.10-DEV-111
[19:32:10] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.2.23
[19:32:10] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[19:32:10] [Server thread/INFO]: [LuckPerms] Closing storage...
[19:32:10] [Server thread/INFO]: [LuckPerms] Goodbye!
[19:32:10] [Server thread/INFO]: Saving players
[19:32:10] [Server thread/INFO]: Saving worlds
[19:32:10] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[19:32:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[19:32:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[19:32:12] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[19:32:12] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[19:32:12] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[19:32:12] [Server thread/INFO]: Saving chunks for level 'ServerLevel[void]'/minecraft:void
[19:32:12] [Server thread/INFO]: ThreadedAnvilChunkStorage (void): All chunks are saved
[19:32:12] [Server thread/INFO]: Saving chunks for level 'ServerLevel[dungold]'/minecraft:dungold
[19:32:13] [Server thread/INFO]: ThreadedAnvilChunkStorage (dungold): All chunks are saved
[19:32:13] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Exodus]'/minecraft:exodus
[19:32:13] [Server thread/INFO]: ThreadedAnvilChunkStorage (Exodus): All chunks are saved
[19:32:13] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Arenas]'/minecraft:arenas
[19:32:13] [Server thread/INFO]: ThreadedAnvilChunkStorage (Arenas): All chunks are saved
[19:32:13] [Server thread/INFO]: Saving chunks for level 'ServerLevel[facRTemplate]'/minecraft:facrtemplate
[19:32:14] [Server thread/INFO]: ThreadedAnvilChunkStorage (facRTemplate): All chunks are saved
[19:32:14] [Server thread/INFO]: Saving chunks for level 'ServerLevel[DungeonLobby]'/minecraft:dungeonlobby
[19:32:14] [Server thread/INFO]: ThreadedAnvilChunkStorage (DungeonLobby): All chunks are saved
[19:32:14] [Server thread/INFO]: Saving chunks for level 'ServerLevel[SDungVoid]'/minecraft:sdungvoid
[19:32:14] [Server thread/INFO]: ThreadedAnvilChunkStorage (SDungVoid): All chunks are saved
[19:32:14] [Server thread/INFO]: Saving chunks for level 'ServerLevel[voidy]'/minecraft:voidy
[19:32:14] [Server thread/INFO]: ThreadedAnvilChunkStorage (voidy): All chunks are saved
[19:32:14] [Server thread/INFO]: Saving chunks for level 'ServerLevel[builder]'/minecraft:builder
[19:32:14] [Server thread/INFO]: ThreadedAnvilChunkStorage (builder): All chunks are saved
[19:32:14] [Server thread/INFO]: Saving chunks for level 'ServerLevel[libDungeon]'/minecraft:libdungeon
[19:32:14] [Server thread/INFO]: ThreadedAnvilChunkStorage (libDungeon): All chunks are saved
[19:32:14] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Spawn]'/minecraft:spawn
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (Spawn): All chunks are saved
[19:32:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[SlimeIce]'/minecraft:slimeice
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (SlimeIce): All chunks are saved
[19:32:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[cryptsvoid]'/minecraft:cryptsvoid
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (cryptsvoid): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (void): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (dungold): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (Exodus): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (Arenas): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (facRTemplate): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (DungeonLobby): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (SDungVoid): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (voidy): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (builder): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (libDungeon): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (Spawn): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (SlimeIce): All chunks are saved
[19:32:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (cryptsvoid): All chunks are saved
[19:32:15] [Server thread/INFO]: Flushing Chunk IO
[19:32:15] [Server thread/INFO]: Closing Thread Pool
[19:32:15] [Server thread/INFO]: Closing Server