Paste #129461: hi

Date: 2024/12/29 05:26:06 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[12:33:57] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.3+9-LTS; Eclipse Adoptium Temurin-21.0.3+9) on Linux 5.10.0-23-amd64 (amd64)
[12:33:57] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-132-ver/1.21.1@b48403b (2024-11-21T10:14:27Z) for Minecraft 1.21.1
[12:33:57] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[12:33:58] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens-2.0.34-b3430.jar'...
[12:33:58] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Denizen-1.3.0-b1804-REL.jar'...
[12:34:01] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Denizen-1.3.0-b1804-REL.jar' in 2850ms.
[12:34:01] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens-2.0.34-b3430.jar' in 3197ms.
[12:34:02] [ServerMain/INFO]: [PluginInitializerManager] Initialized 47 plugins
[12:34:02] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (47):
 - Admin-GUI (1.9.0), AntiPopup (10.1), BlockParticles (1.12), BlueArcade (2.0.6), Chunky (1.4.28), ChunkyBorder (1.2.23), Citizens (2.0.34-SNAPSHOT (build 3430)), ConditionalEvents (4.59.1), CustomNameplates (3.0.15.2), DecentHolograms (2.8.11), Denizen (1.3.0-SNAPSHOT (build 1804-REL)), Essentials (2.21.0-dev+151-f2af952), ExploitFixer (2.7.2), FastAsyncWorldEdit (2.12.3-SNAPSHOT-1006;a07fe26), Gizmo (1.2.1), HamsterAPI (0.2.4), ItemsAdder (4.0.6), KotlinPlugins (1.0-SNAPSHOT), LPC (3.6.0), LightAntiCheat (1.2.6), LoneLibs (1.0.63), LuckPerms (5.4.151), Matrix (7.12.4), Multiverse-Core (4.3.15-SNAPSHOT), NoMobGriefing (1.0.0), NoRainReloaded (1.3.1), NoteBlockAPI (1.6.3), PlaceholderAPI (2.11.6), ProBlockedCommands (1.9), ProtocolLib (5.4.0-SNAPSHOT-738), RedstoneLimiter (0.0.6), SetSpawn (5.4), SkinsRestorer (15.5.1), TAB (5.0.3), Vault (1.7.3-b131), ViaBackwards (5.2.1-SNAPSHOT), ViaRewind (4.0.4), ViaVersion (5.2.1-SNAPSHOT), VoidGen (2.2.1), VoidWorld (1.0), WorldGuard (7.0.12+829a4a4), WorldServer (1.9.4), ajLeaderboards (2.9.0), eGlow (3.3.6), floodgate (2.2.3-SNAPSHOT (b114-83fbd6e)), nLogin (10.4.18), packetevents (2.7.0)
