Paste #111401: With latest Dev build of Citizens

Date: 2023/06/19 17:13:44 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[17:07:59] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[17:08:00] [ServerMain/INFO]: Loaded 7 recipes
[17:08:01] [Server thread/INFO]: Starting minecraft server version 1.20.1
[17:08:01] [Server thread/INFO]: Loading properties
[17:08:01] [Server thread/INFO]: This server is running CraftBukkit version 3810-Spigot-c62f4bd-b6b514b (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT)
[17:08:01] [Server thread/INFO]: Debug logging is disabled
[17:08:01] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:08:01] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:08:01] [Server thread/INFO]: Default game type: SURVIVAL
[17:08:01] [Server thread/INFO]: Generating keypair
[17:08:01] [Server thread/INFO]: Starting Minecraft server on 45.137.246.92:26425
[17:08:01] [Server thread/INFO]: Using epoll channel type
[17:08:02] [Server thread/ERROR]: Ambiguous plugin name `pvparena' for files `plugins/pvparena-1.15.3.jar' and `plugins/pvparena-1.15.2.jar' in `plugins'
[17:08:02] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[17:08:05] [Server thread/WARN]: Legacy plugin JoinRespawn v1.0 does not specify an api-version.
[17:08:05] [Server thread/INFO]: [Denizen] Loading 2 libraries... please wait
[17:08:05] [Server thread/INFO]: [Denizen] Loaded library /home/sid_553778/minecraft_spigot/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[17:08:05] [Server thread/INFO]: [Denizen] Loaded library /home/sid_553778/minecraft_spigot/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[17:08:05] [Server thread/INFO]: [Denizen] Loaded library /home/sid_553778/minecraft_spigot/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[17:08:05] [Server thread/INFO]: [Denizen] Loaded library /home/sid_553778/minecraft_spigot/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[17:08:05] [Server thread/INFO]: [Denizen] Loaded library /home/sid_553778/minecraft_spigot/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[17:08:05] [Server thread/INFO]: [Denizen] Loaded library /home/sid_553778/minecraft_spigot/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[17:08:05] [Server thread/INFO]: [Denizen] Loaded library /home/sid_553778/minecraft_spigot/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[17:08:05] [Server thread/INFO]: [Denizen] Loaded library /home/sid_553778/minecraft_spigot/libraries/org/json/json/20220320/json-20220320.jar
[17:08:05] [Server thread/INFO]: [Denizen] Loaded library /home/sid_553778/minecraft_spigot/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[17:08:05] [Server thread/INFO]: [AltDetector] Loading AltDetector v2.02
[17:08:05] [Server thread/INFO]: [STN-Studios-API] Loading STN-Studios-API vv5.0.0-alpha.9-MODIFIED
[17:08:05] [Server thread/INFO]: [JoinRespawn] Loading JoinRespawn v1.0
[17:08:05] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.3-SNAPSHOT-b257
[17:08:05] [Server thread/INFO]: [InventoryRollback] Loading InventoryRollback v1.4.0
[17:08:05] [Server thread/INFO]: [TreasureHunt] Loading TreasureHunt v1.0-SNAPSHOT
[17:08:05] [Server thread/INFO]: [PlayerReport] Loading PlayerReport v3.4.3
[17:08:05] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.7.0
[17:08:06] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0 is now loaded. Registering protocol transformers and injecting...
[17:08:06] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[17:08:06] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[17:08:06] [Server thread/INFO]: [ViaBackwards] Loading translations...
[17:08:06] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[17:08:06] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.2-SNAPSHOT (b88-2278589)
[17:08:07] [Server thread/INFO]: [floodgate] Took 482ms to boot Floodgate
[17:08:07] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[17:08:07] [Server thread/INFO]: [UltraPermissions] Loading UltraPermissions v5.4.8
[17:08:07] [Server thread/INFO]: [CommandButtons] Loading CommandButtons v5.2.0
[17:08:07] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.7.0
[17:08:07] [Server thread/INFO]: [PlayerPlot] Loading PlayerPlot v1.20.0
[17:08:07] [Server thread/INFO]: [LightAPI] Loading LightAPI vbukkit-5.3.0 (build SNAPSHOT)
[17:08:07] [Server thread/INFO]: <LightAPI>: [INFO] Preparing LightAPI...
[17:08:07] [Server thread/INFO]: <LightAPI>: [INFO] Preparing done!
[17:08:07] [Server thread/INFO]: [ViaRewind] Loading ViaRewind v2.0.2
[17:08:07] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.15+6463-5ca4dff
[17:08:07] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4a06c09d]
[17:08:07] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.0-dev+27-768701d
[17:08:07] [Server thread/INFO]: [LoneLibs] Loading LoneLibs v1.0.25
[17:08:07] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.9-beta1+2249-223b80c
[17:08:07] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[17:08:07] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b612
[17:08:07] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.20.1) has not yet been tested! Proceed with caution.
[17:08:08] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.32-SNAPSHOT (build 3135)
[17:08:08] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.2
[17:08:08] [Server thread/INFO]: [EssentialsProtect] Loading EssentialsProtect v2.20.0-dev+27-768701d
[17:08:08] [Server thread/INFO]: [Multiverse-Inventories] Loading Multiverse-Inventories v4.2.3-b523
[17:08:08] [Server thread/INFO]: [sleep-most] Loading sleep-most v5.3.0
[17:08:08] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.20.0-dev+27-768701d
[17:08:08] [Server thread/INFO]: [AFKPlus] Loading AFKPlus v3.4.1
[17:08:08] [Server thread/INFO]: [EssentialsAntiBuild] Loading EssentialsAntiBuild v2.20.0-dev+27-768701d
[17:08:08] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser-Spigot v2.1.1-SNAPSHOT
[17:08:08] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[17:08:08] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[17:08:08] [Server thread/INFO]: [Multiverse-Portals] Loading Multiverse-Portals v4.2.1-b834
[17:08:08] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.0-dev+27-768701d
[17:08:08] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.3
[17:08:08] [Server thread/INFO]: [Denizen] Loading Denizen v1.2.7-SNAPSHOT (build 1793-REL)
[17:08:08] [Server thread/INFO]: [OreAnnouncer] Loading OreAnnouncer v2.8.4
[17:08:08] [Server thread/INFO]: [OreAnnouncer] Loading libraries of OreAnnouncer v2.8.4, this may take a while
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jar-relocator
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm-commons
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for gson
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-core
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for geantyref
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for caffeine
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-stringtemplate4
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for ST4
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for antlr-runtime
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-sqlobject
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-api
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-simple
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for HikariCP
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mariadb-java-client
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mysql-connector-j
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for postgresql
[17:08:09] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for h2
[17:08:09] [Server thread/INFO]: [AdvancedRegionMarket] Loading AdvancedRegionMarket v3.4.3
[17:08:09] [Server thread/INFO]: [DtlPlayershops] Loading DtlPlayershops v1.1.19
[17:08:09] [Server thread/INFO]: [dtlTradersPlus] Loading dtlTradersPlus v6.4.19
[17:08:09] [Server thread/INFO]: [PVP Arena] Loading pvparena v1.15.3
[17:08:09] [Server thread/INFO]: [SimplePets] Loading SimplePets v5.0-BUILD-209
[17:08:09] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.18.1
[17:08:09] [Server thread/INFO]: [ItemsAdder] Loading ItemsAdder v3.5.0
[17:08:09] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[17:08:09] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.20.0-dev+27-768701d which is not a depend or softdepend of this plugin.
[17:08:09] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[17:08:09] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:08:09] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[17:08:09] [Server thread/INFO]: [UltraPermissions] Enabling UltraPermissions v5.4.8
[17:08:09] [Server thread/INFO]: [UltraPermissions] Loading Plugin...
[17:08:10] [Server thread/INFO]: [UltraPermissions] Hooked into Vault
[17:08:10] [Server thread/INFO]: [UltraPermissions] Successfully loaded in 585 ms
[17:08:10] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v2.0.2
[17:08:10] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.15+6463-5ca4dff
[17:08:10] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:08:10] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[17:08:10] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R1.PaperweightAdapter as the Bukkit adapter
[17:08:11] [Server thread/INFO]: [WorldEdit] ====================================================
[17:08:11] [Server thread/INFO]: [WorldEdit]  WorldEdit works better if you use Paper 
[17:08:11] [Server thread/INFO]: [WorldEdit]  as your server software. 
[17:08:11] [Server thread/INFO]: [WorldEdit]   
[17:08:11] [Server thread/INFO]: [WorldEdit]  Paper offers significant performance improvements,
[17:08:11] [Server thread/INFO]: [WorldEdit]  bug fixes, security enhancements and optional
[17:08:11] [Server thread/INFO]: [WorldEdit]  features for server owners to enhance their server.
[17:08:11] [Server thread/INFO]: [WorldEdit]   
[17:08:11] [Server thread/INFO]: [WorldEdit]  Paper includes Timings v2, which is significantly
[17:08:11] [Server thread/INFO]: [WorldEdit]  better at diagnosing lag problems over v1.
[17:08:11] [Server thread/INFO]: [WorldEdit]   
[17:08:11] [Server thread/INFO]: [WorldEdit]  All of your plugins should still work, and the
[17:08:11] [Server thread/INFO]: [WorldEdit]  Paper community will gladly help you fix any issues.
[17:08:11] [Server thread/INFO]: [WorldEdit]   
[17:08:11] [Server thread/INFO]: [WorldEdit]  Join the Paper Community @ https://papermc.io
[17:08:11] [Server thread/INFO]: [WorldEdit] ====================================================
[17:08:11] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.25
[17:08:11] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b612
[17:08:11] [Server thread/INFO]: Preparing level "NovaRockafellerland69"
[17:08:11] [Server thread/INFO]: -------- World Settings For [NovaRockafellerland69] --------
[17:08:11] [Server thread/INFO]: Item Merge Radius: 2.5
[17:08:11] [Server thread/INFO]: Item Despawn Rate: 6000
[17:08:11] [Server thread/INFO]: View Distance: 10
[17:08:11] [Server thread/INFO]: Simulation Distance: 10
[17:08:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[17:08:11] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[17:08:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[17:08:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[17:08:11] [Server thread/INFO]: Mob Spawn Range: 6
[17:08:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[17:08:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[17:08:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[17:08:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[17:08:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[17:08:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Carrot Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Potato Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Vine Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Kelp Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[17:08:11] [Server thread/INFO]: Max TNT Explosions: 100
[17:08:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[17:08:12] [Server thread/INFO]: -------- World Settings For [NovaRockafellerland69_nether] --------
[17:08:12] [Server thread/INFO]: Item Merge Radius: 2.5
[17:08:12] [Server thread/INFO]: Item Despawn Rate: 6000
[17:08:12] [Server thread/INFO]: View Distance: 10
[17:08:12] [Server thread/INFO]: Simulation Distance: 10
[17:08:12] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[17:08:12] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[17:08:12] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[17:08:12] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[17:08:12] [Server thread/INFO]: Mob Spawn Range: 6
[17:08:12] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[17:08:12] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[17:08:12] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[17:08:12] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[17:08:12] [Server thread/INFO]: Experience Merge Radius: 3.0
[17:08:12] [Server thread/INFO]: Cactus Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Cane Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Melon Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Sapling Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Carrot Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Potato Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Wheat Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Vine Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Kelp Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Max TNT Explosions: 100
[17:08:12] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[17:08:12] [Server thread/INFO]: -------- World Settings For [NovaRockafellerland69_the_end] --------
[17:08:12] [Server thread/INFO]: Item Merge Radius: 2.5
[17:08:12] [Server thread/INFO]: Item Despawn Rate: 6000
[17:08:12] [Server thread/INFO]: View Distance: 10
[17:08:12] [Server thread/INFO]: Simulation Distance: 10
[17:08:12] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[17:08:12] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[17:08:12] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[17:08:12] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[17:08:12] [Server thread/INFO]: Mob Spawn Range: 6
[17:08:12] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[17:08:12] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[17:08:12] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[17:08:12] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[17:08:12] [Server thread/INFO]: Experience Merge Radius: 3.0
[17:08:12] [Server thread/INFO]: Cactus Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Cane Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Melon Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Sapling Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Carrot Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Potato Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Wheat Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Vine Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Kelp Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[17:08:12] [Server thread/INFO]: Max TNT Explosions: 100
[17:08:12] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[17:08:12] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[17:08:14] [Worker-Main-61/INFO]: Preparing spawn area: 0%
[17:08:14] [Worker-Main-35/INFO]: Preparing spawn area: 0%
[17:08:14] [Worker-Main-50/INFO]: Preparing spawn area: 0%
[17:08:14] [Worker-Main-49/INFO]: Preparing spawn area: 0%
[17:08:14] [Worker-Main-50/INFO]: Preparing spawn area: 0%
[17:08:14] [Worker-Main-17/INFO]: Preparing spawn area: 0%
[17:08:15] [Worker-Main-35/INFO]: Preparing spawn area: 0%
[17:08:15] [Worker-Main-22/INFO]: Preparing spawn area: 26%
[17:08:16] [Worker-Main-35/INFO]: Preparing spawn area: 85%
[17:08:16] [Worker-Main-44/INFO]: Preparing spawn area: 100%
[17:08:16] [Server thread/INFO]: Time elapsed: 4704 ms
[17:08:17] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[17:08:18] [Worker-Main-25/INFO]: Preparing spawn area: 0%
[17:08:18] [Worker-Main-25/INFO]: Preparing spawn area: 0%
[17:08:18] [Worker-Main-25/INFO]: Preparing spawn area: 0%
[17:08:18] [Worker-Main-22/INFO]: Preparing spawn area: 0%
[17:08:19] [Worker-Main-45/INFO]: Preparing spawn area: 0%
[17:08:19] [Worker-Main-11/INFO]: Preparing spawn area: 73%
[17:08:19] [Server thread/INFO]: Time elapsed: 2689 ms
[17:08:19] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[17:08:20] [Worker-Main-24/INFO]: Preparing spawn area: 0%
[17:08:20] [Worker-Main-31/INFO]: Preparing spawn area: 0%
[17:08:20] [Worker-Main-50/INFO]: Preparing spawn area: 1%
[17:08:21] [Worker-Main-42/INFO]: Preparing spawn area: 83%
[17:08:21] [Server thread/INFO]: Time elapsed: 1624 ms
[17:08:21] [Server thread/INFO]: [AltDetector] Enabling AltDetector v2.02
[17:08:21] [Server thread/INFO]: HikariPool-1 - Starting...
[17:08:21] [Server thread/INFO]: HikariPool-1 - Start completed.
[17:08:21] [Server thread/INFO]: [AltDetector] Using SQLite database, version 3.42.0, driver version 3.42.0.0
[17:08:21] [Server thread/INFO]: [AltDetector] 0 records removed, expiration time 60 days.
[17:08:21] [Server thread/INFO]: [AltDetector] Metrics enabled if allowed by plugins/bStats/config.yml
[17:08:21] [Server thread/INFO]: [STN-Studios-API] Enabling STN-Studios-API vv5.0.0-alpha.9-MODIFIED
[17:08:21] [Server thread/INFO]: 
[17:08:21] [Server thread/INFO]: [STN Studios API]      _    ____ ___
[17:08:21] [Server thread/INFO]: [STN Studios API]     / \  |  _ \_ _|
[17:08:21] [Server thread/INFO]: [STN Studios API]    / _ \ | |_) | |
[17:08:21] [Server thread/INFO]: [STN Studios API]   / ___ \|  __/| |
[17:08:21] [Server thread/INFO]: [STN Studios API]  /_/   \_\_|  |___|
[17:08:21] [Server thread/INFO]: [STN Studios API] 
[17:08:21] [Server thread/INFO]: [STN Studios API] Running on 3810-Spigot-c62f4bd-b6b514b (MC: 1.20.1)
[17:08:21] [Server thread/INFO]: [STN Studios API] Version: v5.0.0-alpha.9-MODIFIED
[17:08:21] [Server thread/INFO]: [STN Studios API] 
[17:08:21] [Server thread/INFO]: 
[17:08:21] [Server thread/WARN]: [STN-Studios-API] Loaded class org.slf4j.impl.StaticLoggerBinder from DiscordSRV v1.26.2 which is not a depend or softdepend of this plugin.
[17:08:21] [Server thread/INFO]: [STN Studios API] Your token is incorrect!
[17:08:21] [Server thread/INFO]: [JoinRespawn] Enabling JoinRespawn v1.0
[17:08:21] [Server thread/INFO]: [JoinRespawn] Enabled Successfully
[17:08:21] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.3-SNAPSHOT-b257
[17:08:21] [Server thread/INFO]: [InventoryRollback] Enabling InventoryRollback v1.4.0
[17:08:21] [Server thread/WARN]:  ** WARNING... Plugin may not be compatible with this version of Minecraft. **
[17:08:21] [Server thread/WARN]:  ** Tested versions: 1.8.8 to 1.16.3 **
[17:08:21] [Server thread/WARN]:  ** Please fully test the plugin before using on your server as features may be broken. **
[17:08:21] [Server thread/INFO]: Checking for updates...
[17:08:21] [Server thread/INFO]: You are running the latest version.
[17:08:21] [Server thread/INFO]: [TreasureHunt] Enabling TreasureHunt v1.0-SNAPSHOT
[17:08:21] [Server thread/INFO]: [PlayerReport] Enabling PlayerReport v3.4.3
[17:08:21] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0
[17:08:21] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20 (763)
[17:08:21] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b88-2278589)
[17:08:22] [Server thread/INFO]: [CommandButtons] Enabling CommandButtons v5.2.0
[17:08:22] [Server thread/INFO]: 
[17:08:22] [Server thread/INFO]: 
[17:08:22] [Server thread/INFO]: ___________________ 
[17:08:22] [Server thread/INFO]: \_   ___ \______   \
[17:08:22] [Server thread/INFO]: /    \  \/|    |  _/
[17:08:22] [Server thread/INFO]: \     \___|    |   \
[17:08:22] [Server thread/INFO]:  \______  |______  /
[17:08:22] [Server thread/INFO]:         \/       \/ 
[17:08:22] [Server thread/INFO]: 
[17:08:22] [Server thread/INFO]: [CommandButtons] Loading configuration files...
[17:08:22] [Server thread/INFO]: *-----------------------------------------------------*
[17:08:22] [Server thread/INFO]: An internal error has occurred in CommandButtons.
[17:08:22] [Server thread/INFO]: Description: Outdated messages.yml file.
[17:08:22] [Server thread/INFO]: Contact the plugin author if you cannot fix this issue.
[17:08:22] [Server thread/INFO]: *-----------------------------------------------------*
[17:08:22] [Server thread/INFO]: [CommandButtons] Disabling CommandButtons v5.2.0
[17:08:22] [Server thread/INFO]: CommandButtons v5.2.0 by Demeng has been disabled.
[17:08:22] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.7.0
[17:08:22] [Server thread/INFO]: [PlayerPlot] Enabling PlayerPlot v1.20.0
[17:08:22] [Server thread/INFO]: [LightAPI] Enabling LightAPI vbukkit-5.3.0 (build SNAPSHOT)
[17:08:22] [Server thread/INFO]: <LightAPI>: [INFO] Initializing LightAPI...
[17:08:22] [Server thread/WARN]: java.lang.ClassNotFoundException: ru.beykerykt.minecraft.lightapi.bukkit.internal.handler.craftbukkit.nms.v1_20_R1.VanillaNMSHandler
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:147)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:99)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(Unknown Source)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Unknown Source)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Unknown Source)
[17:08:22] [Server thread/WARN]:     at ru.beykerykt.minecraft.lightapi.bukkit.internal.handler.craftbukkit.HandlerFactory.createHandler(HandlerFactory.java:71)
[17:08:22] [Server thread/WARN]:     at ru.beykerykt.minecraft.lightapi.bukkit.internal.BukkitPlatformImpl.initHandler(BukkitPlatformImpl.java:196)
[17:08:22] [Server thread/WARN]:     at ru.beykerykt.minecraft.lightapi.bukkit.internal.BukkitPlatformImpl.initialization(BukkitPlatformImpl.java:228)
[17:08:22] [Server thread/WARN]:     at ru.beykerykt.minecraft.lightapi.common.LightAPI.initialization(LightAPI.java:88)
[17:08:22] [Server thread/WARN]:     at ru.beykerykt.minecraft.lightapi.bukkit.BukkitPlugin.onEnable(BukkitPlugin.java:70)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[17:08:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:540)
[17:08:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:454)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:973)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[17:08:22] [Server thread/WARN]: java.lang.IllegalStateException: Initialization failed! Code: -1
[17:08:22] [Server thread/WARN]:     at ru.beykerykt.minecraft.lightapi.common.LightAPI.initialization(LightAPI.java:96)
[17:08:22] [Server thread/WARN]:     at ru.beykerykt.minecraft.lightapi.bukkit.BukkitPlugin.onEnable(BukkitPlugin.java:70)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[17:08:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:540)
[17:08:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:454)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:973)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[17:08:22] [Server thread/INFO]: [LightAPI] Disabling LightAPI vbukkit-5.3.0 (build SNAPSHOT)
[17:08:22] [Server thread/INFO]: <LightAPI>: [INFO] Shutdown LightAPI...
[17:08:22] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+27-768701d
[17:08:22] [Server thread/ERROR]: You are running an unsupported server version!
[17:08:22] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[17:08:22] [Server thread/INFO]: No kits found to migrate.
[17:08:22] [Server thread/WARN]: java.lang.NoSuchMethodException: no such method: net.minecraft.server.MinecraftServer.u()boolean/invokeVirtual
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName.makeAccessException(Unknown Source)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolveOrFail(Unknown Source)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandles$Lookup.resolveOrFail(Unknown Source)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandles$Lookup.findVirtual(Unknown Source)
[17:08:22] [Server thread/WARN]:     at net.ess3.nms.refl.providers.ReflServerStateProvider.<init>(ReflServerStateProvider.java:30)
[17:08:22] [Server thread/WARN]:     at com.earth2me.essentials.Essentials.onEnable(Essentials.java:390)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[17:08:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[17:08:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:540)
[17:08:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:454)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:973)
[17:08:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[17:08:22] [Server thread/WARN]: Caused by: java.lang.NoSuchMethodError: 'boolean net.minecraft.server.MinecraftServer.u()'
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandleNatives.resolve(Native Method)
[17:08:22] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolve(Unknown Source)
[17:08:22] [Server thread/WARN]:     ... 16 more
[17:08:22] [Server thread/INFO]: Loaded 36926 items from items.json.
[17:08:22] [Server thread/INFO]: Using locale en_US
[17:08:22] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[17:08:22] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[17:08:22] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[17:08:22] [Server thread/INFO]: Using Vault based permissions (generic)
[17:08:22] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9-beta1+2249-223b80c
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69) TNT ignition is PERMITTED.
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69) Lighters are PERMITTED.
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69) Lava fire is blocked.
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69) All fire spread is disabled.
[17:08:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'NovaRockafellerland69'
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69_nether) TNT ignition is PERMITTED.
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69_nether) Lighters are PERMITTED.
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69_nether) Lava fire is blocked.
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69_nether) All fire spread is disabled.
[17:08:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'NovaRockafellerland69_nether'
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69_the_end) TNT ignition is PERMITTED.
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69_the_end) Lighters are PERMITTED.
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69_the_end) Lava fire is blocked.
[17:08:22] [Server thread/INFO]: [WorldGuard] (NovaRockafellerland69_the_end) All fire spread is disabled.
[17:08:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'NovaRockafellerland69_the_end'
[17:08:22] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:08:23] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[17:08:23] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[17:08:23] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[17:08:23] [Server thread/INFO]: -------- World Settings For [Creative] --------
[17:08:23] [Server thread/INFO]: Item Merge Radius: 2.5
[17:08:23] [Server thread/INFO]: Item Despawn Rate: 6000
[17:08:23] [Server thread/INFO]: View Distance: 10
[17:08:23] [Server thread/INFO]: Simulation Distance: 10
[17:08:23] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[17:08:23] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[17:08:23] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[17:08:23] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[17:08:23] [Server thread/INFO]: Mob Spawn Range: 6
[17:08:23] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[17:08:23] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[17:08:23] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[17:08:23] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[17:08:23] [Server thread/INFO]: Experience Merge Radius: 3.0
[17:08:23] [Server thread/INFO]: Cactus Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Cane Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Melon Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Sapling Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Carrot Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Potato Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Wheat Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Vine Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Kelp Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[17:08:23] [Server thread/INFO]: Max TNT Explosions: 100
[17:08:23] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[17:08:23] [Server thread/INFO]: Preparing start region for dimension minecraft:creative
[17:08:24] [Worker-Main-26/INFO]: Preparing spawn area: 0%
[17:08:24] [Worker-Main-43/INFO]: Preparing spawn area: 0%
[17:08:24] [Worker-Main-24/INFO]: Preparing spawn area: 0%
[17:08:24] [Worker-Main-56/INFO]: Preparing spawn area: 37%
[17:08:25] [Server thread/INFO]: Time elapsed: 1962 ms
[17:08:25] [Server thread/INFO]: [WorldGuard] (Creative) TNT ignition is PERMITTED.
[17:08:25] [Server thread/INFO]: [WorldGuard] (Creative) Lighters are PERMITTED.
[17:08:25] [Server thread/INFO]: [WorldGuard] (Creative) Lava fire is blocked.
[17:08:25] [Server thread/INFO]: [WorldGuard] (Creative) All fire spread is disabled.
[17:08:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Creative'
[17:08:25] [Server thread/INFO]: -------- World Settings For [creativeworld] --------
[17:08:25] [Server thread/INFO]: Item Merge Radius: 2.5
[17:08:25] [Server thread/INFO]: Item Despawn Rate: 6000
[17:08:25] [Server thread/INFO]: View Distance: 10
[17:08:25] [Server thread/INFO]: Simulation Distance: 10
[17:08:25] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[17:08:25] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[17:08:25] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[17:08:25] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[17:08:25] [Server thread/INFO]: Mob Spawn Range: 6
[17:08:25] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[17:08:25] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[17:08:25] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[17:08:25] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[17:08:25] [Server thread/INFO]: Experience Merge Radius: 3.0
[17:08:25] [Server thread/INFO]: Cactus Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Cane Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Melon Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Sapling Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Carrot Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Potato Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Wheat Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Vine Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Kelp Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[17:08:25] [Server thread/INFO]: Max TNT Explosions: 100
[17:08:25] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[17:08:25] [Server thread/INFO]: Preparing start region for dimension minecraft:creativeworld
[17:08:26] [Worker-Main-6/INFO]: Preparing spawn area: 0%
[17:08:26] [Worker-Main-6/INFO]: Preparing spawn area: 0%
[17:08:26] [Worker-Main-60/INFO]: Preparing spawn area: 0%
[17:08:26] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[17:08:27] [Worker-Main-45/INFO]: Preparing spawn area: 0%
[17:08:27] [Worker-Main-6/INFO]: Preparing spawn area: 35%
[17:08:28] [Server thread/INFO]: Time elapsed: 2876 ms
[17:08:28] [Server thread/INFO]: [WorldGuard] (creativeworld) TNT ignition is PERMITTED.
[17:08:28] [Server thread/INFO]: [WorldGuard] (creativeworld) Lighters are PERMITTED.
[17:08:28] [Server thread/INFO]: [WorldGuard] (creativeworld) Lava fire is blocked.
[17:08:28] [Server thread/INFO]: [WorldGuard] (creativeworld) All fire spread is disabled.
[17:08:28] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'creativeworld'
[17:08:28] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[17:08:28] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[17:08:28] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[17:08:28] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3135)
[17:08:28] [Server thread/INFO]: [Citizens] Loading external libraries
[17:08:28] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[17:08:28] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[17:08:28] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.20.0-dev+27-768701d
[17:08:28] [Server thread/INFO]: Continuing to enable Protect.
[17:08:28] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[17:08:28] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.3-b523
[17:08:28] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'default' are not loaded: nova rockafellerland 69_the_end, nova rockafellerland 69_nether, nova rockafellerland 69
[17:08:28] [Server thread/INFO]: [Multiverse-Inventories 4.2.3-b523] enabled.
[17:08:28] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.3.0
[17:08:28] [Server thread/INFO]: Hooked to Essentials
[17:08:28] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+27-768701d
[17:08:28] [Server thread/INFO]: Secure signed chat and previews are enabled.
[17:08:28] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[17:08:28] [Server thread/INFO]: [AFKPlus] Enabling AFKPlus v3.4.1
[17:08:28] [Server thread/INFO]: [AFKPlus] AFKPlus v.3.4.1 has been enabled!
[17:08:28] [Server thread/INFO]: [EssentialsAntiBuild] Enabling EssentialsAntiBuild v2.20.0-dev+27-768701d
[17:08:28] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[17:08:28] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.1.1-SNAPSHOT
[17:08:28] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
[17:08:28] [Server thread/INFO]: [Multiverse-Portals] 8 - Portals(s) loaded
[17:08:28] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[17:08:28] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
[17:08:28] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+27-768701d
[17:08:28] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[17:08:28] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[17:08:29] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[17:08:29] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[17:08:29] [Server thread/INFO]: --------------------
[17:08:29] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[17:08:29] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[17:08:29] [Server thread/INFO]: --------------------
[17:08:29] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.7-SNAPSHOT (build 1793-REL)
[17:08:29] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1346), impl for Spigot v1.2.7-SNAPSHOT (build 1793-REL) 
[17:08:29] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[17:08:29] [JDA MainWS-WriteThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[17:08:29] [Server thread/INFO]: +> [Denizen] Running on java version: 19.0.2 
[17:08:29] [Server thread/WARN]: [Denizen] Running unreliable future Java version. modern Minecraft versions are built for Java 17. Other Java versions are not guaranteed to function properly.
[17:08:29] [Server thread/WARN]: [Denizen] -------------------------------------
[17:08:29] [Server thread/WARN]: [Denizen] This build of Denizen is not compatible with this Spigot version! Deactivating Denizen!
[17:08:29] [Server thread/WARN]: [Denizen] -------------------------------------
[17:08:29] [Server thread/INFO]: [Denizen] Disabling Denizen v1.2.7-SNAPSHOT (build 1793-REL)
[17:08:29] [Server thread/INFO]: [OreAnnouncer] Enabling OreAnnouncer v2.8.4
[17:08:29] [Server thread/INFO]: [OreAnnouncer] Initializing OreAnnouncer v2.8.4
[17:08:29] [pool-57-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[17:08:30] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[17:08:30] [Server thread/INFO]: [OreAnnouncer] Hooked into DiscordSRV
[17:08:30] [Server thread/INFO]: [OreAnnouncer] Hooked into EssentialsChat
[17:08:30] [Server thread/INFO]: [OreAnnouncer] OreAnnouncer v2.8.4 enabled
[17:08:30] [Server thread/INFO]: [AdvancedRegionMarket] Enabling AdvancedRegionMarket v3.4.3
[17:08:30] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldGuard7 adapter
[17:08:30] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldEdit7 adapter
[17:08:30] [Server thread/INFO]: [AdvancedRegionMarket] Using MC 1.14 sign adapter
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Gang Gang(835733013069037569)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐸staff-room🐸(907352397439963167)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcements(937572718499495997)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rules(836037741052559371)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👋|start-here(937575101275185172)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👋|room-list(898407741352202240)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🦄admin-chat🦄(836701767952760853)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mc-admin-chat(1012427152987271229)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mod-chat-important(835914711634804736)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mod-chat(836080855415390208)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mc-staff-chat(904444925758824459)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mod-guide(836339421381001228)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:twitch-mods(901691182554435584)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mod-commands(855533664888029194)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:developer-chat(1076029571570335764)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:twitch-info-for-nova(1016485456789119057)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-etiquette(992049385875714119)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:welcome(836033750706028586)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬|general-chat(835733016381882400)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎮|gaming(937558058668806184)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖|friend-bot-5000(1087150459724238868)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔗|links(937537809466683402)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧡|motivate-me(1111145901059211306)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🙃|mental-health(835781945052626944)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✍|poetry-and-writing(835959058610782228)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧶|hobbies-and-art(837205494594404393)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖|ai-creations(1065410897591423006)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📚|join-book-club(1051300057799983194)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📘|book-club-chat(1045539168387874846)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🟩|join-mc(900880935132729364)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🟨|announcements-mc(953196193213714512)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🟦|minecraft-chat(900827602044989532)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🟧|in-game-chat(899834716012834886)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🟥|message-mc-staff(1040338153673854996)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🟦|build-locations(1066785473634246768)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mc-console(975105592681197628)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✅|get-notifications(947595073028239441)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:check-your-level(879491516828119062)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suicide-hotlines(836042317949173760)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:discord-help(836732742938132530)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:game-night(1112813993178976306)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:game-night-chat(1112879669960790127)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:game-night-info(1112794878867406858)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『mod-logs』(836720893614358569)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:leave-log(879487163371245589)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:audit-log-mee6(836068776851406919)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:message-logs(836702677240774667)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-logs(836702695096188928)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:user-logs(836702722526412801)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-log(906989790824640512)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔫|fortnite(1036030192751214682)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📸pictures(835932263287095326)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:😂memes(835769614944174090)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐕animal-shelter(907520935672840243)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🍔food-and-recipes(1037411532700667964)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🟩submissions(1006325955708604598)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:minecraft-bug-reports-arch(949442612018946078)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧟7d2d-apoc-now-server(1018648543059255316)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👻scary-stories(1032731881852121198)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:real-estate-request(901193603269926984)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:charity-stream-chat(1032731465273847868)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:guest-questions(1033456246143066263)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:costume-contest-pictures(1032731746652913767)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:tom-and-nova-questions(1033457522159403130)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:twitch-chat(899802447105650688)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:stream-requests(974719423346786344)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎨art-club-chat(1006649928505897090)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎨join-art-club(1006649823073681479)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:dear-nova(906986504499380316)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:mc-console(975105592681197628)
[17:08:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[17:08:30] [Server thread/INFO]: [AdvancedRegionMarket] Regions loaded!
[17:08:30] [Server thread/INFO]: [AdvancedRegionMarket] Programmed by Alex9849
[17:08:30] [Server thread/INFO]: [AdvancedRegionMarket] I'm always searching for better translations of AdvancedRegionMarket. If you've translated the plugin it would be very nice if you would send me your translation via spigot private message! :)
[17:08:30] [Server thread/INFO]: [DtlPlayershops] Enabling DtlPlayershops v1.1.19
[17:08:30] [Server thread/INFO]: dtlPlayershop > Welcome to DtlPlayershop!
[17:08:30] [Server thread/INFO]: dtlPlayershop > Found economy plugin: EssentialsX Economy
[17:08:30] [Server thread/INFO]: dtlPlayershop > Loaded in 1 permission packages!
[17:08:30] [Server thread/INFO]: dtlPlayershop > Loaded in 549 dtlPlayers!
[17:08:31] [Server thread/INFO]: dtlPlayershop > An error occurred while reading playershop config nova's shop.yml
[17:08:31] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "org.bukkit.configuration.ConfigurationSection.getConfigurationSection(String)" is null
[17:08:31] [Server thread/WARN]:     at com.degitise.minevid.dtlplayershops.e.c.a.a(PlayershopGUI.java:115)
[17:08:31] [Server thread/WARN]:     at com.degitise.minevid.dtlplayershops.e.a.c.a(PlayershopGUIListService.java:51)
[17:08:31] [Server thread/WARN]:     at com.degitise.minevid.dtlplayershops.e.a.c.<init>(PlayershopGUIListService.java:27)
[17:08:31] [Server thread/WARN]:     at com.degitise.minevid.dtlplayershops.Main.onEnable(Main.java:85)
[17:08:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[17:08:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[17:08:31] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[17:08:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:540)
[17:08:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:454)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:973)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[17:08:31] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[17:08:31] [Server thread/INFO]: dtlPlayershop > An error occurred while reading playershop config novasshoptest.yml
[17:08:31] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "org.bukkit.configuration.ConfigurationSection.getConfigurationSection(String)" is null
[17:08:31] [Server thread/WARN]:     at com.degitise.minevid.dtlplayershops.e.c.a.a(PlayershopGUI.java:115)
[17:08:31] [Server thread/WARN]:     at com.degitise.minevid.dtlplayershops.e.a.c.a(PlayershopGUIListService.java:51)
[17:08:31] [Server thread/WARN]:     at com.degitise.minevid.dtlplayershops.e.a.c.<init>(PlayershopGUIListService.java:27)
[17:08:31] [Server thread/WARN]:     at com.degitise.minevid.dtlplayershops.Main.onEnable(Main.java:85)
[17:08:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[17:08:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[17:08:31] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[17:08:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:540)
[17:08:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:454)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:973)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[17:08:31] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[17:08:31] [Server thread/INFO]: dtlPlayershop > Loaded in 62  playershops!
[17:08:31] [Server thread/INFO]: [DtlPlayershops] Hooking into Citizens!
[17:08:31] [Server thread/INFO]: [dtlTradersPlus] Enabling dtlTradersPlus v6.4.19
[17:08:31] [Server thread/INFO]: dtlTradersPlus> Welcome to dtlTradersPlus v6.4.19!
[17:08:31] [Server thread/INFO]: dtlTradersPlus> Trying to hook into any Vault supported plugin...
[17:08:31] [Server thread/INFO]: dtlTradersPlus> Vault found! Trying to hook...
[17:08:31] [Server thread/INFO]: dtlTradersPlus> Found economy plugin: EssentialsX Economy
[17:08:31] [Server thread/INFO]: dtlTradersPlus> Loaded 63 guis from the guis config!
[17:08:31] [Server thread/INFO]: dtlTradersPlus> Hooking into Citizens!
[17:08:31] [Server thread/INFO]: dtlTradersPlus> dtlTraders is managed by Degitise. www.degitise.com
[17:08:31] [Server thread/INFO]: [PVP Arena] Enabling pvparena v1.15.3
[17:08:31] [Server thread/INFO]: [PVP Arena] debugging: off
[17:08:31] [Server thread/ERROR]: [PVP Arena] pvparena caused an error while loading region pvparena
[17:08:31] [Server thread/WARN]: java.lang.IllegalArgumentException: World Nova Rockafellerland 69 not recognized. Is it loaded ?
[17:08:31] [Server thread/WARN]:     at net.slipcor.pvparena.core.Config.parseRegion(Config.java:951)
[17:08:31] [Server thread/WARN]:     at net.slipcor.pvparena.managers.ConfigurationManager.configParse(ConfigurationManager.java:222)
[17:08:31] [Server thread/WARN]:     at net.slipcor.pvparena.arena.Arena.<init>(Arena.java:121)
[17:08:31] [Server thread/WARN]:     at net.slipcor.pvparena.managers.ArenaManager.load_arenas(ArenaManager.java:311)
[17:08:31] [Server thread/WARN]:     at net.slipcor.pvparena.PVPArena.onEnable(PVPArena.java:394)
[17:08:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[17:08:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[17:08:31] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[17:08:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:540)
[17:08:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:454)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:973)
[17:08:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[17:08:31] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[17:08:31] [Server thread/INFO]: [PVP Arena] enabled (version pvparena v1.15.3)
[17:08:31] [Server thread/INFO]: [SimplePets] Enabling SimplePets v5.0-BUILD-209
[17:08:31] [Thread-31/INFO]: [PVP Arena] PVP Arena is up to date
[17:08:31] [Thread-32/INFO]: [PVP Arena] PVP Arena modules pack 1.15.3 is now available ! Your version: 1.15.1
[17:08:31] [Server thread/INFO]: [SimplePets Warning] Failed to register the 'shulker' pet (Missing 'EntityShulkerPet' class for your version) [Will not effect your server]
[17:08:32] [Server thread/INFO]: [SimplePets Debug] Initializing Menu Items...
[17:08:32] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Item Files...
[17:08:32] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[17:08:32] [Server thread/INFO]: [SimplePets Critical Error] Your server is using WorldGuard and the 'mobs.block-plugin-spawning' is set to true
[17:08:32] [Server thread/INFO]: [SimplePets Critical Error] This causes issues with the plugin not being able to spawn pets
[17:08:32] [Server thread/INFO]: [SimplePets Critical Error] Please set this to 'false' in the WorldGuard config so pets can spawn
[17:08:32] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[17:08:32] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:339) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:405) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:425) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:372) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:302) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:344) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:209) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:308) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:238) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:415) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:88) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:268) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:321) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:59) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:358) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:323) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:354) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:318) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:87) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:471) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:274) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:213) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:225) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:100) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:301) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:237) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:426) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:58) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:204) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:252) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:86) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:165) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:383) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:393) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:265) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:77) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:215) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:70) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:64) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:221) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:365) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:411) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:279) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:355) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:288) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:287) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:276) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:241) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:454) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:200) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:172) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:216) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:324) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:439) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:316) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:118) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:254) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:281) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:376) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:374) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:240) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:455) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:272) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:84) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:258) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:275) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:424) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:364) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:111) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:370) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:329) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:154) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:427) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:206) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:450) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:203) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:257) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:398) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:210) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:255) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:152) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:168) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:382) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:367) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:345) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:199) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:290) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:325) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:330) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:164) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:286) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:392) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:397) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:271) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:334) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:322) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:386) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:378) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:264) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:314) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:429) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:388) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:440) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:430) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:305) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:298) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:198) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:293) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:150) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:17) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:295) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:121) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:181) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:273) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:379) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:261) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:359) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:235) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:438) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:452) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:232) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:151) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:357) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:428) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:174) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:414) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:361) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:8) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:328) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:278) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:180) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:33) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:296) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:368) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:341) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:250) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:300) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:66) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:391) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:417) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:377) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:394) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:353) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:389) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:412) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:208) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:423) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:311) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:18) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:55) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:375) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:141) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:280) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:448) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:342) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:366) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:317) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:21) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:437) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:291) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:360) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:183) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:472) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:292) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:395) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:312) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:202) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:396) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:212) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:282) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:173) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:443) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:384) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:385) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:10) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:60) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:445) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:303) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:285) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:54) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:453) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:336) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:9) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:337) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:469) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:449) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:362) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:184) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:234) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:380) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:338) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:331) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:51) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:113) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:304) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:431) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:263) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:90) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:419) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:256) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:340) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:327) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:422) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:332) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:399) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:277) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:436) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:400) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:52) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:79) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:406) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:297) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:416) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:231) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:333) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:335) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:229) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:294) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:356) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:131) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:251) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:470) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:283) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:110) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:363) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:465) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:175) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:16) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:14) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:69) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:13) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:129) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:401) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:115) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:72) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:171) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:289) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:08:32] [Server thread/INFO]: [GriefPrevention] 257 total claims loaded.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[17:08:32] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[17:08:32] [Server thread/INFO]: [GriefPrevention] Boot finished.
[17:08:32] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.5.0
[17:08:32] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.5.0
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.25
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     CraftBukkit 3810-Spigot-c62f4bd-b6b514b (MC: 1.20.1)
                                               
[17:08:32] [Server thread/ERROR]: [ItemsAdder] Error while hooking into Denizen
[17:08:32] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/denizenscript/denizen/objects/ItemTag
[17:08:32] [Server thread/WARN]:     at dev.lone.itemsadder.Core.OtherPlugins.Denizen.DenizenHook.hook(SourceFile:22)
[17:08:32] [Server thread/WARN]:     at dev.lone.itemsadder.Main.onEnable(SourceFile:426)
[17:08:32] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[17:08:32] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[17:08:32] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[17:08:32] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:540)
[17:08:32] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:454)
[17:08:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[17:08:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[17:08:32] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[17:08:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:973)
[17:08:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[17:08:32] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[17:08:32] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.objects.ItemTag
[17:08:32] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:147)
[17:08:32] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:99)
[17:08:32] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(Unknown Source)
[17:08:32] [Server thread/WARN]:     ... 13 more
[17:08:32] [Server thread/WARN]: [ItemsAdder] (Liquids disabled. If you want to use liquids enable them in config.yml please)
[17:08:32] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 26435
[17:08:33] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[17:08:33] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:08:33] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[17:08:33] [Server thread/INFO]: [Geyser-Spigot] 
[17:08:33] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.1.1-SNAPSHOT (git-master-bed7b5d)
[17:08:33] [Server thread/INFO]: [Geyser-Spigot] 
[17:08:33] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[17:08:35] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] Started Geyser on 45.137.246.92:26425
[17:08:35] [Server thread/INFO]: [Geyser-Spigot] Done (2.465s)! Run /geyser help for help!
[17:08:35] [Server thread/INFO]: Done (24.630s)! For help, type "help"
[17:08:35] [Server thread/INFO]: Starting GS4 status listener
[17:08:35] [Server thread/WARN]: Unable to initialise query system on 45.137.246.92:26425
java.net.BindException: Address already in use
    at sun.nio.ch.Net.bind0(Native Method) ~[?:?]
    at sun.nio.ch.Net.bind(Unknown Source) ~[?:?]
    at sun.nio.ch.DatagramChannelImpl.bindInternal(Unknown Source) ~[?:?]
    at sun.nio.ch.DatagramChannelImpl.bind(Unknown Source) ~[?:?]
    at sun.nio.ch.DatagramSocketAdaptor.bind(Unknown Source) ~[?:?]
    at java.net.DatagramSocket.createDelegate(Unknown Source) ~[?:?]
    at java.net.DatagramSocket.<init>(Unknown Source) ~[?:?]
    at java.net.DatagramSocket.<init>(Unknown Source) ~[?:?]
    at net.minecraft.server.rcon.thread.RemoteStatusListener.e(SourceFile:312) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3810-Spigot-c62f4bd-b6b514b]
    at net.minecraft.server.rcon.thread.RemoteStatusListener.a(SourceFile:288) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3810-Spigot-c62f4bd-b6b514b]
    at net.minecraft.server.rcon.thread.RemoteStatusListener.a(SourceFile:91) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3810-Spigot-c62f4bd-b6b514b]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:261) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3810-Spigot-c62f4bd-b6b514b]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:973) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3810-Spigot-c62f4bd-b6b514b]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3810-Spigot-c62f4bd-b6b514b]
    at java.lang.Thread.run(Unknown Source) ~[?:?]
[17:08:35] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[17:08:35] [Craft Scheduler Thread - 4/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[17:08:35] [Craft Scheduler Thread - 5/INFO]: Fetching version information...
[17:08:35] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[17:08:35] [Craft Scheduler Thread - 7/INFO]: [AFKPlus] AFKPlus file watcher started!
[17:08:35] [Server thread/INFO]: [SimplePets Debug] Found support for version(s): [1.20.1]
[17:08:35] [Server thread/INFO]: [SimplePets Debug] Targeting version: 1.20.1
[17:08:35] [Server thread/INFO]: [SimplePets Debug] Initializing Inventories...
[17:08:35] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Inventories Files...
[17:08:35] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[17:08:35] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[17:08:35] [Craft Scheduler Thread - 9/INFO]: [ItemsAdder] [License] Spigot product licensed to: NovaRockafeller (1524032)
[17:08:35] [Craft Scheduler Thread - 10/INFO]: [ItemsAdder]  
[17:08:35] [Craft Scheduler Thread - 10/INFO]: [ItemsAdder] UPDATE available: https://www.spigotmc.org/resources/73355/
[17:08:35] [Craft Scheduler Thread - 10/INFO]: [ItemsAdder] Current version: 3.5.0 | Online version: 3.5.0-r2
[17:08:35] [Craft Scheduler Thread - 10/INFO]: [ItemsAdder]  
[17:08:35] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[17:08:36] [Craft Scheduler Thread - 6/INFO]: [AFKPlus] There is no update available
[17:08:36] [User Authenticator #1/INFO]: UUID of player BigHeadNov is 8700aa71-a974-454d-8be2-c48033c2bf1c
[17:08:36] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 161.
[17:08:36] [Server thread/ERROR]: [Citizens] The trait mirrorequipment failed to load for NPC ID: 163.
[17:08:36] [Server thread/ERROR]: [Citizens] The trait mirror failed to load for NPC ID: 163.
[17:08:36] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 169.
[17:08:36] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 181.
[17:08:36] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 190.
[17:08:36] [Server thread/ERROR]: [Citizens] The trait fishing failed to load for NPC ID: 194.
[17:08:36] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 208.
[17:08:37] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 268.
[17:08:37] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 270.
[17:08:38] [Server thread/INFO]: [Citizens] Loaded 156 NPCs.
[17:08:38] [Server thread/INFO]: [Multiverse-Inventories] First run!
[17:08:38] [Craft Scheduler Thread - 3/INFO]: [Vault] Checking for Updates ... 
[17:08:38] [Craft Scheduler Thread - 3/INFO]: [Vault] No new version available
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] Loaded 11 items
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] Used 2/188 REAL block IDs
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] Used 30/750 REAL_NOTE block IDs
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] Used 2/63 REAL_TRANSPARENT block IDs
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] Used 566/6608 font_images
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] [Init] Loaded 1 categories
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] [Init] Loaded successfully.
[17:08:38] [Craft Scheduler Thread - 6/INFO]: [ItemsAdder] [Pack] Checking resourcepack url... 
[17:08:38] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[17:08:38] [Craft Scheduler Thread - 5/WARN]: You're running an experimental build of EssentialsX that is 99 builds behind the latest dev build!
[17:08:38] [Craft Scheduler Thread - 5/WARN]: Feature Branch: HEAD.
[17:08:39] [Craft Scheduler Thread - 10/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://45.137.246.92:26435/generated.zip
[17:08:39] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs
[17:08:39] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 161.
[17:08:39] [Server thread/ERROR]: [Citizens] The trait mirrorequipment failed to load for NPC ID: 163.
[17:08:39] [Server thread/ERROR]: [Citizens] The trait mirror failed to load for NPC ID: 163.
[17:08:39] [Server thread/ERROR]: [Citizens] The trait sneaking failed to load for NPC ID: 169.
[17:08:39] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 181.
[17:08:39] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 190.
[17:08:39] [Server thread/ERROR]: [Citizens] The trait fishing failed to load for NPC ID: 194.
[17:08:39] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 208.
[17:08:40] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 268.
[17:08:40] [Server thread/ERROR]: [Citizens] The trait sitting failed to load for NPC ID: 270.
[17:08:40] [Craft Scheduler Thread - 0/INFO]: [UltraPermissions] Translations successfully loaded & applied
[17:08:41] [Server thread/INFO]: /176.58.106.79:58216 lost connection: Internal Exception: io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(7) + length(1) exceeds writerIndex(7): PooledUnsafeDirectByteBuf(ridx: 7, widx: 7, cap: 256)
[17:08:41] [Server thread/INFO]: [DiscordSRV] Player BigHeadNov joined with silent joining permission, not sending a join message
[17:08:41] [Server thread/INFO]: BigHeadNov joined the game
[17:08:41] [Server thread/INFO]: BigHeadNov[/         ip          ] logged in with entity id 3800 at ([NovaRockafellerland69]867.9359548031969, 69.86829138346634, -36775.56233595154)
[17:08:42] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6527ms or 130 ticks behind
[17:08:43] [User Authenticator #2/INFO]: UUID of player Operation12 is 9a911423-1c9e-43cc-8d78-5bb0336d81c8
[17:08:43] [Server thread/INFO]: [DiscordSRV] Player Operation12 joined with silent joining permission, not sending a join message
[17:08:43] [Server thread/INFO]: Operation12 joined the game
[17:08:43] [Server thread/INFO]: Operation12[/          ip           ] logged in with entity id 4086 at ([NovaRockafellerland69]-546.9823438171891, 71.0, -335.46513063773756)
[17:08:46] [Craft Scheduler Thread - 3/INFO]: [UltraPermissions] Loading Permission Database...
[17:08:46] [Craft Scheduler Thread - 3/INFO]: [UltraPermissions] - 993 Permissions extracted from .jars
[17:08:46] [Craft Scheduler Thread - 3/INFO]: [UltraPermissions] - 7506 Permissions downloaded from the Cloud
[17:08:49] [Server thread/WARN]: [SimplePets] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[17:08:49] [Server thread/WARN]: [SimplePets] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.9-beta1+2249-223b80c which is not a depend or softdepend of this plugin.
[17:08:49] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:08:49] [Server thread/INFO]: [SimplePets ADDON] Loading modules for the Vault addon
[17:08:49] [Server thread/INFO]: [SimplePets Permissions] Registering 'pet.vault.bypass' permission and its children permissions for the 'Vault' addon
[17:08:49] [Server thread/INFO]: [SimplePets ADDON] Loading modules for the WorldGuard addon
[17:08:49] [Server thread/INFO]: [SimplePets Permissions] Registering 'pet.bypass.worldguard' permission for the 'WorldGuard' addon
[17:09:06] [User Authenticator #3/INFO]: UUID of player karmasuez is fabd790b-05ea-4ff1-ae0c-e7dd13374089
[17:09:07] [Server thread/INFO]: karmasuez joined the game
[17:09:07] [Server thread/INFO]: karmasuez[/        ip         ] logged in with entity id 4437 at ([NovaRockafellerland69]1378.348341708583, 63.0, -35568.05232725456)
[17:09:07] [Server thread/INFO]: [AltDetector] karmasuez may be an alt of +Dollar_Bill3167
[17:09:11] [Server thread/INFO]: /213.136.71.218:36196 lost connection: Internal Exception: io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(7) + length(1) exceeds writerIndex(7): PooledUnsafeDirectByteBuf(ridx: 7, widx: 7, cap: 256)
[17:09:40] [Server thread/INFO]: [GriefPrevention] BigHeadNov placed a sign @ NovaRockafellerland69: x871, z-36733;valuables
[17:10:00] [User Authenticator #4/INFO]: UUID of player GreenPanther97 is e9fabf79-47e8-4f70-9e69-534e7755d858
[17:10:01] [Server thread/INFO]: GreenPanther97 joined the game
[17:10:01] [Server thread/INFO]: GreenPanther97[/         ip         ] logged in with entity id 5154 at ([NovaRockafellerland69]13495.455504813644, 63.0, -17286.832543464345)
[17:10:08] [Server thread/INFO]: karmasuez issued server command: /fly karmasuez
[17:10:19] [Async Chat Thread - #1/INFO]:                             chat                             
[17:10:40] [Async Chat Thread - #0/INFO]:                           chat