Paste #51230: Untitled Paste

Date: 2018/12/25 16:40:04 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


[05:00:29] [Server thread/INFO]: Starting minecraft server version 1.12.2
[05:00:29] [Server thread/INFO]: Loading properties
[05:00:29] [Server thread/INFO]: Default game type: CREATIVE
[05:00:29] [Server thread/INFO]: This server is running CraftBukkit version git-Spigot-3d850ec-f46ccd7 (MC: 1.12.2) (Implementing API version 1.12.2-R0.1-SNAPSHOT)
[05:00:29] [Server thread/INFO]: Server Ping Player Sample Count: 12
[05:00:29] [Server thread/INFO]: Using 4 threads for Netty based IO
[05:00:29] [Server thread/INFO]: Debug logging is disabled
[05:00:29] [Server thread/INFO]: Generating keypair
[05:00:29] [Server thread/INFO]: Starting Minecraft server on 127.0.0.1:25573
[05:00:30] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[05:00:31] [Server thread/INFO]: [BuildersUtilities] Loading BuildersUtilities v1.2.3
[05:00:31] [Server thread/INFO]: [LampControl] Loading LampControl v3.0
[05:00:31] [Server thread/INFO]: [Vehicles] Loading Vehicles v9.3.2
[05:00:31] [Server thread/INFO]: [BetterChairs] Loading BetterChairs v0.9.5
[05:00:31] [Server thread/INFO]: [NametagEdit] Loading NametagEdit v4.1.4
[05:00:31] [Server thread/INFO]: [SimpleAPI] Loading SimpleAPI v3.7
[05:00:31] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v2.14.2
[05:00:31] [Server thread/INFO]: [EmptyWorldGenerator] Loading EmptyWorldGenerator v1.5
[05:00:31] [Server thread/INFO]: [PacketListenerApi] Loading PacketListenerApi v3.6.0-SNAPSHOT
[05:00:31] [Server thread/INFO]: [ReflectionHelper] Version is v1_12_R1 (11201)
[05:00:31] [Server thread/INFO]: [PacketListenerAPI] Using INChannel
[05:00:31] [Server thread/INFO]: Injected custom channel handlers.
[05:00:31] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v10.4.0
[05:00:31] [Server thread/INFO]: [MapManager] Loading MapManager v1.4.0-SNAPSHOT
[05:00:31] [Server thread/INFO]: [EasyBackup] Loading EasyBackup v2.2.0
[05:00:31] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v18.12.19-d131fa6-1241-22.0.3
[05:00:31] [Server thread/INFO]: [NoSpawnChunks] Loading NoSpawnChunks v0.3
[05:00:31] [Server thread/INFO]: [AntiAd] Loading AntiAd v1.0
[05:00:31] [Server thread/INFO]: [BlocksHub] Loading BlocksHub v2.1.1
[05:00:31] [Server thread/INFO]: [PermissionsEx] Loading PermissionsEx v1.23.4
[05:00:31] [Server thread/WARN]: [PermissionsEx] This server is in offline mode. Unless this server is configured to integrate with a supported proxy (see http://dft.ba/-8ous), UUIDs *may not be stable*!
[05:00:31] [Server thread/INFO]: [BookExploitFix] Loading BookExploitFix v0.8
[05:00:31] [Server thread/INFO]: [InstantRespawn] Loading InstantRespawn v1.0.7
[05:00:31] [Server thread/INFO]: [Vault] Loading Vault v1.6.6-b${env.TRAVIS_BUILD_NUMBER}
[05:00:31] [Server thread/INFO]: [SimpleSit] Loading SimpleSit v1.6.3
[05:00:31] [Server thread/INFO]: [FastAsyncVoxelSniper] Loading FastAsyncVoxelSniper v18.08.20-0866842-1189-21.1.6
[05:00:31] [Server thread/INFO]: [VoxelSniper] Loading VoxelSniper v5.172.0-SNAPSHOT
[05:00:31] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v1.5.0
[05:00:31] [Server thread/INFO]: [ViaVersion] ViaVersion 1.5.0 is now loaded, waiting for boot. (late-bind)
[05:00:31] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v2.4.0-SNAPSHOT
[05:00:31] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v6.1.7;dd00bb1
[05:00:31] [Server thread/INFO]: [Essentials] Loading Essentials v2.0.1-b580
[05:00:31] [Server thread/INFO]: [goBrush] Loading goBrush v2.0
[05:00:31] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.5.0
[05:00:31] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.3.0
[05:00:31] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.12.2) has not yet been tested! Proceed with caution.
[05:00:31] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v9.5.0-SNAPSHOT
[05:00:31] [Server thread/INFO]: [NoCheatPlus] Loading NoCheatPlus v3.16.0-RC-sMD5NET-b1134
[05:00:31] [Server thread/INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[05:00:31] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[05:00:31] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.12.2
[05:00:31] [Server thread/INFO]: [ItemFixer] Loading ItemFixer v2.9.8
[05:00:31] [Server thread/INFO]: [ViaRewind] Loading ViaRewind v1.3.10
[05:00:31] [Server thread/INFO]: [WorldEditSelectionVisualizer] Loading WorldEditSelectionVisualizer v1.4.8
[05:00:31] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v6.2.1;84bc322
[05:00:31] [Server thread/INFO]: [uCars] Loading uCars v19
[05:00:31] [Server thread/INFO]: [BlivTrails] Loading BlivTrails v1.1.5
[05:00:31] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.0.1-b580
[05:00:31] [Server thread/INFO]: [RedstoneClockPreventer] Loading RedstoneClockPreventer v1.3.1
[05:00:31] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.2.4
[05:00:31] [Server thread/INFO]: [SimplePets] Loading SimplePets v3.9
[05:00:31] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.22-SNAPSHOT (build 1487)
[05:00:31] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v18.12.21-03ad8eb-2059
[05:00:31] [Server thread/INFO]: [ProtectionLib] Loading ProtectionLib v0.9.3
[05:00:31] [Server thread/INFO]: [CombatLogX] Loading CombatLogX v5.3.0.0
[05:00:31] [Server thread/INFO]: [Denizen] Loading Denizen v1.0.3-SNAPSHOT (build 404)
[05:00:31] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v2.5-b719
[05:00:31] [Server thread/INFO]: [PlotMines] Loading PlotMines v3.5.4
[05:00:31] [Server thread/INFO]: [goPaint] Loading goPaint v1.0
[05:00:31] [Server thread/INFO]: [dDiscordBot] Loading dDiscordBot v0.1 (build Unknown)
[05:00:31] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v2.4.3
[05:00:31] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.2.6
[05:00:31] [Server thread/INFO]: [Depenizen] Loading Depenizen v1.0.0 (build Unknown)
[05:00:31] [Server thread/INFO]: [FurnitureLib] Loading FurnitureLib v1.9.9.4
[05:00:31] [Server thread/INFO]: [dIRCBot] Loading dIRCBot v0.3 (build 9)
[05:00:31] [Server thread/INFO]: [DiceFurniture] Loading DiceFurniture v3.2.1.4
[05:00:31] [Server thread/INFO]: [SimpleAPI] Enabling SimpleAPI v3.7
[05:00:31] [Server thread/INFO]: [SimpleAPI] Checking for updates...
[05:00:31] [Server thread/INFO]: [SimpleAPI] loading BStats...
[05:00:31] [Server thread/INFO]: [SimpleAPI] BStats Location: https://bstats.org/plugin/bukkit/SimpleAPI
[05:00:32] [Server thread/INFO]: [EmptyWorldGenerator] Enabling EmptyWorldGenerator v1.5
[05:00:32] [Server thread/INFO]: [EmptyWorldGenerator] EmptyWorldGenerator has been enabled
[05:00:32] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v18.12.19-d131fa6-1241-22.0.3
[05:00:32] [Server thread/INFO]: ====== USE PAPER ======
[05:00:32] [Server thread/INFO]: DOWNLOAD: https://ci.destroystokyo.com/job/PaperSpigot/
[05:00:32] [Server thread/INFO]: GUIDE: https://www.spigotmc.org/threads/21726/
[05:00:32] [Server thread/INFO]:  - This is only a recommendation
[05:00:32] [Server thread/INFO]: ==============================
[05:00:32] [Server thread/INFO]: [NoSpawnChunks] Enabling NoSpawnChunks v0.3
[05:00:32] [Server thread/INFO]: [NoSpawnChunks] Enabled
[05:00:32] [Server thread/INFO]: [Vault] Enabling Vault v1.6.6-b${env.TRAVIS_BUILD_NUMBER}
[05:00:32] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[05:00:32] [Server thread/INFO]: [Vault] [Permission] PermissionsEx found: Waiting
[05:00:32] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[05:00:32] [Server thread/INFO]: [Vault] [Chat] PermissionsEx found: Waiting
[05:00:32] [Server thread/INFO]: [Vault] Enabled Version 1.6.6-b${env.TRAVIS_BUILD_NUMBER}
[05:00:32] [Server thread/INFO]: [FastAsyncVoxelSniper] Enabling FastAsyncVoxelSniper v18.08.20-0866842-1189-21.1.6
[05:00:32] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v2.4.0-SNAPSHOT
[05:00:32] [Server thread/INFO]: [ViaVersion] Loading block mapping...
[05:00:32] [Server thread/INFO]: [ViaVersion] Loading item mapping...
[05:00:32] [Server thread/INFO]: [ViaVersion] Loading new tags...
[05:00:32] [Server thread/INFO]: [ViaVersion] Loading enchantments...
[05:00:32] [Server thread/INFO]: [ViaVersion] Loading sound mapping...
[05:00:33] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.3.0
[05:00:33] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[05:00:33] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v1.3.10
[05:00:33] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v18.12.21-03ad8eb-2059
[05:00:33] [Server thread/INFO]: Version is PlotSquared-18.12.21-3ad8eb-2059
[05:00:33] [Server thread/INFO]: [ PLOT ] KillAllEntities started.
[05:00:33] [Server thread/INFO]: [ PLOT ] Metrics enabled.
[05:00:33] [Server thread/INFO]: [ PLOT ]  PlotSquared is using online UUIDs
[05:00:33] [Server thread/INFO]: PlotSquared hooked into WorldEdit.
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: plot-expiry, Value: false
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: kill-road-mobs, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: kill-road-items, Value: false
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: worlds, Value: false
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: worldedit-restrictions, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: database-purger, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: economy, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: block-cache, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: kill-road-vehicles, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: persistent-meta, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: ban-deleter, Value: false
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: updater, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: database, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: plotme-converter, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: permission-cache, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: rating-cache, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: comment-notifier, Value: false
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: metrics, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: chunk-processor, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: uuid-cache, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: events, Value: true
[05:00:33] [Server thread/INFO]: [ PLOT ] Key: commands, Value: true
[05:00:33] [Server thread/INFO]: PlotSquared is now enabled
[05:00:33] [Server thread/INFO]: [ PLOT ] Metrics enabled.
[05:00:33] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[05:00:33] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[05:00:33] [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.
[05:00:33] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[05:00:33] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[05:00:33] [Server thread/INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[05:00:34] [Server thread/INFO]: Preparing level "world"
[05:00:34] [Server thread/INFO]: -------- World Settings For [world] --------
[05:00:34] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:34] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:34] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:34] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:34] [Server thread/INFO]: Random Lighting Updates: false
[05:00:34] [Server thread/INFO]: Structure Info Saving: true
[05:00:34] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:34] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:34] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:34] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:34] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:34] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:34] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:34] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:34] [Server thread/INFO]: View Distance: 6
[05:00:34] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:34] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:34] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:34] [Server thread/INFO]: [ PLOT ] Detected world load for 'world'
[05:00:34] [Server thread/INFO]: [ PLOT ]  - generator: PlotSquared>PlotSquared
[05:00:34] [Server thread/INFO]: [ PLOT ]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[05:00:34] [Server thread/INFO]: [ PLOT ]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[05:00:34] [Server thread/INFO]: World possibly already loaded: world
[05:00:34] [Server thread/INFO]: Preparing start region for level 0 (Seed: -401527738303849938)
[05:00:34] [Server thread/INFO]: [BuildersUtilities] Enabling BuildersUtilities v1.2.3
[05:00:34] [Server thread/INFO]: [LampControl] Enabling LampControl v3.0
[05:00:34] [Server thread/INFO]: [LampControl] LampControl v3.0 was enabled!
[05:00:34] [Server thread/INFO]: [Vehicles] Enabling Vehicles v9.3.2
[05:00:35] [Server thread/INFO]: Vehicles >> lang.yml loaded.
[05:00:35] [Server thread/INFO]: [BetterChairs] Enabling BetterChairs v0.9.5
[05:00:35] [Server thread/INFO]: [BetterChairs] Your server is running version v1_12_R1
[05:00:35] [Server thread/INFO]: [BetterChairs] NMS hooked !
[05:00:35] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.1.4
[05:00:35] [Server thread/INFO]: [NametagEdit] Found PermissionsEx! Hooking in.
[05:00:35] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v2.14.2
[05:00:35] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled!
[05:00:35] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[05:00:35] [Server thread/INFO]: [PacketListenerApi] Enabling PacketListenerApi v3.6.0-SNAPSHOT
[05:00:35] [Server thread/INFO]: Adding channels for online players...
[05:00:35] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v10.4.0
[05:00:35] [Server thread/INFO]: [BuycraftX] Validating your server key...
[05:00:35] [Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[05:00:35] [Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[05:00:36] [Server thread/INFO]: [BuycraftX] A new version of BuycraftX (11.0.0) is available. Go to your server panel at https://server.buycraft.net/plugins to download the update.
[05:00:36] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[05:00:36] [Server thread/INFO]: [BuycraftX] Updating coupon list...
[05:00:36] [Server thread/INFO]: [MapManager] Enabling MapManager v1.4.0-SNAPSHOT
[05:00:36] [Server thread/INFO]: [ReflectionHelper] Version is v1_12_R1 (11201)
[05:00:36] [Server thread/INFO]: [MapManager] Vanilla Maps are allowed. Trying to discover occupied Map IDs...
[05:00:37] [Server thread/INFO]: [MapManager] Found 657 occupied IDs.
[05:00:37] [Server thread/INFO]: [EasyBackup] Enabling EasyBackup v2.2.0
[05:00:37] [Server thread/INFO]: [AntiAd] Enabling AntiAd v1.0
[05:00:37] [Server thread/INFO]: [BlocksHub] Enabling BlocksHub v2.1.1
[05:00:37] [Server thread/INFO]: Initializing access controllers
[05:00:37] [Server thread/INFO]: Initializing block loggers
[05:00:37] [Server thread/INFO]: [BlocksHub] Enabled
[05:00:37] [Server thread/INFO]: [PermissionsEx] Enabling PermissionsEx v1.23.4
[05:00:37] [Server thread/INFO]: [PermissionsEx] Initializing file backend
[05:00:37] [Server thread/INFO]: [PermissionsEx] Permissions file successfully reloaded
[05:00:37] [Server thread/INFO]: [Vault][Permission] PermissionsEx hooked.
[05:00:37] [Server thread/INFO]: [Vault][Chat] PermissionsEx_Chat hooked.
[05:00:37] [Server thread/INFO]: [BookExploitFix] Enabling BookExploitFix v0.8
[05:00:37] [Server thread/INFO]: [BookExploitFix] Detected supported server version v1_12_R1
[05:00:37] [Server thread/INFO]: [BookExploitFix] BookExploitFix vers. 0.8 by minoneer activated
[05:00:37] [Server thread/INFO]: [InstantRespawn] Enabling InstantRespawn v1.0.7
[05:00:37] [Server thread/INFO]: [SimpleSit] Enabling SimpleSit v1.6.3
[05:00:37] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v5.172.0-SNAPSHOT
[05:00:37] [Server thread/INFO]: [VoxelSniper] Registered 75 Sniper Brushes with 149 handles.
[05:00:37] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[05:00:37] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v1.5.0
[05:00:37] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v6.1.7;dd00bb1
[05:00:37] [Server thread/INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
[05:00:37] [Server thread/INFO]: (FAWE) Replacing commands is currently undefined behavior: { image,color }
[05:00:37] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_12_R1 as the Bukkit adapter
[05:00:37] [Server thread/INFO]: [Essentials] Enabling Essentials v2.0.1-b580
[05:00:37] [Server thread/INFO]: [Essentials] Using 1.8.3+ BlockStateMeta provider as mob spawner provider.
[05:00:37] [Server thread/INFO]: [Essentials] Using Reflection based provider as spawn egg provider.
[05:00:37] [Server thread/INFO]: [Essentials] Using 1.9+ BasePotionData provider as potion meta provider.
[05:00:37] [Server thread/INFO]: Using locale da
[05:00:37] [Server thread/INFO]: [Essentials] Using Spigot 1.7.10+ ServerListPingEvent iterator
[05:00:37] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[05:00:37] [Server thread/INFO]: [Vault][Economy] Essentials Economy hooked.
[05:00:37] [Server thread/INFO]: [Essentials] Using Vault based permissions (PermissionsEx)
[05:00:37] [Server thread/INFO]: [goBrush] Enabling goBrush v2.0
[05:00:37] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.5.0
[05:00:37] [Server thread/INFO]: [HeadDatabase] Economy succesfully setup!
[05:00:37] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v9.5.0-SNAPSHOT
[05:00:37] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_12_R1
[05:00:38] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[05:00:38] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.16.0-RC-sMD5NET-b1134
[05:00:38] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.12-1.12.2 / Spigot-CB-1.12_R1
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.6.1 blocks.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.7.2 blocks.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.8 blocks.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.9 blocks.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.10 blocks.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.11 blocks.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.12 blocks.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Update block-info: WATER_LILY block shape patch for multi client protocol support around 1.7.x - 1.11.x.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Adding packet level hooks for ProtocolLib (MC 1.12.2)...
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Confirm teleport packet available (via name): TELEPORT_ACCEPT[class=PacketPlayInTeleportAccept, id=0]
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Available (and activated) packet level hooks: UseEntityAdapter | MovingFlying | OutgoingPosition | KeepAliveAdapter | SoundDistance
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Force disable FastHeal on Minecraft 1.9 and later.
[05:00:38] [Server thread/INFO]: [NoCheatPlus] Version 3.16.0-RC-sMD5NET-b1134 is enabled.
[05:00:38] [Server thread/INFO]: [ItemFixer] Enabling ItemFixer v2.9.8
[05:00:38] [Server thread/INFO]: [ItemFixer] enabled
[05:00:38] [Server thread/INFO]: [WorldEditSelectionVisualizer] Enabling WorldEditSelectionVisualizer v1.4.8
[05:00:38] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v6.2.1;84bc322
[05:00:38] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[05:00:38] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[05:00:38] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[05:00:38] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[05:00:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[05:00:38] [Server thread/INFO]: [WorldGuard] Loading region data...
[05:00:39] [Server thread/INFO]: [uCars] Enabling uCars v19
[05:00:39] [Server thread/INFO]: [uCars] uCars has been enabled!
[05:00:39] [Server thread/INFO]: [BlivTrails] Enabling BlivTrails v1.1.5
[05:00:39] [Server thread/INFO]: [BlivTrails] INFO: Checking Config...
[05:00:39] [Server thread/INFO]: [BlivTrails] INFO: Config Checking is enabled. If you encounter any freezes/stutters, turns this off once you've hit a stable config.
[05:00:39] [Server thread/INFO]: [BlivTrails] INFO: Config Checked!
[05:00:39] [Server thread/INFO]: [BlivTrails] INFO: Using FlatFile as the storage option
[05:00:39] [Server thread/INFO]: [BlivTrails] INFO: Finished Loading Defaults!
[05:00:39] [Server thread/INFO]: [BlivTrails] INFO: Essentials loaded | (Limited Support) Hooking...
[05:00:39] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.0.1-b580
[05:00:39] [Server thread/INFO]: [RedstoneClockPreventer] Enabling RedstoneClockPreventer v1.3.1
[05:00:39] [Server thread/INFO]: [RedstoneClockPreventer] RedstoneClockPreventer v1.3.1 by MGbeenieboy enabled
[05:00:39] [Server thread/INFO]: [RedstoneClockPreventer] WorldGuard detected.
[05:00:39] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.2.4
[05:00:39] [Server thread/INFO]: [LiteBans] Using default database drivers.
[05:00:39] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql (com.mysql.jdbc.Driver)
[05:00:39] [Server thread/INFO]: [LiteBans] Connecting to database...
[05:00:39] [Thread-13/INFO]: [ItemFixer] Новое обновление найдено! | The new version found!
[05:00:39] [Server thread/INFO]: [LiteBans] [Sync] Server name: kreativ
[05:00:39] [Server thread/INFO]: [LiteBans] [Sync] Server UUID: 8b27e99c96d14677831ebd20ccdb58b7
[05:00:39] [Server thread/INFO]: [LiteBans] Database connection fully initialized (205.4 ms).
[05:00:39] [Server thread/INFO]: [LiteBans] v2.2.4 enabled. Startup took 455 ms.
[05:00:39] [Server thread/INFO]: [SimplePets] Enabling SimplePets v3.9
[05:00:39] [Server thread/INFO]: [SimplePets] Checking for updates...
[05:00:39] [Server thread/INFO]: [SimplePets] loading BStats...
[05:00:39] [Server thread/INFO]: [SimplePets] BStats Location: https://bstats.org/plugin/bukkit/SimplePets
[05:00:39] [Server thread/INFO]: [SimplePets Debug] Loading Config.yml...
[05:00:47] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.22-SNAPSHOT (build 1487)
[05:00:47] [Server thread/INFO]: [ProtectionLib] Enabling ProtectionLib v0.9.3
[05:00:47] [Server thread/INFO]: [ProtectionLib] Protection lib hook into: WorldGuard 6.2.1;84bc322
[05:00:47] [Server thread/INFO]: [ProtectionLib] Protection lib hook into: PlotSquared 18.12.21-03ad8eb-2059
[05:00:47] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v5.3.0.0
[05:00:47] [Server thread/INFO]: [Denizen] Enabling Denizen v1.0.3-SNAPSHOT (build 404)
[05:00:49] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.5-b719
[05:00:49] [Server thread/INFO]: -------- World Settings For [world_pw_92acb3e6-0623-4a0b-8e09-1bc8f5f987bd-TGPGamez] --------
[05:00:49] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:49] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:49] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:49] [Server thread/INFO]: Random Lighting Updates: false
[05:00:49] [Server thread/INFO]: Structure Info Saving: true
[05:00:49] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:49] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:49] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:49] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:49] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:49] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:49] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:49] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:49] [Server thread/INFO]: View Distance: 6
[05:00:49] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:49] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:49] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:49] [Server thread/INFO]: BukkitPlotGenerator does not fully support: null
[05:00:49] [Server thread/INFO]: Preparing start region for level 1 (Seed: -6624739856708781967)
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_92acb3e6-0623-4a0b-8e09-1bc8f5f987bd-TGPGamez) TNT ignition is PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_92acb3e6-0623-4a0b-8e09-1bc8f5f987bd-TGPGamez) Lighters are PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_92acb3e6-0623-4a0b-8e09-1bc8f5f987bd-TGPGamez) Lava fire is blocked.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_92acb3e6-0623-4a0b-8e09-1bc8f5f987bd-TGPGamez) Fire spread is UNRESTRICTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pw_92acb3e6-0623-4a0b-8e09-1bc8f5f987bd-TGPGamez'
[05:00:49] [Server thread/INFO]: -------- World Settings For [world_pw_68bad43a-5c17-4bf5-adbc-333a0fda2ea5-ICY] --------
[05:00:49] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:49] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:49] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:49] [Server thread/INFO]: Random Lighting Updates: false
[05:00:49] [Server thread/INFO]: Structure Info Saving: true
[05:00:49] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:49] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:49] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:49] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:49] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:49] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:49] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:49] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:49] [Server thread/INFO]: View Distance: 6
[05:00:49] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:49] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:49] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:49] [Server thread/INFO]: BukkitPlotGenerator does not fully support: null
[05:00:49] [Server thread/INFO]: Preparing start region for level 2 (Seed: 5468768815791490185)
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_68bad43a-5c17-4bf5-adbc-333a0fda2ea5-ICY) TNT ignition is PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_68bad43a-5c17-4bf5-adbc-333a0fda2ea5-ICY) Lighters are PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_68bad43a-5c17-4bf5-adbc-333a0fda2ea5-ICY) Lava fire is blocked.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_68bad43a-5c17-4bf5-adbc-333a0fda2ea5-ICY) Fire spread is UNRESTRICTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pw_68bad43a-5c17-4bf5-adbc-333a0fda2ea5-ICY'
[05:00:49] [Server thread/INFO]: -------- World Settings For [world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-CreatersWorld] --------
[05:00:49] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:49] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:49] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:49] [Server thread/INFO]: Random Lighting Updates: false
[05:00:49] [Server thread/INFO]: Structure Info Saving: true
[05:00:49] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:49] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:49] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:49] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:49] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:49] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:49] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:49] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:49] [Server thread/INFO]: View Distance: 6
[05:00:49] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:49] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:49] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:49] [Server thread/INFO]: BukkitPlotGenerator does not fully support: null
[05:00:49] [Server thread/INFO]: Preparing start region for level 3 (Seed: 5207328105477969135)
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-CreatersWorld) TNT ignition is PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-CreatersWorld) Lighters are PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-CreatersWorld) Lava fire is blocked.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-CreatersWorld) Fire spread is UNRESTRICTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-CreatersWorld'
[05:00:49] [Server thread/INFO]: -------- World Settings For [world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-creators] --------
[05:00:49] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:49] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:49] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:49] [Server thread/INFO]: Random Lighting Updates: false
[05:00:49] [Server thread/INFO]: Structure Info Saving: true
[05:00:49] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:49] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:49] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:49] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:49] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:49] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:49] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:49] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:49] [Server thread/INFO]: View Distance: 6
[05:00:49] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:49] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:49] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:49] [Server thread/INFO]: BukkitPlotGenerator does not fully support: null
[05:00:49] [Server thread/INFO]: Preparing start region for level 4 (Seed: 1010644813509598790)
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-creators) TNT ignition is PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-creators) Lighters are PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-creators) Lava fire is blocked.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-creators) Fire spread is UNRESTRICTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pw_53b526a5-99dd-4cdf-9a81-99a438147d7c-creators'
[05:00:49] [Server thread/INFO]: -------- World Settings For [world_e] --------
[05:00:49] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:49] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:49] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:49] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:49] [Server thread/INFO]: Random Lighting Updates: false
[05:00:49] [Server thread/INFO]: Structure Info Saving: true
[05:00:49] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:49] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:49] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:49] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:49] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:49] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:49] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:49] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:49] [Server thread/INFO]: View Distance: 6
[05:00:49] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:49] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:49] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:49] [Server thread/INFO]: [ PLOT ] Detected world load for 'world_e'
[05:00:49] [Server thread/INFO]: [ PLOT ]  - generator: PlotSquared>PlotSquared
[05:00:49] [Server thread/INFO]: [ PLOT ]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[05:00:49] [Server thread/INFO]: [ PLOT ]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[05:00:49] [Server thread/INFO]: World possibly already loaded: world_e
[05:00:49] [Server thread/INFO]: Preparing start region for level 5 (Seed: -1956960910323128777)
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_e) TNT ignition is PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_e) Lighters are PERMITTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_e) Lava fire is blocked.
[05:00:49] [Server thread/INFO]: [WorldGuard] (world_e) Fire spread is UNRESTRICTED.
[05:00:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_e'
[05:00:50] [Server thread/INFO]: -------- World Settings For [world_pw_5838421b-c2fd-4928-9e28-b83c830365a2-Snow] --------
[05:00:50] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:50] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:50] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:50] [Server thread/INFO]: Random Lighting Updates: false
[05:00:50] [Server thread/INFO]: Structure Info Saving: true
[05:00:50] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:50] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:50] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:50] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:50] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:50] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:50] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:50] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:50] [Server thread/INFO]: View Distance: 6
[05:00:50] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:50] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:50] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:50] [Server thread/INFO]: BukkitPlotGenerator does not fully support: null
[05:00:50] [Server thread/INFO]: Preparing start region for level 6 (Seed: -7586465087079784140)
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_pw_5838421b-c2fd-4928-9e28-b83c830365a2-Snow) TNT ignition is PERMITTED.
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_pw_5838421b-c2fd-4928-9e28-b83c830365a2-Snow) Lighters are PERMITTED.
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_pw_5838421b-c2fd-4928-9e28-b83c830365a2-Snow) Lava fire is blocked.
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_pw_5838421b-c2fd-4928-9e28-b83c830365a2-Snow) Fire spread is UNRESTRICTED.
[05:00:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pw_5838421b-c2fd-4928-9e28-b83c830365a2-Snow'
[05:00:50] [Server thread/INFO]: -------- World Settings For [world_f] --------
[05:00:50] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:50] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:50] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:50] [Server thread/INFO]: Random Lighting Updates: false
[05:00:50] [Server thread/INFO]: Structure Info Saving: true
[05:00:50] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:50] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:50] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:50] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:50] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:50] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:50] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:50] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:50] [Server thread/INFO]: View Distance: 6
[05:00:50] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:50] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:50] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:50] [Server thread/INFO]: [ PLOT ] Detected world load for 'world_f'
[05:00:50] [Server thread/INFO]: [ PLOT ]  - generator: PlotSquared>PlotSquared
[05:00:50] [Server thread/INFO]: [ PLOT ]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[05:00:50] [Server thread/INFO]: [ PLOT ]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[05:00:50] [Server thread/INFO]: [ PLOT ]  - schematic: false
[05:00:50] [Server thread/INFO]: World possibly already loaded: world_f
[05:00:50] [Server thread/INFO]: Preparing start region for level 7 (Seed: 5578121002482890713)
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_f) TNT ignition is PERMITTED.
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_f) Lighters are PERMITTED.
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_f) Lava fire is blocked.
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_f) Fire spread is UNRESTRICTED.
[05:00:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_f'
[05:00:50] [Server thread/INFO]: -------- World Settings For [world_pw_b24a8c83-d5a7-43a7-9ad5-b6cc2292bfaa-test] --------
[05:00:50] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:50] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:50] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:50] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:50] [Server thread/INFO]: Random Lighting Updates: false
[05:00:50] [Server thread/INFO]: Structure Info Saving: true
[05:00:50] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:50] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:50] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:50] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:50] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:50] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:50] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:50] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:50] [Server thread/INFO]: View Distance: 6
[05:00:50] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:50] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:50] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:50] [Server thread/INFO]: BukkitPlotGenerator does not fully support: com.barancode.mc.emptyworldgenerator.Generator@1ec2fc5e
[05:00:50] [Server thread/INFO]: Preparing start region for level 8 (Seed: 2607801329281952792)
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_pw_b24a8c83-d5a7-43a7-9ad5-b6cc2292bfaa-test) TNT ignition is PERMITTED.
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_pw_b24a8c83-d5a7-43a7-9ad5-b6cc2292bfaa-test) Lighters are PERMITTED.
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_pw_b24a8c83-d5a7-43a7-9ad5-b6cc2292bfaa-test) Lava fire is blocked.
[05:00:50] [Server thread/INFO]: [WorldGuard] (world_pw_b24a8c83-d5a7-43a7-9ad5-b6cc2292bfaa-test) Fire spread is UNRESTRICTED.
[05:00:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pw_b24a8c83-d5a7-43a7-9ad5-b6cc2292bfaa-test'
[05:00:51] [Server thread/INFO]: -------- World Settings For [world_pw_c6e38e5b-e700-44f9-b2bd-02c9cbf9f527-GGGGG] --------
[05:00:51] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:51] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:51] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:51] [Server thread/INFO]: Random Lighting Updates: false
[05:00:51] [Server thread/INFO]: Structure Info Saving: true
[05:00:51] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:51] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:51] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:51] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:51] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:51] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:51] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:51] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:51] [Server thread/INFO]: View Distance: 6
[05:00:51] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:51] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:51] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:51] [Server thread/INFO]: BukkitPlotGenerator does not fully support: null
[05:00:51] [Server thread/INFO]: Preparing start region for level 9 (Seed: -5825921249502970374)
[05:00:51] [Server thread/INFO]: [WorldGuard] (world_pw_c6e38e5b-e700-44f9-b2bd-02c9cbf9f527-GGGGG) TNT ignition is PERMITTED.
[05:00:51] [Server thread/INFO]: [WorldGuard] (world_pw_c6e38e5b-e700-44f9-b2bd-02c9cbf9f527-GGGGG) Lighters are PERMITTED.
[05:00:51] [Server thread/INFO]: [WorldGuard] (world_pw_c6e38e5b-e700-44f9-b2bd-02c9cbf9f527-GGGGG) Lava fire is blocked.
[05:00:51] [Server thread/INFO]: [WorldGuard] (world_pw_c6e38e5b-e700-44f9-b2bd-02c9cbf9f527-GGGGG) Fire spread is UNRESTRICTED.
[05:00:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pw_c6e38e5b-e700-44f9-b2bd-02c9cbf9f527-GGGGG'
[05:00:51] [Server thread/INFO]: -------- World Settings For [world_city] --------
[05:00:51] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:51] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:51] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:51] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:51] [Server thread/INFO]: Random Lighting Updates: false
[05:00:51] [Server thread/INFO]: Structure Info Saving: true
[05:00:51] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:51] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:51] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:51] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:51] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:51] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:51] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:51] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:51] [Server thread/INFO]: View Distance: 6
[05:00:51] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:51] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:51] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:51] [Server thread/INFO]: [ PLOT ] Detected world load for 'world_city'
[05:00:51] [Server thread/INFO]: [ PLOT ]  - generator: PlotSquared>PlotSquared
[05:00:51] [Server thread/INFO]: [ PLOT ]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[05:00:51] [Server thread/INFO]: [ PLOT ]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[05:00:51] [Server thread/INFO]: World possibly already loaded: world_city
[05:00:51] [Server thread/INFO]: Preparing start region for level 10 (Seed: 4867320525703472460)
[05:00:51] [Server thread/INFO]: [WorldGuard] (world_city) TNT ignition is PERMITTED.
[05:00:51] [Server thread/INFO]: [WorldGuard] (world_city) Lighters are PERMITTED.
[05:00:51] [Server thread/INFO]: [WorldGuard] (world_city) Lava fire is blocked.
[05:00:51] [Server thread/INFO]: [WorldGuard] (world_city) Fire spread is UNRESTRICTED.
[05:00:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_city'
[05:00:52] [Server thread/INFO]: -------- World Settings For [world_event] --------
[05:00:52] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:52] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:52] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:52] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:52] [Server thread/INFO]: Random Lighting Updates: false
[05:00:52] [Server thread/INFO]: Structure Info Saving: true
[05:00:52] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:52] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:52] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:52] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:52] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:52] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:52] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:52] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:52] [Server thread/INFO]: View Distance: 6
[05:00:52] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:52] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:52] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:52] [Server thread/INFO]: BukkitPlotGenerator does not fully support: com.barancode.mc.emptyworldgenerator.Generator@1ec2fc5e
[05:00:52] [Server thread/INFO]: Preparing start region for level 11 (Seed: 3267059709329700299)
[05:00:52] [Server thread/INFO]: [WorldGuard] (world_event) TNT ignition is PERMITTED.
[05:00:52] [Server thread/INFO]: [WorldGuard] (world_event) Lighters are PERMITTED.
[05:00:52] [Server thread/INFO]: [WorldGuard] (world_event) Lava fire is blocked.
[05:00:52] [Server thread/INFO]: [WorldGuard] (world_event) Fire spread is UNRESTRICTED.
[05:00:52] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_event'
[05:00:53] [Server thread/INFO]: -------- World Settings For [world_a] --------
[05:00:53] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:53] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:53] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:53] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:53] [Server thread/INFO]: Random Lighting Updates: false
[05:00:53] [Server thread/INFO]: Structure Info Saving: true
[05:00:53] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:53] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:53] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:53] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:53] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:53] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:53] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:53] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:53] [Server thread/INFO]: View Distance: 6
[05:00:53] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:53] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:53] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:53] [Server thread/INFO]: [ PLOT ] Detected world load for 'world_a'
[05:00:53] [Server thread/INFO]: [ PLOT ]  - generator: PlotSquared>PlotSquared
[05:00:53] [Server thread/INFO]: [ PLOT ]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[05:00:53] [Server thread/INFO]: [ PLOT ]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[05:00:53] [Server thread/INFO]: World possibly already loaded: world_a
[05:00:53] [Server thread/INFO]: Preparing start region for level 12 (Seed: -2106488707952348905)
[05:00:53] [Server thread/INFO]: [WorldGuard] (world_a) TNT ignition is PERMITTED.
[05:00:53] [Server thread/INFO]: [WorldGuard] (world_a) Lighters are PERMITTED.
[05:00:53] [Server thread/INFO]: [WorldGuard] (world_a) Lava fire is blocked.
[05:00:53] [Server thread/INFO]: [WorldGuard] (world_a) Fire spread is UNRESTRICTED.
[05:00:53] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_a'
[05:00:54] [Server thread/INFO]: -------- World Settings For [world_pw_502c406a-2a77-4119-84df-96f8defa78bf-NimbooYT] --------
[05:00:54] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:54] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:54] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:54] [Server thread/INFO]: Random Lighting Updates: false
[05:00:54] [Server thread/INFO]: Structure Info Saving: true
[05:00:54] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:54] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:54] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:54] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:54] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:54] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:54] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:54] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:54] [Server thread/INFO]: View Distance: 6
[05:00:54] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:54] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:54] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:54] [Server thread/INFO]: BukkitPlotGenerator does not fully support: null
[05:00:54] [Server thread/INFO]: Preparing start region for level 13 (Seed: -3951636620184585394)
[05:00:54] [Server thread/INFO]: [WorldGuard] (world_pw_502c406a-2a77-4119-84df-96f8defa78bf-NimbooYT) TNT ignition is PERMITTED.
[05:00:54] [Server thread/INFO]: [WorldGuard] (world_pw_502c406a-2a77-4119-84df-96f8defa78bf-NimbooYT) Lighters are PERMITTED.
[05:00:54] [Server thread/INFO]: [WorldGuard] (world_pw_502c406a-2a77-4119-84df-96f8defa78bf-NimbooYT) Lava fire is blocked.
[05:00:54] [Server thread/INFO]: [WorldGuard] (world_pw_502c406a-2a77-4119-84df-96f8defa78bf-NimbooYT) Fire spread is UNRESTRICTED.
[05:00:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pw_502c406a-2a77-4119-84df-96f8defa78bf-NimbooYT'
[05:00:54] [Server thread/INFO]: -------- World Settings For [world_b] --------
[05:00:54] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:54] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:54] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:54] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:54] [Server thread/INFO]: Random Lighting Updates: false
[05:00:54] [Server thread/INFO]: Structure Info Saving: true
[05:00:54] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:54] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:54] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:54] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:54] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:54] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:54] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:54] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:54] [Server thread/INFO]: View Distance: 6
[05:00:54] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:54] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:54] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:54] [Server thread/INFO]: [ PLOT ] Detected world load for 'world_b'
[05:00:54] [Server thread/INFO]: [ PLOT ]  - generator: PlotSquared>PlotSquared
[05:00:54] [Server thread/INFO]: [ PLOT ]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[05:00:54] [Server thread/INFO]: [ PLOT ]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[05:00:54] [Server thread/INFO]: World possibly already loaded: world_b
[05:00:54] [Server thread/INFO]: Preparing start region for level 14 (Seed: 6301263099962289392)
[05:00:54] [Server thread/INFO]: [WorldGuard] (world_b) TNT ignition is PERMITTED.
[05:00:54] [Server thread/INFO]: [WorldGuard] (world_b) Lighters are PERMITTED.
[05:00:54] [Server thread/INFO]: [WorldGuard] (world_b) Lava fire is blocked.
[05:00:54] [Server thread/INFO]: [WorldGuard] (world_b) Fire spread is UNRESTRICTED.
[05:00:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_b'
[05:00:55] [Server thread/INFO]: -------- World Settings For [world_c] --------
[05:00:55] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:55] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:55] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:55] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:55] [Server thread/INFO]: Random Lighting Updates: false
[05:00:55] [Server thread/INFO]: Structure Info Saving: true
[05:00:55] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:55] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:55] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:55] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:55] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:55] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:55] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:55] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:55] [Server thread/INFO]: View Distance: 6
[05:00:55] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:55] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:55] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:55] [Server thread/INFO]: [ PLOT ] Detected world load for 'world_c'
[05:00:55] [Server thread/INFO]: [ PLOT ]  - generator: PlotSquared>PlotSquared
[05:00:55] [Server thread/INFO]: [ PLOT ]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[05:00:55] [Server thread/INFO]: [ PLOT ]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[05:00:55] [Server thread/INFO]: World possibly already loaded: world_c
[05:00:55] [Server thread/INFO]: Preparing start region for level 15 (Seed: -6699653458917027547)
[05:00:55] [Server thread/INFO]: [WorldGuard] (world_c) TNT ignition is PERMITTED.
[05:00:55] [Server thread/INFO]: [WorldGuard] (world_c) Lighters are PERMITTED.
[05:00:55] [Server thread/INFO]: [WorldGuard] (world_c) Lava fire is blocked.
[05:00:55] [Server thread/INFO]: [WorldGuard] (world_c) Fire spread is UNRESTRICTED.
[05:00:55] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_c'
[05:00:56] [Server thread/INFO]: -------- World Settings For [world_d] --------
[05:00:56] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:00:56] [Server thread/INFO]: Entity Activation Range: An 6 / Mo 6 / Mi 2
[05:00:56] [Server thread/INFO]: Entity Tracking Range: Pl 40 / An 40 / Mo 40 / Mi 26 / Other 48
[05:00:56] [Server thread/INFO]: Hopper Transfer: 24 Hopper Check: 1 Hopper Amount: 3
[05:00:56] [Server thread/INFO]: Random Lighting Updates: false
[05:00:56] [Server thread/INFO]: Structure Info Saving: true
[05:00:56] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[05:00:56] [Server thread/INFO]: Max TNT Explosions: 100
[05:00:56] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:00:56] [Server thread/INFO]: Mob Spawn Range: 2
[05:00:56] [Server thread/INFO]: Item Merge Radius: 7.0
[05:00:56] [Server thread/INFO]: Item Despawn Rate: 6000
[05:00:56] [Server thread/INFO]: Arrow Despawn Rate: 1200
[05:00:56] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:00:56] [Server thread/INFO]: View Distance: 6
[05:00:56] [Server thread/INFO]: Experience Merge Radius: 10.0
[05:00:56] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:00:56] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:00:56] [Server thread/INFO]: [ PLOT ] Detected world load for 'world_d'
[05:00:56] [Server thread/INFO]: [ PLOT ]  - generator: PlotSquared>PlotSquared
[05:00:56] [Server thread/INFO]: [ PLOT ]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[05:00:56] [Server thread/INFO]: [ PLOT ]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[05:00:56] [Server thread/INFO]: World possibly already loaded: world_d
[05:00:56] [Server thread/INFO]: Preparing start region for level 16 (Seed: -722032519660352523)
[05:00:56] [Server thread/INFO]: [WorldGuard] (world_d) TNT ignition is PERMITTED.
[05:00:56] [Server thread/INFO]: [WorldGuard] (world_d) Lighters are PERMITTED.
[05:00:56] [Server thread/INFO]: [WorldGuard] (world_d) Lava fire is blocked.
[05:00:56] [Server thread/INFO]: [WorldGuard] (world_d) Fire spread is UNRESTRICTED.
[05:00:56] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_d'
[05:00:57] [Server thread/INFO]: [Multiverse-Core] 17 - World(s) loaded.
[05:00:57] [Server thread/INFO]: [Multiverse-Core] Version 2.5-b719 (API v20) Enabled - By Rigby, fernferret, lithium3141 and main--
[05:00:57] [Server thread/INFO]: [PlotMines] Enabling PlotMines v3.5.4
[05:00:57] [Server thread/INFO]: [PlotMines] [PlotMines] Cannot connect to Spigot, aborting update check. (Firewall?)
[05:01:02] [Server thread/INFO]: [PlotMines] [PlotMines] has been successfully enabled!
[05:01:02] [Server thread/INFO]: [goPaint] Enabling goPaint v1.0
[05:01:02] [Server thread/INFO]: [goPaint] Found Plot², features will now be enabled
[05:01:02] [Server thread/INFO]: [dDiscordBot] Enabling dDiscordBot v0.1 (build Unknown)
[05:01:02] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v2.4.3
[05:01:02] [Server thread/INFO]: [ArmorStandTools] Loading support for v1_12_R1
[05:01:02] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin was found. PlotSquared support enabled.
[05:01:02] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[05:01:02] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.2.6
[05:01:02] [Server thread/INFO]: [HolographicDisplays] Found ProtocolLib, using new version.
[05:01:02] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib.
[05:01:02] [Server thread/INFO]: [Depenizen] Enabling Depenizen v1.0.0 (build Unknown)
[05:01:02] [Server thread/INFO]: [FurnitureLib] Enabling FurnitureLib v1.9.9.4
[05:01:02] [Server thread/INFO]: ==========================================
[05:01:02] [Server thread/INFO]: FurnitureLibary Version: 1.9.9.4
[05:01:02] [Server thread/INFO]: Furniture Autor: Ste3et_C0st
[05:01:02] [Server thread/INFO]: Furniture Website: http://dicecraft.de
[05:01:02] [Server thread/INFO]: Furniture start load
[05:01:02] [Server thread/INFO]: Furniture find ProtectionLib: true
[05:01:04] [Server thread/INFO]: [FurnitureLib] FurnitureLib load 173 Objects from: SQLite Database
[05:01:04] [Server thread/INFO]: [FurnitureLib] FurnitureLib have loadet 4943 in 00:01.878
[05:01:04] [Server thread/INFO]: [FurnitureLib] FurnitureLib have purged 0 Objects
[05:01:18] [Server thread/INFO]: FurnitureLib load Models(69): Barrels,BlackBoard,CactusPlant,Camera,CampChair,CandyCane,Catapult,Chair,Chest,ChristmasTree,Crossbow,Fence,FishTank,GasCooker,GraveStone,Hammock,HumanSkeleton,KECeilingFan,KELampStandA,KELaptopA,KEPotPlantA,Kanone,KitchenCabinet,Lantern,LargeWoodenShelf,Log,MailBox,MiniMinecartTrack,SchoolChair,SchoolTable,ShipWheel,SleepingBag,SnowGolem,Sofa,Sunshade,Swing,SwordHolder,TV,Table,Tent1,Toilet,TornBathtubA,TornBedA,TornBedB,TornBedBenchB,TornBenchC,TornChairA,TornComputerA,TornDeskA1,TornDogHouseA,TornFireplaceB1,TornJailBedA,TornLargeTableA,TornPianoA,TornSidetableB1,TornSidetableB2,TornSofaA,TornStorageFurnitureA1,TornStreetLampA1,TornSwordB1,TornTableB,TornToiletA,TornWashstandA,TornWellA1,Tree,Trunk,WaxCandle,fridge,mic
[05:01:20] [Server thread/INFO]: Furniture load finish :)
[05:01:20] [Server thread/INFO]: ==========================================
[05:01:20] [Server thread/INFO]: [dIRCBot] Enabling dIRCBot v0.3 (build 9)
[05:01:20] [Server thread/INFO]: [DiceFurniture] Enabling DiceFurniture v3.2.1.4
[05:01:22] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[05:01:23] [Server thread/INFO]: Done (49.705s)! For help, type "help" or "?"
[05:01:23] [Server thread/INFO]: Using epoll channel type
[05:01:24] [Server thread/INFO]: (FAWE) Plugin 'WorldGuard' found. Using it now.
[05:01:24] [Server thread/INFO]: (FAWE) Optimizing PlotSquared
[05:01:24] [Server thread/INFO]: (FAWE)  - QueueProvider: class com.boydti.fawe.regions.general.plot.FaweLocalBlockQueue
[05:01:24] [Server thread/INFO]: (FAWE)  - HybridPlotManager.REGENERATIVE_CLEAR: false
[05:01:24] [Server thread/INFO]: (FAWE)  - SchematicHandler: com.boydti.fawe.regions.general.plot.FaweSchematicHandler@2d1ff096
[05:01:24] [Server thread/INFO]: (FAWE)  - ChunkManager: com.boydti.fawe.regions.general.plot.FaweChunkManager@20697e4e
[05:01:24] [Server thread/INFO]: (FAWE) Plugin 'PlotSquared' found. Using it now.
[05:01:24] [Server thread/INFO]: (FAWE) Detected class org.bukkit.event.block.BlockExplodeEvent
[05:01:24] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.12.2(340)
[05:01:24] [Craft Scheduler Thread - 22/INFO]: [NoCheatPlus] Added hook: AllViolations(NCP) [1.0].
[05:01:24] [Server thread/INFO]: [NoCheatPlus] Post-enable running...
[05:01:24] [Craft Scheduler Thread - 20/INFO]: [LibsDisguises] Failed to check for a update on spigot.
[05:01:24] [Craft Scheduler Thread - 13/INFO]: [PacketListenerApi] There is a new version available: https://r.spiget.org/2930
[05:01:24] [Craft Scheduler Thread - 14/INFO]: [MapManager] A new version is available: https://r.spiget.org/19198
[05:01:24] [Craft Scheduler Thread - 2/INFO]: [goBrush] Registered 23 brushes.
[05:01:25] [Craft Scheduler Thread - 21/INFO]: [HeadDatabase] Succesfully loaded 19175 heads!
[05:01:25] [Craft Scheduler Thread - 21/INFO]: [HeadDatabase] Succesfully loaded 13 featured tags!
[05:01:28] [Server thread/INFO]: [NoCheatPlus] Post-enable finished.
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'Factions Compatability v1.0.0'
[05:01:28] [Server thread/INFO]: [ CombatLog - Factions Compatability ] A Factions plugin could not be found. This expansion is useless!
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'Citizens Compatibility v1.0.2'
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'Notifier v1.0.3'
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'PreciousStones Compatability v1.0.0'
[05:01:28] [Server thread/INFO]: [ CombatLog - PreciousStones Compatability ] PreciousStones is not installed. This expansion is useless!
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'NotCombatLogX v5.0.1'
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'CrackShot Compatability v1.0.0'
[05:01:28] [Server thread/INFO]: [ CombatLog - CrackShot Compatability ] CrackShot is not installed! This expansion is useless.
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'Parties Compatability v0.0.2'
[05:01:28] [Server thread/INFO]: [ CombatLog - Parties Compatability ] Parties is not installed. This expansion is useless!
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'WorldGuard Compatability v1.0.0'
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'PlaceholderAPI Compatability v1.0.2'
[05:01:28] [Server thread/INFO]: [ CombatLog - PlaceholderAPI Compatability ] Could not find PlaceholderAPI or MVdWPlaceholderAPI! This expansion is useless.
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'Cheat Prevention v1.0.2'
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loading expansion 'Towny Compatability v1.0'
[05:01:28] [Server thread/INFO]: [ CombatLog - Towny Compatability ] Towny is not installed. This expansion is useless!
[05:01:28] [Server thread/INFO]: [ CombatLog ] Loaded 11 expansions
[05:01:28] [Server thread/INFO]: [ CombatLog ] Enabled
[05:01:28] [Server thread/INFO]: [HolographicDisplays] Found a new version available: v2.3.1
[05:01:28] [Server thread/INFO]: [HolographicDisplays] Download it on Bukkit Dev:
[05:01:28] [Server thread/INFO]: [HolographicDisplays] dev.bukkit.org/bukkit-plugins/holographic-displays
[05:01:28] [Server thread/INFO]: [BlocksHub] Loading plugins...
[05:01:28] [Server thread/INFO]: [BlocksHub] Factions: plugin not found.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin Factions...disabled
[05:01:28] [Server thread/INFO]: [BlocksHub] GriefPrevention: plugin not found.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin GriefPrevention...disabled
[05:01:28] [Server thread/INFO]: [BlocksHub] PreciousStones: plugin not found.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin PreciousStones...disabled
[05:01:28] [Server thread/INFO]: [BlocksHub] Residence: plugin not found.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin Residence 4.6...disabled
[05:01:28] [Server thread/INFO]: [BlocksHub] Residence: plugin not found.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin Residence...disabled
[05:01:28] [Server thread/INFO]: [BlocksHub] Towny: plugin not found.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin Towny...disabled
[05:01:28] [Server thread/INFO]: [BlocksHub] Registered WorldGuard 6.2.1;84bc322 access controller.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin WorldGuard...enabled
[05:01:28] [Server thread/INFO]: [BlocksHub] Registered CoreProtect 2.14.2 logger.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin CoreProtect...enabled
[05:01:28] [Server thread/INFO]: [BlocksHub] HawkEye: plugin not found.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin HawkEye...disabled
[05:01:28] [Server thread/INFO]: [BlocksHub] LogBlock: plugin not found.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin LogBlock...disabled
[05:01:28] [Server thread/INFO]: [BlocksHub] Prism: plugin not found.
[05:01:28] [Server thread/INFO]: [BlocksHub] BlocksHub plugin Prism...disabled
[05:01:29] [Server thread/INFO]: [Citizens] Loaded 108 NPCs.
[05:01:32] [Server thread/WARN]: [ViaVersion] There is a newer version available: 1.6.0, you're on: 1.5.0
[05:01:32] [Craft Scheduler Thread - 22/INFO]: [Vault] Checking for Updates ... 
[05:01:32] [Thread-18/INFO]: Logging initialized @82376ms to org.eclipse.jetty.util.log.Slf4jLog
[05:01:32] [Thread-18/INFO]: Discord4J v2.9.3 4bb34cf (https://github.com/austinv11/Discord4J)
[05:01:32] [Thread-18/INFO]: A Java binding for the official Discord API, forked from the inactive https://github.com/nerd/Discord4J. Copyright (c) 2017, Licensed under GNU LGPLv3
[05:01:33] [Craft Scheduler Thread - 19/INFO]: ========================================================
[05:01:33] [Craft Scheduler Thread - 19/INFO]: CombatLogX Update Checker
[05:01:33] [Craft Scheduler Thread - 19/INFO]: There is a new update available!
[05:01:33] [Craft Scheduler Thread - 19/INFO]: Latest Version: 9.2.1.1
[05:01:33] [Craft Scheduler Thread - 19/INFO]: Your Version: 5.3.0.0
[05:01:33] [Craft Scheduler Thread - 19/INFO]: Get it here: https://www.spigotmc.org/resources/combatlogx.31689/
[05:01:33] [Craft Scheduler Thread - 19/INFO]: ========================================================
[05:01:33] [Server thread/INFO]: [Twitch] connecting to irc.chat.twitch.tv
[05:01:33] [RequestBuffer Initial Executor/WARN]: RequestBuffer handled an uncaught exception!
java.lang.NullPointerException: null
    at com.denizenscript.ddiscordbot.DiscordCommand.lambda$execute$1(DiscordCommand.java:238) ~[?:?]
    at sx.blah.discord.util.RequestBuffer$IVoidRequest.request(RequestBuffer.java:150) ~[?:?]
    at sx.blah.discord.util.RequestBuffer$IVoidRequest.request(RequestBuffer.java:146) ~[?:?]
    at sx.blah.discord.util.RequestBuffer$RequestFuture$RequestCallable.call(RequestBuffer.java:288) ~[?:?]
    at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_191]
    at sx.blah.discord.util.RequestBuffer$RequestFuture.run(RequestBuffer.java:261) ~[?:?]
    at sx.blah.discord.util.RequestBuffer$RequestFuture.access$200(RequestBuffer.java:164) ~[?:?]
    at sx.blah.discord.util.RequestBuffer.lambda$request$0(RequestBuffer.java:50) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [?:1.8.0_191]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [?:1.8.0_191]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_191]