[12:34:07] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[12:34:09] [ServerMain/INFO]: Loaded 1290 recipes
[12:34:09] [ServerMain/INFO]: Loaded 1399 advancements
[12:34:10] [Server thread/INFO]: Starting minecraft server version 1.21.1
[12:34:10] [Server thread/INFO]: Loading properties
[12:34:10] [Server thread/INFO]: This server is running Paper version 1.21.1-132-ver/1.21.1@b48403b (2024-11-21T10:14:27Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[12:34:11] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[12:34:11] [Server thread/INFO]: Server Ping Player Sample Count: 12
[12:34:11] [Server thread/INFO]: Using 4 threads for Netty based IO
[12:34:11] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and population gen parallelism of 4 threads
[12:34:12] [Server thread/INFO]: Default game type: SURVIVAL
[12:34:12] [Server thread/INFO]: Generating keypair
[12:34:12] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[12:34:12] [Server thread/INFO]: Using epoll channel type
[12:34:12] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[12:34:12] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 4 libraries... please wait
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loading 8 libraries... please wait
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/dev/dejvokep/boosted-yaml/1.3.7/boosted-yaml-1.3.7.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/org/spongepowered/configurate-gson/4.1.2/configurate-gson-4.1.2.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/org/spongepowered/configurate-core/4.1.2/configurate-core-4.1.2.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/io/leangen/geantyref/geantyref/1.3.11/geantyref-1.3.11.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.6.0/error_prone_annotations-2.6.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/fr/mrmicky/fastboard/2.1.3/fastboard-2.1.3.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[12:34:13] [Server thread/INFO]: [SpigotLibraryLoader] [BlueArcade] Loaded library /home/container/libraries/org/json/json/20240303/json-20240303.jar
[12:34:13] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[12:34:26] [Server thread/WARN]: Legacy plugin VoidWorld v1.0 does not specify an api-version.
[12:34:26] [Server thread/WARN]: Legacy plugin NoRainReloaded v1.3.1 does not specify an api-version.
[12:34:26] [Server thread/WARN]: Legacy plugin ProBlockedCommands v1.9 does not specify an api-version.
[12:34:26] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1-SNAPSHOT
[12:34:26] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[12:34:27] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[12:34:27] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[12:34:27] [Server thread/INFO]: [ViaBackwards] Loading translations...
[12:34:27] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[12:34:28] [Server thread/INFO]: [ViaRewind] Registering protocols...
[12:34:28] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.151
[12:34:28] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[12:34:28] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.3-SNAPSHOT-1006;a07fe26
[12:34:30] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@3f9ef2ed]
[12:34:30] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-738
[12:34:30] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[12:34:30] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[12:34:30] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1-SNAPSHOT
[12:34:30] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.34-SNAPSHOT (build 3430)
[12:34:30] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[12:34:31] [Server thread/INFO]: [floodgate] Took 803ms to boot Floodgate
[12:34:31] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.4
[12:34:31] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.63
[12:34:31] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+151-f2af952
[12:34:31] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[12:34:31] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.3
[12:34:31] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.3
[12:34:31] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
[12:34:31] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.6
[12:34:31] [Server thread/WARN]: [ItemsAdder] 'allow_other_plugins_resourcepacks' enabled. Do not report resourcepack loading issues.
[12:34:31] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[12:34:31] [Server thread/INFO]: [HamsterAPI] Loading server plugin HamsterAPI v0.2.4
[12:34:31] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.5.1
[12:34:31] [Server thread/INFO]: [RedstoneLimiter] Loading server plugin RedstoneLimiter v0.0.6
[12:34:31] [Server thread/INFO]: [BlueArcade] Loading server plugin BlueArcade v2.0.6
[12:34:31] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.0
[12:34:34] [Server thread/INFO]: [Gizmo] Loading server plugin Gizmo v1.2.1
[12:34:34] [Server thread/INFO]: [eGlow] Loading server plugin eGlow v3.3.6
[12:34:34] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.59.1
[12:34:34] [Server thread/INFO]: [VoidWorld] Loading server plugin VoidWorld v1.0
[12:34:34] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v10.1
[12:34:37] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[12:34:37] [Server thread/INFO]: [nLogin] Loading server plugin nLogin v10.4.18
[12:34:38] [Server thread/INFO]: [NoRainReloaded] Loading server plugin NoRainReloaded v1.3.1
[12:34:38] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.2.23
[12:34:38] [Server thread/INFO]: [SetSpawn] Loading server plugin SetSpawn v5.4
[12:34:38] [Server thread/INFO]: [Matrix] Loading server plugin Matrix v7.12.4
[12:34:42] [Server thread/INFO]: [Matrix] Checking Environment...
[12:34:42] [Server thread/INFO]: [Matrix] Passed all environment checks
[12:34:42] [Server thread/INFO]: [NoMobGriefing] Loading server plugin NoMobGriefing v1.0.0
[12:34:42] [Server thread/INFO]: [ProBlockedCommands] Loading server plugin ProBlockedCommands v1.9
[12:34:42] [Server thread/INFO]: [CustomNameplates] Loading server plugin CustomNameplates v3.0.15.2
[12:34:42] [Server thread/INFO]: [Admin-GUI] Loading server plugin Admin-GUI v1.9.0
[12:34:42] [Server thread/INFO]: [WorldServer] Loading server plugin WorldServer v1.9.4
[12:34:42] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[12:34:42] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.15-SNAPSHOT
[12:34:42] [Server thread/INFO]: [ExploitFixer] Loading server plugin ExploitFixer v2.7.2
[12:34:42] [Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.12
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[12:34:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[12:34:42] [Server thread/INFO]: [LightAntiCheat] Loading server plugin LightAntiCheat v1.2.6
[12:34:42] [Server thread/INFO]: [KotlinPlugins] Loading server plugin KotlinPlugins v1.0-SNAPSHOT
[12:34:42] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.11
[12:34:42] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[12:34:42] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.151
[12:34:43] [Server thread/INFO]:         __    
[12:34:43] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.151
[12:34:43] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[12:34:43] [Server thread/INFO]: 
[12:34:43] [Server thread/INFO]: [LuckPerms] Loading configuration...
[12:34:44] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[12:34:44] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[12:34:44] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[12:34:45] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[12:34:46] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[12:34:46] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[12:34:48] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5181ms)
[12:34:48] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[12:34:48] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[12:34:48] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[12:34:48] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[12:34:48] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[12:34:48] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.3-SNAPSHOT-1006;a07fe26
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[12:34:48] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[12:34:48] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[12:34:48] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[12:34:48] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[12:34:48] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[12:34:48] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[12:34:49] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-738
[12:34:49] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.4
[12:34:49] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.63
[12:34:49] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[12:34:49] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[12:34:49] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.5.1
[12:34:49] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 4 build(s) out of date.
You are running build 1006, the latest version is build 1010.
Update at https://www.spigotmc.org/resources/13932/
[12:34:50] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.1.
[12:34:50] [Server thread/INFO]: [SkinsRestorer] Floodgate skin listener registered
[12:34:50] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[12:34:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.5.1]
[12:34:50] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[12:34:50] [Server thread/INFO]: [VoidWorld] Enabling VoidWorld v1.0*
[12:34:50] [Server thread/INFO]: [nLogin] Enabling nLogin v10.4.18
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.5.1
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: d5d8613
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[12:34:50] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[12:34:51] [Server thread/INFO]: [nLogin] Successful plugin core start (took 0.74s)
[12:34:51] [Server thread/INFO]:           __             _       
[12:34:51] [Server thread/INFO]:   _ __   / /  ___   __ _(_)_ __  
[12:34:51] [Server thread/INFO]:  | '_ \ / /  / _ \ / _` | | '_ \ 
[12:34:51] [Server thread/INFO]:  | | | / /__| (_) | (_| | | | | |
[12:34:51] [Server thread/INFO]:  |_| |_\____/\___/ \__, |_|_| |_|
[12:34:51] [Server thread/INFO]:                   |___/            
[12:34:51] [Server thread/INFO]:  By: www.nickuc.com - V 10.4.18 DEVELOPMENT
[12:34:51] [Server thread/INFO]:  
[12:34:52] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[12:34:52] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[12:34:52] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[12:34:52] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[12:34:52] [Server thread/INFO]: Preparing level "world"
[12:34:52] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:34:52] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:34:52] [Server thread/INFO]: -------- World Settings For [world] --------
[12:34:52] [Server thread/INFO]: View Distance: 10
[12:34:52] [Server thread/INFO]: Simulation Distance: 10
[12:34:52] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[12:34:52] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[12:34:52] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[12:34:52] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:34:52] [Server thread/INFO]: Cactus Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Cane Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Melon Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Sapling Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Carrot Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Potato Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Wheat Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Vine Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Kelp Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[12:34:52] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[12:34:52] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[12:34:52] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[12:34:52] [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
[12:34:52] [Server thread/INFO]: Experience Merge Radius: 3.0
[12:34:52] [Server thread/INFO]: Item Merge Radius: 2.5
[12:34:52] [Server thread/INFO]: Mob Spawn Range: 4
[12:34:52] [Server thread/INFO]: Item Despawn Rate: 6000
[12:34:52] [Server thread/INFO]: Max TNT Explosions: 100
[12:34:52] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:34:53] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[12:34:54] [Server thread/INFO]: Time elapsed: 916 ms
[12:34:54] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1-SNAPSHOT
[12:34:54] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[12:34:54] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[12:34:54] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[12:34:54] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[12:34:54] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[12:34:54] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[12:34:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[12:34:54] [Server thread/INFO]: [WorldGuard] Loading region data...
[12:34:54] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[12:34:54] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[12:34:54] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1-SNAPSHOT
[12:34:54] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.34-SNAPSHOT (build 3430)
[12:34:54] [Server thread/INFO]: [Citizens] Loading external libraries
[12:34:57] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.34-SNAPSHOT (build 3430) (Is it up to date?)
java.lang.RuntimeException: Failed to download library 'net.kyori:adventure-platform-bukkit:4.3.3-SNAPSHOT'
    at Citizens-2.0.34-b3430.jar/clib.net.byteflux.libby.LibraryManager.downloadLibrary(LibraryManager.java:382) ~[Citizens-2.0.34-b3430.jar:?]
    at Citizens-2.0.34-b3430.jar/clib.net.byteflux.libby.LibraryManager.loadLibrary(LibraryManager.java:442) ~[Citizens-2.0.34-b3430.jar:?]
    at Citizens-2.0.34-b3430.jar/net.citizensnpcs.Citizens.loadMavenLibraries(Citizens.java:305) ~[Citizens-2.0.34-b3430.jar:?]
    at Citizens-2.0.34-b3430.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:375) ~[Citizens-2.0.34-b3430.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[12:34:57] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.34-SNAPSHOT (build 3430)
[12:34:57] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[12:34:57] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+151-f2af952
[12:34:57] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[12:34:57] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[12:34:57] [Server thread/INFO]: [Essentials] No kits found to migrate.
[12:34:57] [Server thread/INFO]: [Essentials] Done converting random teleport config.
[12:34:58] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[12:34:58] [Server thread/INFO]: [Essentials] Using locale en
[12:34:58] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[12:34:58] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[12:34:58] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[12:34:58] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[12:34:58] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[12:34:58] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1378), impl for Spigot v1.3.0-SNAPSHOT (build 1804-REL) 
[12:34:59] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.3 
[12:34:59] [Server thread/INFO]: +> [Denizen] Running on unrecognized (future?) Java version. May or may not work. 
[12:34:59] [Server thread/WARN]: [Denizen] -------------------------------------
[12:34:59] [Server thread/WARN]: [Denizen] This build of Denizen is not compatible with this Spigot version! Deactivating Denizen!
[12:34:59] [Server thread/WARN]: [Denizen] -------------------------------------
[12:34:59] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[12:34:59] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.3
[12:34:59] [Server thread/INFO]: [TAB] Enabling TAB v5.0.3
[12:34:59] [Server thread/INFO]: [TAB] Loaded NMS hook in 35ms
[12:34:59] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[12:34:59] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[12:34:59] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[12:34:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.0.3]
[12:34:59] [Server thread/INFO]: [TAB] [WARN] Found a total of 3 issues.
[12:34:59] [Server thread/INFO]: [TAB] Enabled in 238ms
[12:34:59] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
[12:34:59] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.6
[12:34:59] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.6
  ___  ___        __        __   __   ___  __      LoneLibs 1.0.63
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     ProtocolLib 5.4.0-SNAPSHOT-738
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper 1.21.1-132-b48403b (MC: 1.21.1)
                                                   Build Date: 2024-12-19_14.54.20
                                                   Java Version: 21.0.3
                                                   OS: Linux 5.10.0-23-amd64
