Date: 2024/01/12 06:41:05 UTC-08:00
Type: Denizen Script
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
[14:35:34] [Server thread/INFO]: Starting minecraft server version 1.8.8
[14:35:34] [Server thread/INFO]: Loading properties
[14:35:34] [Server thread/INFO]: Default game type: SURVIVAL
[14:35:34] [Server thread/INFO]: This server is running WineSpigot version 1_8_R3 (MC: 1.8.8) (Implementing API version 1.8.8-R0.2-SNAPSHOT)
[14:35:34] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:35:34] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:35:34] [Server thread/INFO]: Spigot Timings: false - Verbose: true - Interval: 5m - Length: 60m
[14:35:34] [Server thread/INFO]: Debug logging is disabled
[14:35:34] [Server thread/INFO]: Disabling player interaction limiter, your server may be more vulnerable to malicious users
[14:35:34] [Server thread/INFO]: Generating keypair
[14:35:34] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25567
[14:35:34] [Server thread/INFO]: Using epoll channel type
[14:35:35] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[14:35:35] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v2.15.2
[14:35:35] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
[14:35:35] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.5
[14:35:35] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[14:35:35] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.13.3
[14:35:36] [Thread-7/INFO]: UUID of player LoveMeN0t is 257e9625-01a1-4b01-ab99-d59c81d44842
[14:35:37] [Server thread/INFO]: [BlackMarket] Loading BlackMarket vBETA-1.0
[14:35:37] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v21.03.26-5ff3a9b-1286-22.3.9
[14:35:37] [Server thread/INFO]: [ManticLib] Loading ManticLib v1.0.43.2
[14:35:37] [Server thread/INFO]: [InfiniteVouchers] Loading InfiniteVouchers v2.4.2
[14:35:37] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.9.2
[14:35:37] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.2 is now loaded. Registering protocol transformers and injecting...
[14:35:37] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[14:35:37] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.102
[14:35:37] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[14:35:37] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v6.1.9;caf0ad9
[14:35:37] [Server thread/INFO]: [ManticVanillaEnchants] Loading ManticVanillaEnchants v1.4.1
[14:35:37] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v6.1.3-SNAPSHOT;c904242
[14:35:37] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.1.0
[14:35:38] [Server thread/INFO]: [Factions] Loading Factions v1.6.9.5-U0.5.18-b${build.number}
[14:35:38] [Server thread/INFO]: [Vulcan] Loading Vulcan v2.8.3
[14:35:38] [Server thread/INFO]: [AbyssCommandBlocker] Loading AbyssCommandBlocker v1.0.1
[14:35:38] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[14:35:38] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.94.0
[14:35:38] [Server thread/INFO]: [CombatTagPlus] Loading CombatTagPlus v1.3.1
[14:35:38] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.6
[14:35:38] [Server thread/INFO]: [Essentials] Loading Essentials v2.21.0-dev+24-0af4436
[14:35:38] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[14:35:38] [Server thread/INFO]: [CloudCrates] Loading CloudCrates v2.81
[14:35:38] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.33-SNAPSHOT (build 3296)
[14:35:38] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v2.105.0
[14:35:38] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.21.0-dev+24-0af4436
[14:35:38] [Server thread/INFO]: [FactionsKore] Loading FactionsKore v1.0
[14:35:38] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.3-Release
[14:35:38] [Server thread/INFO]: [ManticHoes] Loading ManticHoes v2.0-BETA
[14:35:38] [Server thread/INFO]: [TAB] Loading TAB v4.1.2
[14:35:38] [Server thread/INFO]: [PlayerVaults] Loading PlayerVaults v4.2.16
[14:35:38] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.21.0-dev+24-0af4436
[14:35:38] [Server thread/INFO]: [AbyssLib] Loading AbyssLib v1.2.8
[14:35:38] [Server thread/INFO]: [AbyssReactions] Loading AbyssReactions v1.0.3
[14:35:38] [Server thread/INFO]: [AbyssBounties] Loading AbyssBounties v1.0.0
[14:35:38] [Server thread/INFO]: [ManticDarkzone] Loading ManticDarkzone v1.2.4
[14:35:38] [Server thread/INFO]: [QStaffMode] Loading QStaffMode v1.3.6
[14:35:38] [Server thread/INFO]: [AbyssGambling] Loading AbyssGambling v1.0.1
[14:35:38] [Server thread/INFO]: [ManticSwords] Loading ManticSwords v1.5.6.1
[14:35:38] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[14:35:38] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_1_8
[14:35:38] [Server thread/INFO]: [VoidGen] The file:"configuration.json"was not found.
[14:35:38] [Server thread/INFO]: [VoidGen] A new file will be generated and the default configuration will be used instead.
[14:35:38] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v21.03.26-5ff3a9b-1286-22.3.9
[14:35:38] [Server thread/INFO]: [ManticLib] Enabling ManticLib v1.0.43.2
[14:35:38] [Server thread/INFO]: [ManticLib] Found NMS Version: v1_8_R3
[14:35:39] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[14:35:39] [Server thread/INFO]: [0;36;1m [0;36;22m __ [m
[14:35:39] [Server thread/INFO]: [0;36;1m | [0;36;22m|__) [0;32;22mLuckPerms[m [0;36;1mv5.4.102[m
[14:35:39] [Server thread/INFO]: [0;36;1m |___ [0;36;22m| [0;30;1mRunning on Bukkit - WineSpigot[m
[14:35:39] [Server thread/INFO]: [m
[14:35:39] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:35:39] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[14:35:39] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[14:35:39] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:35:39] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:35:40] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 862ms)
[14:35:40] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[14:35:40] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[14:35:40] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[14:35:40] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[14:35:40] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[14:35:40] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[14:35:40] [Server thread/INFO]: [ManticLib] Enabled integration for Vault.
[14:35:40] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[14:35:40] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[14:35:40] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[14:35:40] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[14:35:40] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[14:35:40] [Server thread/INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[14:35:40] [Server thread/INFO]: Preparing level "world"
[14:35:40] [Server thread/INFO]: -------- World Settings For [world] --------
[14:35:40] [Server thread/INFO]: Mob Spawn Range: 4
[14:35:40] [Server thread/INFO]: Anti X-Ray: false
[14:35:40] [Server thread/INFO]: Engine Mode: 1
[14:35:40] [Server thread/INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:35:40] [Server thread/INFO]: Replace Blocks: [1, 5]
[14:35:40] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:35:40] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Cane Growth Modifier: 20000%
[14:35:40] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:35:40] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 32 / Mo 32 / Mi 32 / Other 48
[14:35:40] [Server thread/INFO]: Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[14:35:40] [Server thread/INFO]: Random Lighting Updates: false
[14:35:40] [Server thread/INFO]: Structure Info Saving: true
[14:35:40] [Server thread/INFO]: Sending up to 5 chunks per packet
[14:35:40] [Server thread/INFO]: Max Entity Collisions: 0
[14:35:40] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
[14:35:40] [Server thread/INFO]: Max TNT Explosions: 999999999
[14:35:40] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 20ms
[14:35:40] [Server thread/INFO]: Item Despawn Rate: 1200
[14:35:40] [Server thread/INFO]: Item Merge Radius: 4.5
[14:35:40] [Server thread/INFO]: View Distance: 8
[14:35:40] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:35:40] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:35:40] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[14:35:40] [Server thread/INFO]: Chunks to Grow per Tick: 300
[14:35:40] [Server thread/INFO]: Clear tick list: true
[14:35:40] [Server thread/INFO]: Experience Merge Radius: 7.0
[14:35:40] [Server thread/INFO]: -------- World Settings For [world] --------
[14:35:40] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:35:40] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:35:40] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 63.0
[14:35:40] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:35:40] [Server thread/INFO]: Living Entity Despawn Ranges: Soft: 32 Hard: 128
[14:35:40] [Server thread/INFO]: WorldServer TickNextTick cap set at 1000000
[14:35:40] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: true
[14:35:40] [Server thread/INFO]: Fix TNT cannons: true
[14:35:40] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:35:40] [Server thread/INFO]: Water over lava flow speed: 5
[14:35:40] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:35:40] [Server thread/INFO]: World async lighting: true
[14:35:40] [Server thread/INFO]: -------- World Settings For [world] --------
[14:35:40] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[14:35:40] [Server thread/INFO]: Mob Spawn Range: 4
[14:35:40] [Server thread/INFO]: Anti X-Ray: false
[14:35:40] [Server thread/INFO]: Engine Mode: 1
[14:35:40] [Server thread/INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:35:40] [Server thread/INFO]: Replace Blocks: [1, 5]
[14:35:40] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:35:40] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Cane Growth Modifier: 20000%
[14:35:40] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:35:40] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 32 / Mo 32 / Mi 32 / Other 48
[14:35:40] [Server thread/INFO]: Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[14:35:40] [Server thread/INFO]: Random Lighting Updates: false
[14:35:40] [Server thread/INFO]: Structure Info Saving: true
[14:35:40] [Server thread/INFO]: Sending up to 5 chunks per packet
[14:35:40] [Server thread/INFO]: Max Entity Collisions: 0
[14:35:40] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
[14:35:40] [Server thread/INFO]: Max TNT Explosions: 999999999
[14:35:40] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 20ms
[14:35:40] [Server thread/INFO]: Item Despawn Rate: 1200
[14:35:40] [Server thread/INFO]: Item Merge Radius: 4.5
[14:35:40] [Server thread/INFO]: View Distance: 8
[14:35:40] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:35:40] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:35:40] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[14:35:40] [Server thread/INFO]: Chunks to Grow per Tick: 300
[14:35:40] [Server thread/INFO]: Clear tick list: true
[14:35:40] [Server thread/INFO]: Experience Merge Radius: 7.0
[14:35:40] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[14:35:40] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:35:40] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:35:40] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 63.0
[14:35:40] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:35:40] [Server thread/INFO]: Living Entity Despawn Ranges: Soft: 32 Hard: 128
[14:35:40] [Server thread/INFO]: WorldServer TickNextTick cap set at 1000000
[14:35:40] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: true
[14:35:40] [Server thread/INFO]: Fix TNT cannons: true
[14:35:40] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:35:40] [Server thread/INFO]: Water over lava flow speed: 5
[14:35:40] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:35:40] [Server thread/INFO]: World async lighting: true
[14:35:40] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[14:35:40] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[14:35:40] [Server thread/INFO]: Mob Spawn Range: 4
[14:35:40] [Server thread/INFO]: Anti X-Ray: false
[14:35:40] [Server thread/INFO]: Engine Mode: 1
[14:35:40] [Server thread/INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:35:40] [Server thread/INFO]: Replace Blocks: [1, 5]
[14:35:40] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:35:40] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Cane Growth Modifier: 20000%
[14:35:40] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:35:40] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:35:40] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 32 / Mo 32 / Mi 32 / Other 48
[14:35:40] [Server thread/INFO]: Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[14:35:40] [Server thread/INFO]: Random Lighting Updates: false
[14:35:40] [Server thread/INFO]: Structure Info Saving: true
[14:35:40] [Server thread/INFO]: Sending up to 5 chunks per packet
[14:35:40] [Server thread/INFO]: Max Entity Collisions: 0
[14:35:40] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
[14:35:40] [Server thread/INFO]: Max TNT Explosions: 999999999
[14:35:40] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 20ms
[14:35:40] [Server thread/INFO]: Item Despawn Rate: 1200
[14:35:40] [Server thread/INFO]: Item Merge Radius: 4.5
[14:35:40] [Server thread/INFO]: View Distance: 8
[14:35:40] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:35:40] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:35:40] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[14:35:40] [Server thread/INFO]: Chunks to Grow per Tick: 300
[14:35:40] [Server thread/INFO]: Clear tick list: true
[14:35:40] [Server thread/INFO]: Experience Merge Radius: 7.0
[14:35:40] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[14:35:40] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:35:40] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:35:40] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 63.0
[14:35:40] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:35:40] [Server thread/INFO]: Living Entity Despawn Ranges: Soft: 32 Hard: 128
[14:35:40] [Server thread/INFO]: WorldServer TickNextTick cap set at 1000000
[14:35:40] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: true
[14:35:40] [Server thread/INFO]: Fix TNT cannons: true
[14:35:40] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:35:40] [Server thread/INFO]: Water over lava flow speed: 5
[14:35:40] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:35:40] [Server thread/INFO]: World async lighting: true
[14:35:40] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[14:35:40] [Server thread/INFO]: Preparing start region for level 0 (Seed: 1464240779813875274)
[14:35:40] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.0.mca in world world!
[14:35:41] [Server thread/INFO]: Preparing start region for level 1 (Seed: 3947157605707227416)
[14:35:41] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.-1.mca in world world_nether!
[14:35:41] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.0.mca in world world_nether!
[14:35:41] [Server thread/INFO]: [WineSpigot] - Caching region r.0.-1.mca in world world_nether!
[14:35:41] [Server thread/INFO]: [WineSpigot] - Caching region r.0.0.mca in world world_nether!
[14:35:41] [Server thread/INFO]: Preparing start region for level 2 (Seed: 3947157605707227416)
[14:35:41] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.-1.mca in world world_the_end!
[14:35:41] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.0.mca in world world_the_end!
[14:35:41] [Server thread/INFO]: [WineSpigot] - Caching region r.0.-1.mca in world world_the_end!
[14:35:41] [Server thread/INFO]: [WineSpigot] - Caching region r.0.0.mca in world world_the_end!
[14:35:41] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v2.15.2
[14:35:41] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled!
[14:35:41] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[14:35:41] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[14:35:41] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[14:35:41] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[14:35:41] [Server thread/INFO]: [ClearLag] Using version-adapter: LegacyVersionAdapter
[14:35:41] [Server thread/INFO]: [ClearLag] Loading modules...
[14:35:41] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[14:35:41] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[14:35:41] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[14:35:41] [Thread-14/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.8]...
[14:35:41] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.13.3
[14:35:41] [Thread-14/INFO]: [ClearLag] No updates found!
[14:35:41] [Server thread/INFO]: [LiteBans] Using default database drivers (version:8).
[14:35:41] [Server thread/INFO]: [LiteBans] Using system locale (en)
[14:35:41] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[14:35:41] [Server thread/INFO]: [LiteBans] Loaded 0 template groups from templates.yml!
[14:35:41] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[14:35:41] [Server thread/INFO]: [LiteBans] Connecting to database...
[14:35:41] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[14:35:42] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[14:35:42] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (159.3 ms).
[14:35:42] [Server thread/INFO]: [LiteBans] Database connection fully initialized (163.8 ms).
[14:35:42] [Server thread/INFO]: [LiteBans] v2.13.3 enabled. Startup took 233 ms.
[14:35:42] [Server thread/INFO]: [BlackMarket] Enabling BlackMarket vBETA-1.0
[14:35:42] [Server thread/INFO]: [InfiniteVouchers] Enabling InfiniteVouchers v2.4.2
[14:35:42] [Server thread/INFO]: [m
[14:35:42] [Server thread/INFO]: ====================================[m
[14:35:42] [Server thread/INFO]: [0;33;22mPlugin name: [0;33;1mInfiniteVouchers[m
[14:35:42] [Server thread/INFO]: [0;33;22mVersion: [0;33;1m2.4.2[m
[14:35:42] [Server thread/INFO]: [0;33;22mCore version: [0;33;1m0.7.25[m
[14:35:42] [Server thread/INFO]: ====================================[m
[14:35:42] [Server thread/INFO]: [m
[14:35:42] [Server thread/INFO]: [InfiniteVouchers] Loaded locale "en_US"
[14:35:42] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.2
[14:35:42] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v6.1.9;caf0ad9
[14:35:42] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[14:35:42] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_8_R3 as the Bukkit adapter
[14:35:42] [Server thread/INFO]: [ManticVanillaEnchants] Enabling ManticVanillaEnchants v1.4.1
[14:35:42] [Server thread/INFO]: [ManticVanillaEnchants] License holder: mrbrexit_#0000 (784453011380240465)
[14:35:42] [Server thread/INFO]: [ManticVanillaEnchants] License generated: Mon Jan 08 22:00:08 CET 2024
[14:35:42] [Server thread/INFO]: [ManticVanillaEnchants] Plugin version: 1.4.1/1.4.1
[14:35:42] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[14:35:42] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[14:35:42] [Server thread/INFO]: [NBTAPI] Using the plugin 'ManticLib' to create a bStats instance!
[14:35:42] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v6.1.3-SNAPSHOT;c904242
[14:35:42] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[14:35:42] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[14:35:42] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[14:35:42] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[14:35:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[14:35:42] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[14:35:42] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[14:35:42] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
[14:35:42] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[14:35:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[14:35:42] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[14:35:42] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[14:35:42] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
[14:35:42] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[14:35:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[14:35:42] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:35:42] [Server thread/INFO]: [Factions] Enabling Factions v1.6.9.5-U0.5.18-b${build.number}
[14:35:42] [Server thread/INFO]: [Factions] === Starting up! ===
[14:35:42] [Server thread/INFO]: [Factions]
[14:35:42] [Server thread/INFO]: [Factions] Factions UUID!
[14:35:42] [Server thread/INFO]: [Factions] Version 1.6.9.5-U0.5.18-b${build.number}
[14:35:42] [Server thread/INFO]: [Factions]
[14:35:42] [Server thread/INFO]: [Factions] Need support? https://factions.support/help/
[14:35:42] [Server thread/INFO]: [Factions]
[14:35:42] [Server thread/INFO]: [Factions] Detected Minecraft 1.8.8
[14:35:42] [Server thread/INFO]: [Factions]
[14:35:42] [Server thread/INFO]: [Factions] Server UUID 41204d69-6e65-4fac-afac-00143ade68b1
[14:35:43] [Server thread/INFO]: [Factions] Loaded 463 material mappings.
[14:35:43] [Server thread/INFO]: [Factions] Loaded 8 players in 7 factions with 5619 claims
[14:35:43] [Server thread/INFO]: [Factions] Using POWER for land/raid control. Enabling power commands.
[14:35:43] [Server thread/INFO]: [Factions] Enabling TNT bank management
[14:35:43] [Server thread/INFO]: [Factions] Enabling /f fly command
[14:35:43] [Server thread/INFO]: [Factions] Using PACKETS as a particle provider
[14:35:43] [Server thread/INFO]: [Factions] Using REDSTONE as the ParticleEffect for /f sc
[14:35:43] [Server thread/INFO]: [Factions] Didn't find API support for sending titles, using reflection instead.
[14:35:43] [Server thread/INFO]: [Factions] Successfully hooked into LuckPerms for permission contexts!
[14:35:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: factionsuuid [1.6.9.5-U0.5.18-b${build.number}]
[14:35:43] [Server thread/INFO]: [Factions] Successfully registered placeholders with PlaceholderAPI.
[14:35:43] [Server thread/INFO]: [Factions] === Ready to go after 521ms! ===
[14:35:43] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.8.3
[14:35:43] [Server thread/INFO]: [Vulcan] Server Version: 1.8.8 detected!
[14:35:43] [Server thread/INFO]: [Vulcan] BStats enabled!
[14:35:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.8.3]
[14:35:43] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[14:35:43] [Server thread/INFO]: [AbyssCommandBlocker] Enabling AbyssCommandBlocker v1.0.1
[14:35:43] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.94.0
[14:35:43] [Server thread/INFO]: [CombatTagPlus] Enabling CombatTagPlus v1.3.1
[14:35:43] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.6
[14:35:43] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+24-0af4436
[14:35:43] [Server thread/ERROR]: You are running an unsupported server version!
[14:35:44] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[14:35:44] [Server thread/INFO]: No kits found to migrate.
[14:35:44] [Server thread/INFO]: Loaded 853 items from items.csv.
[14:35:44] [Server thread/INFO]: Using locale en_US
[14:35:44] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[14:35:44] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:35:44] [Server thread/INFO]: [Factions] Found and connected to Essentials
[14:35:44] [Server thread/INFO]: [Factions] Based on main.conf will delete Essentials player homes in their old faction when they leave
[14:35:44] [Server thread/INFO]: [Factions] Using Essentials for teleportation
[14:35:44] [Server thread/INFO]: [ManticVanillaEnchants] Enabled integration for Essentials.
[14:35:44] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[14:35:44] [Server thread/INFO]: Using Vault based permissions (LuckPerms)
[14:35:44] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[14:35:44] [Server thread/INFO]: [Multiverse-Core] §aWe 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.
[14:35:44] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[14:35:44] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[14:35:44] [Server thread/INFO]: -------- World Settings For [Darkzone] --------
[14:35:44] [Server thread/INFO]: Mob Spawn Range: 4
[14:35:44] [Server thread/INFO]: Anti X-Ray: false
[14:35:44] [Server thread/INFO]: Engine Mode: 1
[14:35:44] [Server thread/INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:35:44] [Server thread/INFO]: Replace Blocks: [1, 5]
[14:35:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:35:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Cane Growth Modifier: 20000%
[14:35:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:35:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 32 / Mo 32 / Mi 32 / Other 48
[14:35:44] [Server thread/INFO]: Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[14:35:44] [Server thread/INFO]: Random Lighting Updates: false
[14:35:44] [Server thread/INFO]: Structure Info Saving: true
[14:35:44] [Server thread/INFO]: Sending up to 5 chunks per packet
[14:35:44] [Server thread/INFO]: Max Entity Collisions: 0
[14:35:44] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
[14:35:44] [Server thread/INFO]: Max TNT Explosions: 999999999
[14:35:44] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 20ms
[14:35:44] [Server thread/INFO]: Item Despawn Rate: 1200
[14:35:44] [Server thread/INFO]: Item Merge Radius: 4.5
[14:35:44] [Server thread/INFO]: View Distance: 8
[14:35:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:35:44] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:35:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[14:35:44] [Server thread/INFO]: Chunks to Grow per Tick: 300
[14:35:44] [Server thread/INFO]: Clear tick list: true
[14:35:44] [Server thread/INFO]: Experience Merge Radius: 7.0
[14:35:44] [Server thread/INFO]: -------- World Settings For [Darkzone] --------
[14:35:44] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:35:44] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:35:44] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 63.0
[14:35:44] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:35:44] [Server thread/INFO]: Living Entity Despawn Ranges: Soft: 32 Hard: 128
[14:35:44] [Server thread/INFO]: WorldServer TickNextTick cap set at 1000000
[14:35:44] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: true
[14:35:44] [Server thread/INFO]: Fix TNT cannons: true
[14:35:44] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:35:44] [Server thread/INFO]: Water over lava flow speed: 5
[14:35:44] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:35:44] [Server thread/INFO]: World async lighting: true
[14:35:44] [Server thread/INFO]: -------- World Settings For [Darkzone] --------
[14:35:44] [Server thread/INFO]: Preparing start region for level 3 (Seed: -6869561345158529702)
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.-1.mca in world Darkzone!
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.0.mca in world Darkzone!
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.0.-1.mca in world Darkzone!
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.0.0.mca in world Darkzone!
[14:35:44] [Server thread/INFO]: [WorldGuard] (Darkzone) TNT ignition is PERMITTED.
[14:35:44] [Server thread/INFO]: [WorldGuard] (Darkzone) Lighters are PERMITTED.
[14:35:44] [Server thread/INFO]: [WorldGuard] (Darkzone) Lava fire is blocked.
[14:35:44] [Server thread/INFO]: [WorldGuard] (Darkzone) Fire spread is UNRESTRICTED.
[14:35:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Darkzone'
[14:35:44] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[14:35:44] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[14:35:44] [Server thread/INFO]: -------- World Settings For [test] --------
[14:35:44] [Server thread/INFO]: Mob Spawn Range: 4
[14:35:44] [Server thread/INFO]: Anti X-Ray: false
[14:35:44] [Server thread/INFO]: Engine Mode: 1
[14:35:44] [Server thread/INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:35:44] [Server thread/INFO]: Replace Blocks: [1, 5]
[14:35:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:35:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Cane Growth Modifier: 20000%
[14:35:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:35:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 32 / Mo 32 / Mi 32 / Other 48
[14:35:44] [Server thread/INFO]: Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[14:35:44] [Server thread/INFO]: Random Lighting Updates: false
[14:35:44] [Server thread/INFO]: Structure Info Saving: true
[14:35:44] [Server thread/INFO]: Sending up to 5 chunks per packet
[14:35:44] [Server thread/INFO]: Max Entity Collisions: 0
[14:35:44] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
[14:35:44] [Server thread/INFO]: Max TNT Explosions: 999999999
[14:35:44] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 20ms
[14:35:44] [Server thread/INFO]: Item Despawn Rate: 1200
[14:35:44] [Server thread/INFO]: Item Merge Radius: 4.5
[14:35:44] [Server thread/INFO]: View Distance: 8
[14:35:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:35:44] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:35:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[14:35:44] [Server thread/INFO]: Chunks to Grow per Tick: 300
[14:35:44] [Server thread/INFO]: Clear tick list: true
[14:35:44] [Server thread/INFO]: Experience Merge Radius: 7.0
[14:35:44] [Server thread/INFO]: -------- World Settings For [test] --------
[14:35:44] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:35:44] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:35:44] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 63.0
[14:35:44] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:35:44] [Server thread/INFO]: Living Entity Despawn Ranges: Soft: 32 Hard: 128
[14:35:44] [Server thread/INFO]: WorldServer TickNextTick cap set at 1000000
[14:35:44] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: true
[14:35:44] [Server thread/INFO]: Fix TNT cannons: true
[14:35:44] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:35:44] [Server thread/INFO]: Water over lava flow speed: 5
[14:35:44] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:35:44] [Server thread/INFO]: World async lighting: true
[14:35:44] [Server thread/INFO]: -------- World Settings For [test] --------
[14:35:44] [Server thread/INFO]: Preparing start region for level 4 (Seed: 6643622922126678645)
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.-1.mca in world test!
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.0.mca in world test!
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.0.-1.mca in world test!
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.0.0.mca in world test!
[14:35:44] [Server thread/INFO]: [WorldGuard] (test) TNT ignition is PERMITTED.
[14:35:44] [Server thread/INFO]: [WorldGuard] (test) Lighters are PERMITTED.
[14:35:44] [Server thread/INFO]: [WorldGuard] (test) Lava fire is blocked.
[14:35:44] [Server thread/INFO]: [WorldGuard] (test) Fire spread is UNRESTRICTED.
[14:35:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'test'
[14:35:44] [Server thread/INFO]: -------- World Settings For [raidworld] --------
[14:35:44] [Server thread/INFO]: Mob Spawn Range: 4
[14:35:44] [Server thread/INFO]: Anti X-Ray: false
[14:35:44] [Server thread/INFO]: Engine Mode: 1
[14:35:44] [Server thread/INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:35:44] [Server thread/INFO]: Replace Blocks: [1, 5]
[14:35:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:35:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Cane Growth Modifier: 20000%
[14:35:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:35:44] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:35:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 32 / Mo 32 / Mi 32 / Other 48
[14:35:44] [Server thread/INFO]: Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[14:35:44] [Server thread/INFO]: Random Lighting Updates: false
[14:35:44] [Server thread/INFO]: Structure Info Saving: true
[14:35:44] [Server thread/INFO]: Sending up to 5 chunks per packet
[14:35:44] [Server thread/INFO]: Max Entity Collisions: 0
[14:35:44] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
[14:35:44] [Server thread/INFO]: Max TNT Explosions: 999999999
[14:35:44] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 20ms
[14:35:44] [Server thread/INFO]: Item Despawn Rate: 1200
[14:35:44] [Server thread/INFO]: Item Merge Radius: 4.5
[14:35:44] [Server thread/INFO]: View Distance: 8
[14:35:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:35:44] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:35:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[14:35:44] [Server thread/INFO]: Chunks to Grow per Tick: 300
[14:35:44] [Server thread/INFO]: Clear tick list: true
[14:35:44] [Server thread/INFO]: Experience Merge Radius: 7.0
[14:35:44] [Server thread/INFO]: -------- World Settings For [raidworld] --------
[14:35:44] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:35:44] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:35:44] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 63.0
[14:35:44] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:35:44] [Server thread/INFO]: Living Entity Despawn Ranges: Soft: 32 Hard: 128
[14:35:44] [Server thread/INFO]: WorldServer TickNextTick cap set at 1000000
[14:35:44] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: true
[14:35:44] [Server thread/INFO]: Fix TNT cannons: true
[14:35:44] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:35:44] [Server thread/INFO]: Water over lava flow speed: 5
[14:35:44] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:35:44] [Server thread/INFO]: World async lighting: true
[14:35:44] [Server thread/INFO]: -------- World Settings For [raidworld] --------
[14:35:44] [Server thread/INFO]: Preparing start region for level 5 (Seed: 8279788919675384454)
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.-1.mca in world raidworld!
[14:35:44] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.0.mca in world raidworld!
[14:35:45] [Server thread/INFO]: [WineSpigot] - Caching region r.0.-1.mca in world raidworld!
[14:35:45] [Server thread/INFO]: [WineSpigot] - Caching region r.0.0.mca in world raidworld!
[14:35:45] [Server thread/INFO]: [WorldGuard] (raidworld) TNT ignition is PERMITTED.
[14:35:45] [Server thread/INFO]: [WorldGuard] (raidworld) Lighters are PERMITTED.
[14:35:45] [Server thread/INFO]: [WorldGuard] (raidworld) Lava fire is blocked.
[14:35:45] [Server thread/INFO]: [WorldGuard] (raidworld) Fire spread is UNRESTRICTED.
[14:35:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'raidworld'
[14:35:45] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[14:35:45] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[14:35:45] [Server thread/INFO]: [CloudCrates] Enabling CloudCrates v2.81
[14:35:46] [Server thread/INFO]: [0;37;1m[CloudCrates] [0;37;22mLoaded the [0;37;1mDefault [0;37;1mcrate.[m
[14:35:46] [Server thread/INFO]: [0;37;1m[CloudCrates | Default ] [0;37;22mLoaded the [0;37;1mMoney [0;37;1mreward.[m
[14:35:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cloudcrates [2.81]
[14:35:46] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3296)
[14:35:46] [Server thread/INFO]: [Citizens] Loading external libraries
[14:35:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[14:35:46] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[14:35:46] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.105.0
[14:35:46] [Server thread/INFO]: [m
[14:35:46] [Server thread/INFO]: [0;32;1m=============================[m
[14:35:46] [Server thread/INFO]: [0;37;22mAuctionHouse 2.105.0 by [0;36;22mKiran Hart[m
[14:35:46] [Server thread/INFO]: [0;37;22mAction: [0;32;1mEnabling[0;37;22m...[m
[14:35:46] [Server thread/INFO]: [0;30;1m[[0;36;22mTweetyCore[0;30;1m] [0;37;1mHooked into [0;33;1mAuctionHouse.[m
[14:35:47] [Server thread/ERROR]: [AuctionHouse] Plugin AuctionHouse v2.105.0 has failed to register events for class ca.tweetzy.auctionhouse.listeners.PlayerListeners because org/bukkit/event/inventory/PrepareAnvilEvent does not exist.
[14:35:47] [Server thread/ERROR]: [AuctionHouse] Plugin AuctionHouse v2.105.0 has failed to register events for class ca.tweetzy.auctionhouse.listeners.MeteorClientListeners because org/bukkit/event/player/PlayerSwapHandItemsEvent does not exist.
[14:35:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionhouse [1.0.0]
[14:35:47] [Server thread/INFO]: [0;32;1m=============================[m
[14:35:47] [Server thread/INFO]: [m
[14:35:47] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+24-0af4436
[14:35:47] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:35:47] [Server thread/INFO]: [FactionsKore] Enabling FactionsKore v1.0
[14:35:47] [Server thread/INFO]: [FactionsKore] - Successfully verified license!
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully hooked into FactionsUUID (Golfing8'S Fork)![m
[14:35:47] [Server thread/INFO]: [FactionsKore] - Found WineSpigot! Using enhanced armor equip listener.
[14:35:47] [Server thread/INFO]: [0;31;1m[21mFactionsKore [0;37;22m- [0;31;1mCouldn't find a vanish plugin![m
[14:35:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: kore [v1.0]
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mFound 3 expansions, loading them now.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded FKore_Stacker expansion[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded FactionsTop expansion[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded DiscordFTOP expansion[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mEnabled CombatTagPlus soft-dependency![m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mMissing mcMMO soft-dependency![m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mMissing DeluxeCombat soft-dependency![m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mMissing CombatLogX soft-dependency![m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mMissing PvPManager soft-dependency![m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mEnabled ViaVersion soft-dependency![m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded anti-bug feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded anti-enderman-teleport feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded anti-item-craft feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded anti-pearl-glitch feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded anti-system-faction-exploit-liquid-flow feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded bans feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded blueprint feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled blueprint feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded booster feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded bosses feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled bosses feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded bottlerecycle feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded bundle feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded button-cooldown feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded cannon-speed-limiter feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled cannon-speed-limiter feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded cannonutils feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled cannonutils feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded chestlogs feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded chunkbuster feature.[m
[14:35:47] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[14:35:47] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[14:35:47] [Server thread/INFO]: [NBTAPI] Using the plugin 'FactionsKore' to create a bStats instance!
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded classes feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled classes feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded command-cooldown feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded consume-cooldown feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded corners feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded customenchants feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled customenchants feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded damage-control feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded drain feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded explosive-rod feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded fast-drain feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded genblock feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded grace feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled grace feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded harvesterhoe feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled harvesterhoe feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded itemfilter feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded jellylegs feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded koth feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded loot-protection feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded messages feature.[m
[14:35:47] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded meteor feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded mobcoins feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded nightvision feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded obbyfill feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded outpost feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded pin feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded player-log-in-out feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded pocket-ocean feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded points feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded potfill feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded printer feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded raid-claim feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded raiding-outpost feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded reclaim feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded roam feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded roster feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded sandbot feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded shield feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded spawnerlog feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded spectate feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded sponge feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded staff feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled staff feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded stats feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded throwableceggs feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded tntfill feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded trenches feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded wands feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded wild feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded withdraw feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded xpwithdraw feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;36;22mFKore_Stacker registered feature mob-stacking.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded mob-stacking feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;36;22mFKore_Stacker registered feature collectors.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded collectors feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;36;22mFKore_Stacker registered feature spawner-stacking.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded spawner-stacking feature.[m
[14:35:48] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for kore.
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;36;22mFKore_Stacker registered command collectors.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;36;22mFKore_Stacker registered command mob-stacking.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;36;22mFKore_Stacker registered command spawner-stacking.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;36;22mFactionsTop registered feature factionstop.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded factionstop feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;36;22mFactionsTop registered command factionstop.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;36;22mDiscordFTOP registered feature ftopdiscord.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;32;1mSuccessfully loaded ftopdiscord feature.[m
[14:35:48] [Server thread/INFO]: [0;32;1m[21mFactionsKore [0;37;22m- [0;31;1mSuccessfully disabled ftopdiscord feature.[m
[14:35:48] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.3-Release
[14:35:48] [Server thread/INFO]: [DeluxeMenus] Hooked into PlaceholderAPI!
[14:35:48] [Server thread/WARN]: [DeluxeMenus] Material for item: example in menu: advanced_menu is not a valid material name / id!
[14:35:48] [Server thread/WARN]: [DeluxeMenus] Skipping item: example
[14:35:48] [Server thread/WARN]: [DeluxeMenus] Material for item: examplecd in menu: advanced_menu is not a valid material name / id!
[14:35:48] [Server thread/WARN]: [DeluxeMenus] Skipping item: examplecd
[14:35:48] [Server thread/WARN]: [DeluxeMenus] Material for item: examplenoperm in menu: advanced_menu is not a valid material name / id!
[14:35:48] [Server thread/WARN]: [DeluxeMenus] Skipping item: examplenoperm
[14:35:48] [Server thread/WARN]: [DeluxeMenus] Material for item: filler_item in menu: advanced_menu is not a valid material name / id!
[14:35:48] [Server thread/WARN]: [DeluxeMenus] Skipping item: filler_item
[14:35:48] [Server thread/INFO]: [DeluxeMenus] 3 GUI menus loaded!
[14:35:48] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[14:35:48] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault for economy requirement!
[14:35:48] [Server thread/INFO]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[14:35:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.13.3-Release]
[14:35:48] [Server thread/INFO]: [ManticHoes] Enabling ManticHoes v2.0-BETA
[14:35:48] [Server thread/INFO]: [ManticHoes] License holder: Raptors#0001 (784453011380240465)
[14:35:48] [Server thread/INFO]: [ManticHoes] License generated: Thu May 11 16:33:34 CEST 2023
[14:35:48] [Server thread/INFO]: [ManticHoes] Plugin version: 2.0-BETA/2.0-BETA
[14:35:48] [Server thread/INFO]: [ManticHoes] Enabled integration for PlaceholderAPI.
[14:35:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mantichoes [2.0-BETA]
[14:35:48] [Server thread/INFO]: [ManticHoes] Enabled integration for ShopGUIPlus.
[14:35:48] [Server thread/INFO]: [ManticHoes] Enabled integration for FactionsKore.
[14:35:48] [Server thread/INFO]: [ManticLib] Enabled integration for ManticHoes.
[14:35:48] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[14:35:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[14:35:48] [Server thread/INFO]: [TAB] [0;32;1mEnabled in 149ms[m
[14:35:48] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.16
[14:35:49] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[14:35:49] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[14:35:49] [Server thread/INFO]: [PlayerVaults] Loaded! Took 175ms
[14:35:49] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+24-0af4436
[14:35:49] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:35:49] [Server thread/INFO]: [AbyssLib] Enabling AbyssLib v1.2.8
[14:35:49] [Server thread/INFO]: [0;36;22m[Abyss] [0;36;1m[0;36;22mInjected logger into [0;36;1mServer[0;36;22m.[m
[14:35:49] [Server thread/ERROR]: [AbyssLib] Plugin AbyssLib v1.2.8 has failed to register events for class net.abyssdev.abysslib.armor.DispenserArmorListener because org/bukkit/event/block/BlockDispenseArmorEvent does not exist.
[14:35:49] [Server thread/INFO]: [AbyssLib] Found DecentHolograms Connector
[14:35:49] [Server thread/INFO]: [0;36;22m[Abyss] [0;36;1mUsing [0;36;22mWorldGuard[0;36;1m as the team provider.[m
[14:35:49] [Server thread/INFO]: [0;36;22m[Abyss] [0;36;1m[0;36;22mNo available stacker provider found! Enabling [0;36;1mDefault implementation[0;36;22m.[m
[14:35:49] [Server thread/INFO]: [0;36;22m[Abyss] [0;36;1mAbyssLib v1.2.8 enabled.[m
[14:35:49] [Server thread/INFO]: [0;36;22m[Abyss] [0;36;1m[0;36;22mInjected logger into [0;36;1mAbyssLib[0;36;22m.[m
[14:35:49] [Server thread/INFO]: [AbyssReactions] Enabling AbyssReactions v1.0.3
[14:35:49] [Server thread/INFO]: [AbyssReactions] §8§m---------------------------------
[14:35:49] [Server thread/INFO]: [AbyssReactions]
[14:35:49] [Server thread/INFO]: [AbyssReactions] §bAbyssReactions §8| §b1.0.3
[14:35:49] [Server thread/INFO]: [AbyssReactions] §7§oSuccessfully §f§ovalidated§7§o license!
[14:35:49] [Server thread/INFO]: [AbyssReactions]
[14:35:49] [Server thread/INFO]: [AbyssReactions] §8§m---------------------------------
[14:35:49] [Server thread/INFO]: [AbyssReactions] Loaded plugin in 387ms
[14:35:49] [Server thread/INFO]: [0;36;22m[Abyss] [0;36;1m[0;36;22mInjected logger into [0;36;1mAbyssReactions[0;36;22m.[m
[14:35:49] [Server thread/INFO]: [AbyssBounties] Enabling AbyssBounties v1.0.0
[14:35:49] [Server thread/INFO]: [AbyssBounties] §8§m---------------------------------
[14:35:49] [Server thread/INFO]: [AbyssBounties]
[14:35:49] [Server thread/INFO]: [AbyssBounties] §bAbyssBounties §8| §b1.0.0
[14:35:49] [Server thread/INFO]: [AbyssBounties] §7§oSuccessfully §f§ovalidated§7§o license!
[14:35:49] [Server thread/INFO]: [AbyssBounties]
[14:35:49] [Server thread/INFO]: [AbyssBounties] §8§m---------------------------------
[14:35:49] [Server thread/INFO]: [AbyssBounties] Loaded plugin in 258ms
[14:35:49] [Server thread/INFO]: [0;36;22m[Abyss] [0;36;1m[0;36;22mInjected logger into [0;36;1mAbyssBounties[0;36;22m.[m
[14:35:49] [Server thread/INFO]: [ManticDarkzone] Enabling ManticDarkzone v1.2.4
[14:35:49] [Server thread/INFO]: [ManticDarkzone] License holder: Raptors#0001 (784453011380240465)
[14:35:49] [Server thread/INFO]: [ManticDarkzone] License generated: Thu May 11 16:33:34 CEST 2023
[14:35:49] [Server thread/INFO]: [ManticDarkzone] Plugin version: 1.2.4/1.2.4
[14:35:49] [Server thread/INFO]: [ManticDarkzone] Enabled integration for PlaceholderAPI.
[14:35:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: manticdarkzone [1.2.4]
[14:35:49] [Server thread/INFO]: [QStaffMode] Enabling QStaffMode v1.3.6
[14:35:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qstaffmode [1.0]
[14:35:50] [Server thread/INFO]: [0;32;1mQStaffMode 1.3.6 enabled[m
[14:35:50] [Server thread/INFO]: [AbyssGambling] Enabling AbyssGambling v1.0.1
[14:35:50] [Server thread/ERROR]: Error occurred while enabling AbyssGambling v1.0.1 (Is it up to date?)
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.MUSIC_DISC_5
at java.lang.Enum.valueOf(Enum.java:238) ~[?:1.8.0_312]
at org.bukkit.Sound.valueOf(Sound.java:11) ~[server.jar:1_8_R3]
at net.abyssdev.abyssgambling.module.impl.coinflip.menus.CoinflipGameMenu.<init>(CoinflipGameMenu.java:42) ~[?:?]
at net.abyssdev.abyssgambling.module.impl.coinflip.CoinflipModule.<init>(CoinflipModule.java:33) ~[?:?]
at net.abyssdev.abyssgambling.AbyssGambling.loadModules(AbyssGambling.java:185) ~[?:?]
at net.abyssdev.abyssgambling.AbyssGambling.onEnable(AbyssGambling.java:61) ~[?:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321) ~[server.jar:1_8_R3]
at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:321) [server.jar:1_8_R3]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:420) [server.jar:1_8_R3]
at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:378) [server.jar:1_8_R3]
at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:320) [server.jar:1_8_R3]
at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:485) [server.jar:1_8_R3]
at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:449) [server.jar:1_8_R3]
at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:404) [server.jar:1_8_R3]
at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:268) [server.jar:1_8_R3]
at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:687) [server.jar:1_8_R3]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_312]
[14:35:50] [Server thread/INFO]: [AbyssGambling] Disabling AbyssGambling v1.0.1
[14:35:50] [Server thread/INFO]: §4§m--------------------------------------
[14:35:50] [Server thread/INFO]:
[14:35:50] [Server thread/INFO]: §cAbyssGambling §8| §cAIO Core
[14:35:50] [Server thread/INFO]: §7§oMade by §f§oRelocation#0001§7§o
[14:35:50] [Server thread/INFO]:
[14:35:50] [Server thread/INFO]: §4Information
[14:35:50] [Server thread/INFO]: §4* §cWebsite: §fhttps://abyssdev.net
[14:35:50] [Server thread/INFO]: §4* §cWiki: §fhttps://wiki.abyssdev.net
[14:35:50] [Server thread/INFO]: §4* §cDiscord: §fhttps://discord.abyssdev.net
[14:35:50] [Server thread/INFO]:
[14:35:50] [Server thread/INFO]: §4Disabled Modules
[14:35:50] [Server thread/INFO]:
[14:35:50] [Server thread/INFO]: §4§m--------------------------------------
[14:35:50] [Server thread/INFO]: [ManticSwords] Enabling ManticSwords v1.5.6.1
[14:35:50] [Server thread/INFO]: [ManticSwords] License holder: Raptors#0001 (784453011380240465)
[14:35:50] [Server thread/INFO]: [ManticSwords] License generated: Thu May 11 16:33:34 CEST 2023
[14:35:50] [Server thread/INFO]: [ManticSwords] Plugin version: 1.5.6.1/1.5.6.1
[14:35:50] [Server thread/INFO]: [ManticSwords] Enabled integration for PlaceholderAPI.
[14:35:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: manticswords [1.5.6.1]
[14:35:50] [Server thread/INFO]: [ManticSwords] Enabled integration for ShopGUIPlus.
[14:35:50] [Server thread/INFO]: [ManticSwords] Enabled integration for FactionsKore.
[14:35:50] [Server thread/INFO]: [ManticLib] Enabled integration for ManticSwords.
[14:35:50] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:35:50] [Server thread/INFO]: Done (10.387s)! For help, type "help" or "?"
[14:35:50] [Server thread/INFO]: Timings Reset
[14:35:50] [Server thread/INFO]: [0;37;22mAll stacked entities will be removed in [0;33;1m[4m5m 0s[0;37;22m![m
[14:35:50] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.8.x (47)
[14:35:50] [Server thread/WARN]: [ViaVersion] This version of Minecraft is extremely outdated and support for it has reached its end of life. You will still be able to run Via on this Minecraft version, but we are unlikely to provide any further fixes or help with problems specific to legacy Minecraft versions. Please consider updating to give your players a better experience and to avoid issues that have long been fixed.
[14:35:50] [Server thread/WARN]: [ViaVersion] You are running an outdated Java version, please consider updating it to at least Java 17 (your version is 1.8.0_312). At some point in the future, ViaVersion will no longer be compatible with this version of Java.
[14:35:50] [Server thread/INFO]: [FactionsKore] - Found ShopGUIPlus, hooking into it!
[14:35:50] [Server thread/INFO]: [Factions] Found economy plugin through Vault: EssentialsX Economy
[14:35:50] [Server thread/INFO]: [Factions] NOTE: Economy is disabled. You can enable it in config/main.conf
[14:35:50] [Server thread/INFO]: [Factions] Using Vault with permissions plugin LuckPerms
[14:35:50] [Craft Scheduler Thread - 4/INFO]: [ManticLib] Found jar file: ManticLib-1.0.43.2.jar
[14:35:50] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin LiteBans tried to register listener for unknown packet CHAT_COMMAND[PLAY, CLIENT, 4, classNames: [net.minecraft.server.v1_8_R3.PacketPlayInChatCommand, net.minecraft.network.protocol.game.ServerboundChatCommandPacket] (unregistered)] [direction: from CLIENT]
[14:35:50] [Server thread/INFO]: [0;30;1m([0;31;22m[21mFAWE[0;30;1m)[m[0;37;22m Plugin 'WorldGuard' found. Using it now.[m
[14:35:50] [Server thread/INFO]: [0;30;1m([0;31;22m[21mFAWE[0;30;1m)[m[0;37;22m Plugin 'FactionsUUID' found. Using it now.[m
[14:35:50] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[14:35:50] [Craft Scheduler Thread - 4/INFO]: [DecentHolograms] Loading holograms...
[14:35:50] [Craft Scheduler Thread - 2/INFO]: §6Fetching version information...
[14:35:50] [Server thread/ERROR]: [AuctionHouse] You're running Auction House on a non-supported Jar
[14:35:50] [Server thread/ERROR]: [AuctionHouse] You will not receive any support while using a non-supported jar, support jars: Spigot or Paper
[14:35:50] [Server thread/ERROR]: [AuctionHouse] You are receiving this message because you're running Auction House on a Minecraft version older than 1.16. As a heads up, Auction House 3.0 is going to be for 1.16+ only
[14:35:50] [Server thread/WARN]: [AuctionHouse] You're running Auction House on a non supported server jar, although small, there's a chance somethings will not work or just entirely break.
[14:35:50] [Server thread/INFO]: [0;33;1m[9m--------------------------------------------------------[m
[14:35:50] [Server thread/INFO]: [m
[14:35:50] [Server thread/INFO]: [0;32;1mThank you for purchasing Auction House, it means a lot[m
[14:35:50] [Server thread/INFO]: [0;37;22m - Kiran Hart[m
[14:35:50] [Server thread/INFO]: [m
[14:35:50] [Server thread/INFO]: [0;33;1m[9m--------------------------------------------------------[m
[14:35:51] [Craft Scheduler Thread - 4/INFO]: [DecentHolograms] Loaded 17 holograms!
[14:35:51] [Server thread/INFO]: [Citizens] Loaded 9 NPCs.
[14:35:51] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.94.0 ]================================
[14:35:51] [Server thread/INFO]: [ShopGUIPlus]
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Using kore for spawners support.
[14:35:51] [Craft Scheduler Thread - 6/INFO]: [0;30;1m[[0;33;1mAuctionHouse[0;30;1m] [0;32;1mIs running the latest version![m
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded 9 main menu items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 68 items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mobdrops' with 13 items.
[14:35:51] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading misc > 8, item not loaded: Invalid or no material name specified
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'misc' with 8 items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'potions' with 15 items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'colored' with 50 items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 45 items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'crops' with 12 items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'spawners' with 14 items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 13 items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded 9 shops with total of 238 items.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[14:35:51] [Server thread/INFO]: [ShopGUIPlus]
[14:35:51] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[14:35:51] [Craft Scheduler Thread - 6/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[14:35:51] [Craft Scheduler Thread - 0/INFO]: [Vault] Checking for Updates ...
[14:35:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[14:35:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.6]
[14:35:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.7]
[14:35:51] [Server thread/INFO]: [0;32;1m3 placeholder hook(s) registered![m
[14:35:51] [Server thread/INFO]: [0;32;1mNew version of [0;36;22mFactions[0;32;1m available: [0;36;22m1.6.9.5-U0.6.35-b334[m
[14:35:51] [Craft Scheduler Thread - 0/INFO]: [Vault] No new version available
[14:35:51] [Server thread/WARN]: [LuckPerms] User 257e9625-01a1-4b01-ab99-d59c81d44842 - LoveMeN0t doesn't have data pre-loaded, they have never been processed during pre-login in this session. - denying login.
[14:35:51] [Server thread/WARN]: [LuckPerms] Player LoveMeN0t has a non-LuckPerms permissible (org.bukkit.permissions.PermissibleBase)!
This is probably because you have multiple permission plugins installed.
Please make sure that LuckPerms is the only permission plugin installed on your server!
(unless you're performing a migration, in which case, just remember to remove your old permission plugin once you're done!)
[14:35:51] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@22142539[id=257e9625-01a1-4b01-ab99-d59c81d44842,name=LoveMeN0t,properties={textures=[com.mojang.authlib.properties.Property@4cc75d23], bungeeguard-token=[com.mojang.authlib.properties.Property@3305809]},legacy=false] (/90.254.138.220:37284): §7[§b§lL§3§lP§7]§r §cPermissions data for your user was not loaded during the pre-login stage - unable to continue. Please try again later. If you are a server admin, please check the console for any errors.
[14:35:51] [Server thread/INFO]: com.mojang.authlib.GameProfile@22142539[id=257e9625-01a1-4b01-ab99-d59c81d44842,name=LoveMeN0t,properties={textures=[com.mojang.authlib.properties.Property@4cc75d23], bungeeguard-token=[com.mojang.authlib.properties.Property@3305809]},legacy=false] (/90.254.138.220:37284) lost connection: §7[§b§lL§3§lP§7]§r §cPermissions data for your user was not loaded during the pre-login stage - unable to continue. Please try again later. If you are a server admin, please check the console for any errors.
[14:35:51] [Server thread/INFO]: [0;33;1mFactions top currently resyncing. Processed 100/3218 chunks. (10 per tick)[m
[14:35:52] [Server thread/WARN]: [AbyssLib] Task #172 for AbyssLib v1.2.8 generated an exception
java.lang.RuntimeException: Unable to connect to Pastebin endpoint!
at com.besaba.revonline.pastebinapi.response.FailedResponse.get(FailedResponse.java:20) ~[?:?]
at net.abyssdev.abysslib.logger.filter.ExceptionFilter.lambda$check$0(ExceptionFilter.java:81) ~[?:?]
at net.abyssdev.abysslib.scheduler.impl.SyncScheduler$2.run(SyncScheduler.java:28) ~[?:?]
at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:60) ~[server.jar:1_8_R3]
at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:355) [server.jar:1_8_R3]
at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:996) [server.jar:1_8_R3]
at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:371) [server.jar:1_8_R3]
at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:897) [server.jar:1_8_R3]
at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:782) [server.jar:1_8_R3]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_312]
[14:35:55] [Craft Scheduler Thread - 4/INFO]: [0;30;1m[[0;33;1mAuctionHouse[0;30;1m] [0;32;1mAuto saved auction items & transactions[m
[14:36:00] [Thread-24/INFO]: UUID of player LoveMeN0t is 257e9625-01a1-4b01-ab99-d59c81d44842
[14:36:00] [Server thread/INFO]: LoveMeN0t[/90.254.138.220:46982] logged in with entity id 220 at ([test]10.55970190490864, 26.739142444277082, 35.072683342527824)
[14:36:01] [Server thread/INFO]: [0;33;1mFactions top currently resyncing. Processed 2110/3218 chunks. (10 per tick)[m
[14:36:04] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /pin 1978
[14:36:06] [Server thread/INFO]: [FactionsTopKoreExpansion] - START FACTIONS TOP LOG
[14:36:06] [Server thread/INFO]: 1. test - $96,122
[14:36:06] [Server thread/INFO]: 2. RaidOutpost - $0
[14:36:06] [Server thread/INFO]: 3. Meaty - $0
[14:36:06] [Server thread/INFO]: 4. gfey - $0
[14:36:06] [Server thread/INFO]: [FactionsTopKoreExpansion] - END FACTIONS TOP LOG
[14:36:06] [Server thread/INFO]: [0;32;1mFactions top successfully resynchronized.[m
[14:37:01] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /schematic
[14:37:43] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /mv create Duels -g void normal -t flat
[14:38:01] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /mv create Duels normal -g void -t flat
[14:38:05] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /mv create Duels normal -g void -t flat
[14:38:06] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /pl
[14:38:11] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: //void
[14:38:12] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /voidgen
[14:38:14] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /ehelp voidgen
[14:38:32] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /mv create Duels normal -g void -t flat
[14:38:48] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[14:38:48] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[14:38:48] [Server thread/INFO]: LoveMeN0t: Starting creation of world 'Duels'...[m
[14:38:48] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[14:38:48] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[14:38:48] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'Duels' - Env: NORMAL - Type: FLAT & generator: VoidGen:
[14:38:48] [Server thread/INFO]: -------- World Settings For [Duels] --------
[14:38:48] [Server thread/INFO]: Mob Spawn Range: 4
[14:38:48] [Server thread/INFO]: Anti X-Ray: false
[14:38:48] [Server thread/INFO]: Engine Mode: 1
[14:38:48] [Server thread/INFO]: Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:38:48] [Server thread/INFO]: Replace Blocks: [1, 5]
[14:38:48] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:38:48] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:38:48] [Server thread/INFO]: Cane Growth Modifier: 20000%
[14:38:48] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:38:48] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:38:48] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:38:48] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:38:48] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:38:48] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:38:48] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[14:38:48] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 32 / Mo 32 / Mi 32 / Other 48
[14:38:48] [Server thread/INFO]: Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[14:38:48] [Server thread/INFO]: Random Lighting Updates: false
[14:38:48] [Server thread/INFO]: Structure Info Saving: true
[14:38:48] [Server thread/INFO]: Sending up to 5 chunks per packet
[14:38:48] [Server thread/INFO]: Max Entity Collisions: 0
[14:38:48] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Feature: 14357617
[14:38:48] [Server thread/INFO]: Max TNT Explosions: 999999999
[14:38:48] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 20ms
[14:38:48] [Server thread/INFO]: Item Despawn Rate: 1200
[14:38:48] [Server thread/INFO]: Item Merge Radius: 4.5
[14:38:48] [Server thread/INFO]: View Distance: 8
[14:38:48] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:38:48] [Server thread/INFO]: Arrow Despawn Rate: 1200
[14:38:48] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[14:38:48] [Server thread/INFO]: Chunks to Grow per Tick: 300
[14:38:48] [Server thread/INFO]: Clear tick list: true
[14:38:48] [Server thread/INFO]: Experience Merge Radius: 7.0
[14:38:48] [Server thread/INFO]: -------- World Settings For [Duels] --------
[14:38:48] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:38:48] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:38:48] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 63.0
[14:38:48] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:38:48] [Server thread/INFO]: Living Entity Despawn Ranges: Soft: 32 Hard: 128
[14:38:48] [Server thread/INFO]: WorldServer TickNextTick cap set at 1000000
[14:38:48] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: true
[14:38:48] [Server thread/INFO]: Fix TNT cannons: true
[14:38:48] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:38:48] [Server thread/INFO]: Water over lava flow speed: 5
[14:38:48] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:38:48] [Server thread/INFO]: World async lighting: true
[14:38:48] [Server thread/INFO]: -------- World Settings For [Duels] --------
[14:38:48] [Server thread/INFO]: Preparing start region for level 6 (Seed: -4581596204622609852)
[14:38:48] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.-1.mca in world Duels!
[14:38:48] [Server thread/INFO]: [WineSpigot] - Caching region r.-1.0.mca in world Duels!
[14:38:48] [Server thread/INFO]: [WineSpigot] - Caching region r.0.-1.mca in world Duels!
[14:38:48] [Server thread/INFO]: [WineSpigot] - Caching region r.0.0.mca in world Duels!
[14:38:48] [Server thread/INFO]: [WorldGuard] Default configuration file written: /home/container/plugins/WorldGuard/worlds/Duels/config.yml
[14:38:48] [Server thread/INFO]: [WorldGuard] Default configuration file written: /home/container/plugins/WorldGuard/worlds/Duels/blacklist.txt
[14:38:48] [Server thread/INFO]: [WorldGuard] (Duels) TNT ignition is PERMITTED.
[14:38:48] [Server thread/INFO]: [WorldGuard] (Duels) Lighters are PERMITTED.
[14:38:48] [Server thread/INFO]: [WorldGuard] (Duels) Lava fire is blocked.
[14:38:48] [Server thread/INFO]: [WorldGuard] (Duels) Fire spread is UNRESTRICTED.
[14:38:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Duels'
[14:38:48] [Server thread/WARN]: [Multiverse-Core] Spawn location from world.dat file was unsafe. Adjusting...
[14:38:48] [Server thread/WARN]: [Multiverse-Core] Original Location: X: 0 Y: 0 Z: 0 P: 0 Y: 0
[14:38:48] [Server thread/INFO]: [Multiverse-Core] New Spawn for 'Duels' is located at: Duels:0.00,65.00,0.00:0.00:0.00
[14:38:49] [Server thread/INFO]: LoveMeN0t: Complete![m
[14:38:49] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /mv create Duels Normal -g VoidGen: -t FLAT
[14:38:51] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /mv tp duels
[14:38:59] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /schematic list
[14:39:01] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /schematic list global
[14:39:03] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /schematic list global 2
[14:39:04] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /schematic list global 3
[14:39:04] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /schematic list global 4
[14:39:05] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /schematic list global 5
[14:39:07] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: //schematic load ../oroduel1.schematic
[14:39:09] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: //paste
[14:39:26] [Server thread/INFO]: [LoveMeN0t: Game rule has been updated]
[14:39:26] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /gamerule doMobSpawning false
[14:39:29] [Server thread/INFO]: [0;33;1mALL intensive server activity halted by [0;30;1m[[0;31;22m[21mOwner[0;30;1m] [0;37;22mLoveMeN0t[m.[m
[14:39:29] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /stoplag
[14:39:31] [Server thread/INFO]: [0;33;1mALL intensive server activity is now allowed.[m
[14:39:31] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /stoplag -c
[14:39:50] [Server thread/INFO]: [0;37;22mAll stacked entities will be removed in [0;33;1m[4m1m 0s[0;37;22m![m
[14:39:52] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: //schematic load ../oroduel2.schematic
[14:39:55] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: //paste
[14:39:58] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: //undo
[14:40:04] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /speed 3
[14:40:06] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: //paste
[14:40:08] [Spigot Async Task Thread - 0/INFO]: LoveMeN0t issued server command: /speed 1