[05:01:33] [Craft Scheduler Thread - 22/WARN]: [Vault] Stable Version: 1.7.1 is out! You are still running version: 1.6.6
[05:01:33] [Craft Scheduler Thread - 22/WARN]: [Vault] Update at: http://dev.bukkit.org/server-mods/vault
[05:01:33] [Server thread/INFO]: [Twitch] Logging in...
[05:01:34] [HttpClient@594953162-2746/INFO]: Websocket Connected.
[05:01:34] [Server thread/INFO]: Starting UUID caching
[05:01:34] [Craft Scheduler Thread - 19/INFO]: [BuycraftX] Fetching all due players...
[05:01:34] [Craft Scheduler Thread - 22/INFO]: [ PLOT ] Starting player data caching for: world
[05:01:34] [Craft Scheduler Thread - 22/INFO]: Fast mode UUID caching enabled!
[05:01:34] [Dispatch Handler/INFO]: Connected to Discord Gateway v6. Receiving 1 guilds.
[05:01:34] [Craft Scheduler Thread - 19/INFO]: [BuycraftX] Fetched due players (7 found).
[05:01:34] [Craft Scheduler Thread - 22/INFO]: [ PLOT ] Cached a total of: 5247 UUIDs
[05:01:34] [Craft Scheduler Thread - 22/INFO]: Failed to cache: 8 uuids - slowly processing all files
[05:01:34] [Craft Scheduler Thread - 22/INFO]: [ PLOT ] Cached a total of: 5275 UUIDs
[05:02:03] [Server thread/INFO]: CONSOLE issued server command: /list 
[05:02:03] [Server thread/INFO]: [List] There are 0 out of maximum 250 players online.
[05:02:32] [Craft Scheduler Thread - 22/INFO]: [BuycraftX] Updating coupon list...
[05:02:43] [Server thread/INFO]: CONSOLE issued server command: /list 
[05:02:43] [Server thread/INFO]: [List] There are 0 out of maximum 250 players online.