[12:34:59] [Server thread/INFO]: [ItemsAdder] ViaVersion detected. Do not report glitches when joining using game versions different than the server version.
[12:34:59] [Server thread/INFO]: [ItemsAdder] More info: https://github.com/PluginBugs/Issues-ItemsAdder/issues/3683
[12:34:59] [Server thread/ERROR]: [ItemsAdder] Error while hooking into Denizen
[12:34:59] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/denizenscript/denizen/objects/ItemTag
[12:34:59] [Server thread/WARN]:     at ItemsAdder_4.0.6.jar//dev.lone.itemsadder.Core.OtherPlugins.Denizen.DenizenHook.hook(SourceFile:22)
[12:34:59] [Server thread/WARN]:     at ItemsAdder_4.0.6.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:353)
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[12:34:59] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[12:34:59] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[12:34:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[12:34:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[12:34:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[12:34:59] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.objects.ItemTag
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[12:34:59] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[12:34:59] [Server thread/WARN]:     ... 14 more
[12:34:59] [Server thread/ERROR]: [ItemsAdder] Failed to hook into Citizens. Please update make sure you're running a compatible version.
[12:34:59] [Server thread/WARN]: java.lang.NoClassDefFoundError: net/citizensnpcs/api/trait/Trait
[12:34:59] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass1(Native Method)
[12:34:59] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1027)
[12:34:59] [Server thread/WARN]:     at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150)
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:243)
[12:34:59] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593)
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169)
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[12:34:59] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[12:34:59] [Server thread/WARN]:     at ItemsAdder_4.0.6.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.register(SourceFile:40)
[12:34:59] [Server thread/WARN]:     at ItemsAdder_4.0.6.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:368)
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[12:34:59] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[12:34:59] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[12:34:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[12:34:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[12:34:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[12:34:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[12:34:59] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.trait.Trait
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[12:34:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[12:34:59] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[12:34:59] [Server thread/WARN]:     ... 22 more
[12:34:59] [Server thread/WARN]: [ItemsAdder] 'allow_other_plugins_resourcepacks' enabled. Do not report resourcepack loading issues.
[12:35:00] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[12:35:00] [Server thread/INFO]: [ItemsAdder] [Pack] Done extracting internal contents from .jar
[12:35:02] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.4
[12:35:02] [Server thread/INFO]: [RedstoneLimiter] Enabling RedstoneLimiter v0.0.6
[12:35:02] [Server thread/INFO]: [BlueArcade] Enabling BlueArcade v2.0.6
[12:35:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bluearcade [2.0.6]
[12:35:03] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.0
[12:35:03] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[12:35:03] [Server thread/INFO]: [Gizmo] Enabling Gizmo v1.2.1
[12:35:03] [Server thread/INFO]: [Gizmo] |---[ GIZMO ]--------------------------------------------------------|
[12:35:03] [Server thread/INFO]: [Gizmo] |                           Plugin loaded.                           |
[12:35:03] [Server thread/INFO]: [Gizmo] |-------------------------------------------------[ MADE BY JEQO ]---|
[12:35:03] [Server thread/WARN]: @EventHandler method net.jeqo.gizmo.listeners.PlayerScreening#onPackAccept returns non-void type boolean. This is unsupported behavior and will no longer work in a future version of Paper. This should be reported to the developers of Gizmo v1.2.1 (Jeqo)
[12:35:03] [Server thread/INFO]: [eGlow] Enabling eGlow v3.3.6
[12:35:03] [Server thread/INFO]: [eGlow]: Loading main config.
[12:35:03] [Server thread/INFO]: [eGlow]: Loading messages config.
[12:35:03] [Server thread/INFO]: [eGlow]: Loading customeffects config.
[12:35:03] [Server thread/INFO]: eGlow Successfully loaded Playerdata database.
[12:35:03] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.59.1
[12:35:03] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.7.0)
[12:35:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.59.1]
[12:35:03] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.59.1
[12:35:03] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[12:35:03] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v10.1
[12:35:03] [Server thread/INFO]: [AntiPopup] Config enabled.
[12:35:03] [Server thread/INFO]: [AntiPopup] Loaded a hook for ViaVersion.
[12:35:03] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[12:35:03] [Server thread/INFO]: [AntiPopup] Hooked on 1.21.1
[12:35:03] [Server thread/INFO]: [AntiPopup] Commands registered.
[12:35:03] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[12:35:03] [Server thread/INFO]: [NoRainReloaded] Enabling NoRainReloaded v1.3.1*
[12:35:03] [Server thread/INFO]: [NoRainReloaded] Plugin enabled. Plugin created by xtomyserrax
[12:35:03] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.2.23
[12:35:03] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v5.4
[12:35:03] [Server thread/INFO]: [SetSpawn] Enabled!
[12:35:03] [Server thread/INFO]: [Matrix] Enabling Matrix v7.12.4
[12:35:03] [Server thread/INFO]: *   __  __       _        _
[12:35:03] [Server thread/INFO]: *  |  \/  |     | |      (_)
[12:35:03] [Server thread/INFO]: *  | \  / | __ _| |_ _ __ ___  __
[12:35:03] [Server thread/INFO]: *  | |\/| |/ _` | __| '__| \ \/ /
[12:35:03] [Server thread/INFO]: *  | |  | | (_| | |_| |  | |>  <
[12:35:03] [Server thread/INFO]: *  |_|  |_|\__,_|\__|_|  |_/_/\_\
[12:35:03] [Server thread/INFO]: * Matrix AntiCheat v7.12.4 | 1.21.1-132-b48403b (MC: 1.21.1)
[12:35:03] [Server thread/INFO]: [Matrix] Server Version: V1_21_1 (#21)
[12:35:04] [Server thread/INFO]: [Matrix] Hooked with PlaceholderAPI
[12:35:04] [Server thread/INFO]: [Matrix] Loaded 36 global placeholders
[12:35:04] [Server thread/INFO]: [Matrix] Enabled 14 checks, Disabled 1 checks
[12:35:04] [Server thread/WARN]: [Matrix] You have enabled the `hitbox.strict_mode` option, which is experimental and may cause false positives, please use it carefully!
[12:35:04] [Server thread/WARN]: [Matrix] You have enabled the `move.allow_bpe_bridge` option, which will cause the server to be more easy to bypass, please use it carefully!
[12:35:04] [Server thread/INFO]: [Matrix] Loaded all configuration files
[12:35:04] [Server thread/INFO]: [Matrix] (Compatibility) Hooked with Floodgate
[12:35:04] [Server thread/INFO]: [Matrix] Scanning outdated log files....
[12:35:04] [Server thread/INFO]: [Matrix] Deleted 0 outdated log files!
[12:35:04] [Server thread/INFO]: [Matrix] Welcome to Matrix!
[12:35:04] [Server thread/INFO]: [NoMobGriefing] Enabling NoMobGriefing v1.0.0
[12:35:04] [Server thread/INFO]: [NoMobGriefing] NoMobGriefing plugin has been enabled.
[12:35:04] [Server thread/INFO]: [ProBlockedCommands] Enabling ProBlockedCommands v1.9*
[12:35:04] [Server thread/INFO]: [ProBlockedCommands] --------------------------------------------------
[12:35:04] [Server thread/INFO]: [ProBlockedCommands] >> ProBlockCommands is enabled 
[12:35:04] [Server thread/INFO]: [ProBlockedCommands] >> Plugin version 1.8 is New :D
[12:35:04] [Server thread/INFO]: [ProBlockedCommands] >> ProBlockCommands plugin by iTzMaurittohBJ_
[12:35:04] [Server thread/INFO]: [ProBlockedCommands] >> Dev Official iTzMaurittohBJ_  // Maurittoh Suarez BJ
[12:35:04] [Server thread/INFO]: [ProBlockedCommands] --------------------------------------------------
[12:35:04] [Server thread/INFO]: [CustomNameplates] Enabling CustomNameplates v3.0.15.2
[12:35:05] [Server thread/WARN]: [CustomNameplates] en_us.yml not exists, using en.yml as default locale.
[12:35:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nameplates [3.0]
[12:35:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: npex [3.0]
[12:35:08] [Server thread/INFO]: [Admin-GUI] Enabling Admin-GUI v1.9.0
[12:35:08] [Server thread/INFO]: [WorldServer] Enabling WorldServer v1.9.4
[12:35:08] [Server thread/INFO]: [WorldServer] Loaded all config files
[12:35:08] [Server thread/INFO]: [WorldServer] Loaded WorldServer v1.9.4 in 26ms!
[12:35:08] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[12:35:08] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.15-SNAPSHOT
[12:35:08] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.15-SNAPSHOT" 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--].
[12:35:08] [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.
[12:35:08] [nameplates-worker-6/INFO]: [CustomNameplates] You are using the latest version.
[12:35:08] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:08] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:08] [Server thread/INFO]: -------- World Settings For [PG-02] --------
[12:35:08] [Server thread/INFO]: View Distance: 10
[12:35:08] [Server thread/INFO]: Simulation Distance: 10
[12:35:08] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[12:35:08] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[12:35:08] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[12:35:08] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:35:08] [Server thread/INFO]: Cactus Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Cane Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Melon Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Sapling Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Carrot Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Potato Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Wheat Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Vine Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Kelp Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[12:35:08] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[12:35:08] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[12:35:08] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[12:35:08] [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
[12:35:08] [Server thread/INFO]: Experience Merge Radius: 3.0
[12:35:08] [Server thread/INFO]: Item Merge Radius: 2.5
[12:35:08] [Server thread/INFO]: Mob Spawn Range: 4
[12:35:08] [Server thread/INFO]: Item Despawn Rate: 6000
[12:35:08] [Server thread/INFO]: Max TNT Explosions: 100
[12:35:08] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:35:08] [Server thread/INFO]: Preparing start region for dimension minecraft:pg-02
[12:35:08] [Server thread/INFO]: Time elapsed: 259 ms
[12:35:08] [Server thread/INFO]: [WorldGuard] (PG-02) TNT ignition is PERMITTED.
[12:35:08] [Server thread/INFO]: [WorldGuard] (PG-02) Lighters are PERMITTED.
[12:35:08] [Server thread/INFO]: [WorldGuard] (PG-02) Lava fire is blocked.
[12:35:08] [Server thread/INFO]: [WorldGuard] (PG-02) Fire spread is UNRESTRICTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PG-02'
[12:35:09] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:09] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:09] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:09] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:09] [Server thread/INFO]: -------- World Settings For [PG-03] --------
[12:35:09] [Server thread/INFO]: View Distance: 10
[12:35:09] [Server thread/INFO]: Simulation Distance: 10
[12:35:09] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[12:35:09] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[12:35:09] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[12:35:09] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:35:09] [Server thread/INFO]: Cactus Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Cane Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Melon Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Sapling Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Carrot Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Potato Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Wheat Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Vine Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Kelp Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[12:35:09] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[12:35:09] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[12:35:09] [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
[12:35:09] [Server thread/INFO]: Experience Merge Radius: 3.0
[12:35:09] [Server thread/INFO]: Item Merge Radius: 2.5
[12:35:09] [Server thread/INFO]: Mob Spawn Range: 4
[12:35:09] [Server thread/INFO]: Item Despawn Rate: 6000
[12:35:09] [Server thread/INFO]: Max TNT Explosions: 100
[12:35:09] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:35:09] [Server thread/INFO]: Preparing start region for dimension minecraft:pg-03
[12:35:09] [Server thread/INFO]: Time elapsed: 99 ms
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-03) TNT ignition is PERMITTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-03) Lighters are PERMITTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-03) Lava fire is blocked.
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-03) Fire spread is UNRESTRICTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PG-03'
[12:35:09] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:09] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:09] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:09] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:09] [Server thread/INFO]: -------- World Settings For [PG-04] --------
[12:35:09] [Server thread/INFO]: View Distance: 10
[12:35:09] [Server thread/INFO]: Simulation Distance: 10
[12:35:09] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[12:35:09] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[12:35:09] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[12:35:09] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:35:09] [Server thread/INFO]: Cactus Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Cane Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Melon Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Sapling Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Carrot Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Potato Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Wheat Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Vine Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Kelp Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[12:35:09] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[12:35:09] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[12:35:09] [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
[12:35:09] [Server thread/INFO]: Experience Merge Radius: 3.0
[12:35:09] [Server thread/INFO]: Item Merge Radius: 2.5
[12:35:09] [Server thread/INFO]: Mob Spawn Range: 4
[12:35:09] [Server thread/INFO]: Item Despawn Rate: 6000
[12:35:09] [Server thread/INFO]: Max TNT Explosions: 100
[12:35:09] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:35:09] [Server thread/INFO]: Preparing start region for dimension minecraft:pg-04
[12:35:09] [Server thread/INFO]: Time elapsed: 92 ms
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-04) TNT ignition is PERMITTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-04) Lighters are PERMITTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-04) Lava fire is blocked.
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-04) Fire spread is UNRESTRICTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PG-04'
[12:35:09] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:09] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:09] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:09] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:09] [Server thread/INFO]: -------- World Settings For [PG-05] --------
[12:35:09] [Server thread/INFO]: View Distance: 10
[12:35:09] [Server thread/INFO]: Simulation Distance: 10
[12:35:09] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[12:35:09] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[12:35:09] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[12:35:09] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:35:09] [Server thread/INFO]: Cactus Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Cane Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Melon Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Sapling Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Carrot Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Potato Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Wheat Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Vine Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Kelp Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[12:35:09] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[12:35:09] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[12:35:09] [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
[12:35:09] [Server thread/INFO]: Experience Merge Radius: 3.0
[12:35:09] [Server thread/INFO]: Item Merge Radius: 2.5
[12:35:09] [Server thread/INFO]: Mob Spawn Range: 4
[12:35:09] [Server thread/INFO]: Item Despawn Rate: 6000
[12:35:09] [Server thread/INFO]: Max TNT Explosions: 100
[12:35:09] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:35:09] [Server thread/INFO]: Preparing start region for dimension minecraft:pg-05
[12:35:09] [Server thread/INFO]: Time elapsed: 97 ms
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-05) TNT ignition is PERMITTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-05) Lighters are PERMITTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-05) Lava fire is blocked.
[12:35:09] [Server thread/INFO]: [WorldGuard] (PG-05) Fire spread is UNRESTRICTED.
[12:35:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PG-05'
[12:35:09] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:09] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:09] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:09] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:09] [Server thread/INFO]: -------- World Settings For [PG-06] --------
[12:35:09] [Server thread/INFO]: View Distance: 10
[12:35:09] [Server thread/INFO]: Simulation Distance: 10
[12:35:09] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[12:35:09] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[12:35:09] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[12:35:09] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:35:09] [Server thread/INFO]: Cactus Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Cane Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Melon Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Sapling Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Carrot Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Potato Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Wheat Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Vine Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Kelp Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[12:35:09] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[12:35:09] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[12:35:09] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[12:35:09] [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
[12:35:09] [Server thread/INFO]: Experience Merge Radius: 3.0
[12:35:09] [Server thread/INFO]: Item Merge Radius: 2.5
[12:35:09] [Server thread/INFO]: Mob Spawn Range: 4
[12:35:09] [Server thread/INFO]: Item Despawn Rate: 6000
[12:35:09] [Server thread/INFO]: Max TNT Explosions: 100
[12:35:09] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:35:10] [Server thread/INFO]: Preparing start region for dimension minecraft:pg-06
[12:35:10] [Server thread/INFO]: Time elapsed: 115 ms
[12:35:10] [Server thread/INFO]: [WorldGuard] (PG-06) TNT ignition is PERMITTED.
[12:35:10] [Server thread/INFO]: [WorldGuard] (PG-06) Lighters are PERMITTED.
[12:35:10] [Server thread/INFO]: [WorldGuard] (PG-06) Lava fire is blocked.
[12:35:10] [Server thread/INFO]: [WorldGuard] (PG-06) Fire spread is UNRESTRICTED.
[12:35:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PG-06'
[12:35:10] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:10] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:10] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:10] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:10] [Server thread/INFO]: -------- World Settings For [PG-01] --------
[12:35:10] [Server thread/INFO]: View Distance: 10
[12:35:10] [Server thread/INFO]: Simulation Distance: 10
[12:35:10] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[12:35:10] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[12:35:10] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[12:35:10] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:35:10] [Server thread/INFO]: Cactus Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Cane Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Melon Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Sapling Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Carrot Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Potato Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Wheat Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Vine Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Kelp Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[12:35:10] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[12:35:10] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[12:35:10] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[12:35:10] [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
[12:35:10] [Server thread/INFO]: Experience Merge Radius: 3.0
[12:35:10] [Server thread/INFO]: Item Merge Radius: 2.5
[12:35:10] [Server thread/INFO]: Mob Spawn Range: 4
[12:35:10] [Server thread/INFO]: Item Despawn Rate: 6000
[12:35:10] [Server thread/INFO]: Max TNT Explosions: 100
[12:35:10] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:35:10] [Server thread/INFO]: Preparing start region for dimension minecraft:pg-01
[12:35:10] [Server thread/INFO]: Time elapsed: 94 ms
[12:35:10] [Server thread/INFO]: [WorldGuard] (PG-01) TNT ignition is PERMITTED.
[12:35:10] [Server thread/INFO]: [WorldGuard] (PG-01) Lighters are PERMITTED.
[12:35:10] [Server thread/INFO]: [WorldGuard] (PG-01) Lava fire is blocked.
[12:35:10] [Server thread/INFO]: [WorldGuard] (PG-01) Fire spread is UNRESTRICTED.
[12:35:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PG-01'
[12:35:10] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[12:35:10] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[12:35:10] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[12:35:10] [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.
[12:35:10] [Server thread/INFO]: [Multiverse-Core] Version 4.3.15-SNAPSHOT (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[12:35:10] [Server thread/INFO]: [ExploitFixer] Enabling ExploitFixer v2.7.2
[12:35:10] [Server thread/INFO]: [ExploitFixer] Successfully registered commands!
[12:35:10] [Server thread/INFO]: [ExploitFixer] Successfully registered listeners!
[12:35:10] [Server thread/INFO]: [ExploitFixer] Successfully hooked with HamsterAPI!
[12:35:10] [Server thread/INFO]: [ExploitFixer] Successfully registered tasks!
[12:35:10] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12
[12:35:10] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[12:35:10] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[12:35:10] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[12:35:10] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[12:35:10] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[12:35:11] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[12:35:11] [Server thread/INFO]: [ajLeaderboards] Loaded 2 boards
[12:35:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[12:35:11] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[12:35:11] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[12:35:11] [Server thread/INFO]: [LightAntiCheat] Enabling LightAntiCheat v1.2.6
[12:35:11] [Server thread/INFO]: [KotlinPlugins] Enabling KotlinPlugins v1.0-SNAPSHOT
[12:35:11] [Server thread/INFO]: [KotlinPlugins] 🌟 KotlinFix has been enabled! 🌟
[12:35:11] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[12:35:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[12:35:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[12:35:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[12:35:12] [Server thread/INFO]: [spark] Starting background profiler...
[12:35:13] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[12:35:13] [Server thread/INFO]: Done preparing level "world" (20.364s)
[12:35:13] [Server thread/INFO]: Running delayed init tasks
[12:35:13] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[12:35:13] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[12:35:13] [Craft Scheduler Thread - 4 - Essentials/INFO]: [Essentials] Fetching version information...
[12:35:13] [Craft Scheduler Thread - 9 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[12:35:13] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[12:35:13] [Craft Scheduler Thread - 10 - ItemsAdder/INFO]: [ItemsAdder] [License] Store product licensed to: MainManDan (255292)
[12:35:13] [Craft Scheduler Thread - 10 - Matrix/INFO]: [Matrix] Start checking update....
[12:35:13] [Craft Scheduler Thread - 14 - Admin-GUI/INFO]: 

[]===========[Enabling AdminGUI]===========[]
|
| Information:
|
|   Name: AdminGUI
|   Developer: Black1_TV
|   Version: 1.9.0 (FREE)
|   Website: https://rabbit-company.com
|
| Sponsors:
|
|   - https://rabbitserverlist.com
|
| Support:
|
|   Discord: ziga.zajc007
|   Mail: [email protected]
|   Discord: https://discord.gg/hUNymXX
|
[]=========================================[]

[12:35:13] [Craft Scheduler Thread - 5 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[12:35:13] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: 
- https://www.spigotmc.org/resources/96927/
- https://modrinth.com/plugin/decentholograms
[12:35:13] [Craft Scheduler Thread - 5 - DecentHolograms/INFO]: [DecentHolograms] Loaded 2 holograms!
[12:35:13] [Server thread/INFO]:   ____  _               _                      _
[12:35:13] [Server thread/INFO]:  | __ )| |_   _  ___   / \   _ __ ___ __ _  __| | ___
[12:35:13] [Server thread/INFO]:  |  _ \| | | | |/ _ \ / _ \ | '__/ __/ _` |/ _` |/ _ \
[12:35:13] [Server thread/INFO]:  | |_) | | |_| |  __// ___ \| | | (_| (_| | (_| |  __/
[12:35:13] [Server thread/INFO]:  |____/|_|\____|\___/_/   \_|_|  \___\____|\____|\___|
[12:35:13] [Server thread/INFO]: 
[12:35:13] [Server thread/INFO]: V. 2.0.6 | Plugin enabled successfully | blueva.net
[12:35:13] [pool-105-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[12:35:13] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] Loaded 10 items
[12:35:13] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[12:35:13] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] Used 0/750 REAL_NOTE block IDs
[12:35:13] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[12:35:13] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[12:35:13] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[12:35:13] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] Used 37/6608 font_images
[12:35:14] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 1 categories
[12:35:14] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[12:35:14] [Server thread/INFO]: [BlueArcade] An error occurred while verifying your license: NOT_FOUND
[12:35:14] [Server thread/INFO]: [BlueArcade] Checking temporary license...
[12:35:14] [Server thread/INFO]: [BlueArcade] Valid temporary license. Remaining license time: 2 days, 3 hours, 49 minutes, 37 seconds
[12:35:14] [Server thread/INFO]: [BlueArcade] You are using a temporary license of the plugin.
[12:35:14] [Server thread/INFO]: [BlueArcade] More information: https://blueva.net/wiki/arcade/temporary-license
[12:35:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eglow [3.3.6]
[12:35:15] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL is valid (lobfile). URL: https://lobfile.com/file/e2Exvtyp.zip
[12:35:15] [Server thread/INFO]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[12:35:15] [Craft Scheduler Thread - 10 - Matrix/INFO]: You are using the latest version of Matrix! (v7.12.4)
[12:35:15] [Craft Scheduler Thread - 13 - Matrix/INFO]: [Matrix] Matrix AntiCheat has been fully initialized.
[12:35:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[12:35:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[12:35:15] [Server thread/ERROR]: Could not pass event ItemsAdderLoadDataEvent to ItemsAdder v4.0.6
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at ItemsAdder_4.0.6.jar/dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:85) ~[ItemsAdder_4.0.6.jar:?]
    at ItemsAdder_4.0.6.jar/itemsadder.m.cg.a(SourceFile:431) ~[ItemsAdder_4.0.6.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at ItemsAdder_4.0.6.jar/itemsadder.m.agi.a(SourceFile:74) ~[ItemsAdder_4.0.6.jar:?]
    at ItemsAdder_4.0.6.jar/itemsadder.m.ag.e(SourceFile:954) ~[ItemsAdder_4.0.6.jar:?]
    at ItemsAdder_4.0.6.jar/itemsadder.m.afc.d(SourceFile:130) ~[ItemsAdder_4.0.6.jar:?]
    at ItemsAdder_4.0.6.jar/itemsadder.m.ag.a(SourceFile:952) ~[ItemsAdder_4.0.6.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 17 more
[12:35:15] [Server thread/INFO]: Done (79.134s)! For help, type "help"
[12:35:15] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2629ms or 52 ticks behind
[12:35:15] [Server thread/INFO]: Timings Reset
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: utils [1.0.9]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.5]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: customfont [1.0.1]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: gradient2 [1.1]
[12:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[12:35:16] [Server thread/INFO]: 12 placeholder hook(s) registered! 3 placeholder hook(s) have an update available.
[12:38:23] [User Authenticator #0/INFO]: UUID of player digsyy is 5d8efe40-760d-402d-9832-746e227587bc
[12:38:23] [Server thread/WARN]: Ignored advancement 'minecraft:recipes/tools/lime_bundle' in progress file ./world/advancements/5d8efe40-760d-402d-9832-746e227587bc.json - it doesn't exist anymore?
[12:38:24] [Server thread/ERROR]: [nLogin] Unable to verify that the player is an NPC. Most likely this is a Citizens error.
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at com.nickuc.login.ΩξβΦυνΛαΔ.b(:23) ~[?:?]
    at com.nickuc.login.ΩιιφΔβχυ.c(:124) ~[?:?]
    at com.nickuc.login.ηεΨχΩνμψφ.a(:60) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor78.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.canPlayerLogin(PlayerList.java:754) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl.verifyLoginAndFinishConnectionSetup(ServerLoginPacketListenerImpl.java:236) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl.tick(ServerLoginPacketListenerImpl.java:115) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.network.Connection.tick(Connection.java:638) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerConnectionListener.tick(ServerConnectionListener.java:248) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1821) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1596) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1302) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:445) ~[?:?]
    at nLogin Premium.jar/com.nickuc.login.loader.MemClassLoader.findClass(MemClassLoader.java:56) ~[nLogin Premium.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[12:38:27] [Server thread/WARN]: Ignoring unknown attribute 'minecraft:max_health'
[12:38:27] [Server thread/WARN]: Ignoring unknown attribute 'minecraft:block_interaction_range'
[12:38:27] [Server thread/WARN]: Ignoring unknown attribute 'minecraft:entity_interaction_range'
[12:38:27] [Server thread/WARN]: Ignoring unknown attribute 'minecraft:movement_speed'
[12:38:27] [Server thread/WARN]: Ignoring unknown attribute 'minecraft:block_break_speed'
[12:38:27] [Folia Async Scheduler Thread #6/INFO]: [nLogin] The user digsyy logged in automatically (premium account)
[12:38:27] [Server thread/WARN]: [ItemsAdder] 'digsyy' is using a different protocol version of the game (769) than the server (767).
[12:38:27] [Server thread/WARN]: [ItemsAdder] This may cause issues. Do not report bugs if you are using a different version of the game than the server.
[12:38:28] [Server thread/INFO]: digsyy[/84.70.213.161:49194] logged in with entity id 9 at ([world]0.5086884581557827, 66.0, 0.5139432137684713)
[12:38:28] [Server thread/INFO]: [Matrix] (Via) Player digsyy joined with (1.21.X/769) client
[12:38:31] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to Gizmo v1.2.1
java.lang.ArrayIndexOutOfBoundsException: Index 0 out of bounds for length 0
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1015) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1005) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at Gizmo-1.2.1.jar/net.jeqo.gizmo.listeners.ScreenAdvance.onClose(ScreenAdvance.java:51) ~[Gizmo-1.2.1.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor337.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1646) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClose(ServerGamePacketListenerImpl.java:2957) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClose(ServerGamePacketListenerImpl.java:2950) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.network.protocol.game.ServerboundContainerClosePacket.handle(ServerboundContainerClosePacket.java:33) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.network.protocol.game.ServerboundContainerClosePacket.handle(ServerboundContainerClosePacket.java:15) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[12:44:29] [Server thread/INFO]: Stopping the server
[12:44:29] [Server thread/INFO]: Stopping server
[12:44:29] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.11
[12:44:29] [Server thread/INFO]: [KotlinPlugins] Disabling KotlinPlugins v1.0-SNAPSHOT
[12:44:29] [Server thread/INFO]: [KotlinPlugins] 🌙 KotlinFix is going to sleep... 🌙
[12:44:29] [Server thread/INFO]: [LightAntiCheat] Disabling LightAntiCheat v1.2.6
[12:44:29] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.9.0
[12:44:29] [pool-110-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[12:44:29] [pool-110-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[12:44:29] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[12:44:30] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[12:44:30] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 disabled.
[12:44:30] [Server thread/INFO]: [BlockParticles] Disabling BlockParticles v1.12
[12:44:30] [Server thread/INFO]: [ExploitFixer] Disabling ExploitFixer v2.7.2
[12:44:30] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.15-SNAPSHOT
[12:44:30] [Server thread/INFO]: [LPC] Disabling LPC v3.6.0
[12:44:30] [Server thread/INFO]: [WorldServer] Disabling WorldServer v1.9.4
[12:44:30] [Server thread/INFO]: [Admin-GUI] Disabling Admin-GUI v1.9.0
[12:44:30] [Server thread/INFO]: 

[]===========[Disabling AdminGUI]===========[]
|
| Information:
|
|   Name: AdminGUI
|   Developer: Black1_TV
|   Version: 1.9.0 (FREE)
|   Website: https://rabbit-company.com
|
| Sponsors:
|
|   - https://rabbitserverlist.com
|
| Support:
|
|   Discord: ziga.zajc007
|   Mail: [email protected]
|   Discord: https://discord.gg/hUNymXX
|
[]=========================================[]

[12:44:30] [Server thread/INFO]: [CustomNameplates] Disabling CustomNameplates v3.0.15.2
[12:44:30] [Server thread/INFO]: [ProBlockedCommands] Disabling ProBlockedCommands v1.9
[12:44:30] [Server thread/INFO]: [NoMobGriefing] Disabling NoMobGriefing v1.0.0
[12:44:30] [Server thread/INFO]: [NoMobGriefing] NoMobGriefing plugin has been disabled.
[12:44:30] [Server thread/INFO]: [NoMobGriefing] NoMobGriefing plugin has been disabled.
[12:44:30] [Server thread/INFO]: [NoMobGriefing] NoMobGriefing plugin has been disabled.
[12:44:30] [Server thread/INFO]: [NoMobGriefing] NoMobGriefing plugin has been disabled.
[12:44:30] [Server thread/INFO]: [NoMobGriefing] NoMobGriefing plugin has been disabled.
[12:44:30] [Server thread/INFO]: [NoMobGriefing] NoMobGriefing plugin has been disabled.
[12:44:30] [Server thread/INFO]: [NoMobGriefing] NoMobGriefing plugin has been disabled.
[12:44:30] [Server thread/INFO]: [Matrix] Disabling Matrix v7.12.4
[12:44:30] [Server thread/INFO]: [Matrix] Disabled Matrix AntiCheat.
[12:44:30] [Server thread/INFO]: [SetSpawn] Disabling SetSpawn v5.4
[12:44:30] [Server thread/INFO]: [SetSpawn] Disabled!
[12:44:30] [Server thread/INFO]: [ChunkyBorder] Disabling ChunkyBorder v1.2.23
[12:44:30] [Server thread/INFO]: [NoRainReloaded] Disabling NoRainReloaded v1.3.1
[12:44:30] [Server thread/INFO]: [NoRainReloaded] Plugin disabled. Plugin created by xtomyserrax
[12:44:30] [Server thread/INFO]: [nLogin] Disabling nLogin v10.4.18
[12:44:30] [Server thread/INFO]: [nLogin] Successful plugin core shutdown (took 0.00s)
[12:44:30] [Server thread/INFO]: [AntiPopup] Disabling AntiPopup v10.1
[12:44:30] [Server thread/INFO]: [AntiPopup] Disabled PacketEvents.
[12:44:30] [Server thread/INFO]: [VoidWorld] Disabling VoidWorld v1.0
[12:44:30] [Server thread/INFO]: [ConditionalEvents] Disabling ConditionalEvents v4.59.1
[12:44:30] [Server thread/INFO]: [ConditionalEvents] Has been disabled! Version: 4.59.1
[12:44:30] [Server thread/INFO]: [eGlow] Disabling eGlow v3.3.6
[12:44:30] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion eglow
[12:44:30] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin eGlow was disabled.
[12:44:30] [Server thread/INFO]: [Gizmo] Disabling Gizmo v1.2.1
[12:44:30] [Server thread/INFO]: [Gizmo] |---[ GIZMO ]--------------------------------------------------------|
[12:44:30] [Server thread/INFO]: [Gizmo] |                          Shutting down...                          |
[12:44:30] [Server thread/INFO]: [Gizmo] |-------------------------------------------------[ MADE BY JEQO ]---|
[12:44:30] [Server thread/INFO]: [packetevents] Disabling packetevents v2.7.0
[12:44:30] [Server thread/INFO]: [BlueArcade] Disabling BlueArcade v2.0.6
[12:44:30] [Server thread/INFO]:   ____  _               _                      _
[12:44:30] [Server thread/INFO]:  | __ )| |_   _  ___   / \   _ __ ___ __ _  __| | ___
[12:44:30] [Server thread/INFO]:  |  _ \| | | | |/ _ \ / _ \ | '__/ __/ _` |/ _` |/ _ \
[12:44:30] [Server thread/INFO]:  | |_) | | |_| |  __// ___ \| | | (_| (_| | (_| |  __/
[12:44:30] [Server thread/INFO]:  |____/|_|\____|\___/_/   \_|_|  \___\____|\____|\___|
[12:44:30] [Server thread/INFO]: 
[12:44:30] [Server thread/INFO]: V. 2.0.6 | Plugin disabled successfully | blueva.net
[12:44:30] [Server thread/INFO]: [RedstoneLimiter] Disabling RedstoneLimiter v0.0.6
[12:44:30] [Server thread/INFO]: [SkinsRestorer] Disabling SkinsRestorer v15.5.1
[12:44:30] [Server thread/INFO]: [HamsterAPI] Disabling HamsterAPI v0.2.4
[12:44:30] [Server thread/INFO]: [VoidGen] Disabling VoidGen v2.2.1
[12:44:30] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v4.0.6
[12:44:30] [Server thread/ERROR]: [ItemsAdder] Error while unhooking from Denizen
[12:44:30] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/denizenscript/denizen/objects/ItemTag
[12:44:30] [Server thread/WARN]:     at ItemsAdder_4.0.6.jar//dev.lone.itemsadder.Core.OtherPlugins.Denizen.DenizenHook.unhook(SourceFile:80)
[12:44:30] [Server thread/WARN]:     at ItemsAdder_4.0.6.jar//dev.lone.itemsadder.Main.onDisable(SourceFile:668)
[12:44:30] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291)
[12:44:30] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237)
[12:44:30] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:161)
[12:44:30] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[12:44:30] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[12:44:30] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:610)
[12:44:30] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1045)
[12:44:30] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:847)
[12:44:30] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1351)
[12:44:30] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[12:44:30] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[12:44:30] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.objects.ItemTag
[12:44:30] [Server thread/WARN]:     ... 13 more
[12:44:30] [Server thread/INFO]: [Chunky] Disabling Chunky v1.4.28
[12:44:30] [Server thread/INFO]: [TAB] Disabling TAB v5.0.3
[12:44:30] [Server thread/INFO]: [TAB] Disabled in 1ms
[12:44:30] [Server thread/INFO]: [NoteBlockAPI] Disabling NoteBlockAPI v1.6.3
[12:44:30] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.0-dev+151-f2af952
[12:44:30] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[12:44:30] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.63
[12:44:30] [Server thread/INFO]: [ViaRewind] Disabling ViaRewind v4.0.4
[12:44:30] [Server thread/INFO]: [floodgate] Disabling floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[12:44:30] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v5.2.1-SNAPSHOT
[12:44:30] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.6
[12:44:30] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.12+829a4a4
[12:44:30] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[12:44:30] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.4.0-SNAPSHOT-738
[12:44:30] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.12.3-SNAPSHOT-1006;a07fe26
[12:44:30] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[12:44:30] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[12:44:30] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.151
[12:44:30] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[12:44:30] [Server thread/INFO]: [LuckPerms] Closing messaging service...
[12:44:30] [Server thread/INFO]: [LuckPerms] Closing storage...
[12:44:30] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Shutdown initiated...
[12:44:30] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Shutdown completed.
[12:44:30] [Server thread/INFO]: [LuckPerms] Goodbye!
[12:44:30] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v5.2.1-SNAPSHOT
[12:44:30] [Server thread/INFO]: [ViaVersion] ViaVersion has been disabled; uninjected the platform and shut down the scheduler.
[12:44:30] [Server thread/INFO]: Saving players
[12:44:30] [Server thread/INFO]: digsyy lost connection: Server closed
[12:44:30] [Server thread/INFO]: digsyy left the game
[12:44:31] [Server thread/INFO]: Saving worlds
[12:44:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saved 4 block chunks, 0 entity chunks, 0 poi chunks in world 'world' in 0.02s
[12:44:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[PG-02]'/minecraft:pg-02
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'PG-02'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'PG-02'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'PG-02'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'PG-02' in 0.00s
[12:44:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[PG-03]'/minecraft:pg-03
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'PG-03'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'PG-03'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'PG-03'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'PG-03' in 0.00s
[12:44:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[PG-04]'/minecraft:pg-04
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'PG-04'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'PG-04'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'PG-04'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'PG-04' in 0.00s
[12:44:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[PG-05]'/minecraft:pg-05
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'PG-05'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'PG-05'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'PG-05'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'PG-05' in 0.00s
[12:44:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[PG-06]'/minecraft:pg-06
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'PG-06'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'PG-06'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'PG-06'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'PG-06' in 0.00s
[12:44:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[PG-01]'/minecraft:pg-01
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'PG-01'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'PG-01'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'PG-01'
[12:44:31] [Server thread/INFO]: [ChunkHolderManager] Saved 1 block chunks, 1 entity chunks, 0 poi chunks in world 'PG-01' in 0.04s
[12:44:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[12:44:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (PG-02): All chunks are saved
[12:44:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (PG-03): All chunks are saved
[12:44:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (PG-04): All chunks are saved
[12:44:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (PG-05): All chunks are saved
[12:44:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (PG-06): All chunks are saved
[12:44:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (PG-01): All chunks are saved
[12:44:31] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved