Paste #133898: Citizens

Date: 2025/06/09 15:53:34 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[23:37:03] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-LTS; Eclipse Adoptium Temurin-21.0.7+6) on Linux 6.8.0-60-generic (amd64)
[23:37:03] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) for Minecraft 1.21.4
[23:37:03] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[23:37:03] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/citizens-2.0.38-SNAPSHOT.jar'...
[23:37:04] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/citizens-2.0.38-SNAPSHOT.jar' in 822ms.
[23:37:05] [ServerMain/INFO]: [PluginInitializerManager] Initialized 70 plugins
[23:37:05] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - EconomyShopGUI (6.12.0), FancyHolograms (2.4.2)
[23:37:05] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (68):
 - AdvancedBan (2.3.0), AdvancedLinks (1.1), AuraSkills (2.2.8), AxAFKZone (1.5.2), AxKills (1.0.5), AxRewards (3.3.0), AxSellwands (1.8.3), AxTrade (1.15.1), AxVaults (2.6.5), BetterBalls (0.7-BETA), BetterRTP (3.6.13), BetterTeams (4.12.0), BlueSlimeCore (2.9.6.431), CMILib (1.5.4.1), ChatGames (1.2.1), Citizens (2.0.38-SNAPSHOT (build 3800)), Citizens (2.0.38-SNAPSHOT (build 3814)), CombatLogX (11.5.0.0.1242), CoreProtect (22.4), CrazyAuctions (1.6.1), CrazyVouchers (4.1.1), CustomF3Brand (1.2.1), CyberLevels (0.5.6), DeluxeMenus (1.14.0-Release), DeluxeTags (1.8.2-Release), DiscordSRV (1.29.0), EZColors (2.2.5), EpicRename (3.11.1), Essentials (2.21.1-dev+12-8455212), EssentialsSpawn (2.21.1-dev+12-8455212), ExcellentCrates (5.3.5), GSit (1.13.0), HeadDrop (4.34), HealthSMP (1.0), Infiniteannouncements (2.3.1), JShader (1.1), Jobs (5.2.5.0), KoTH (2.0.8), LPC (3.6.0), LuckPerms (5.4.88), LuckyBounties (2.6.2), Mclogs (2.4.1), MiniMOTD (2.1.4), Multiverse-Core (4.3.1-b861), NBTAPI (2.14.1), Pl-Hide-Free (2.0.2), PlaceholderAPI (2.11.6), PlayerPoints (3.2.6), PlugManX (2.3.0), ProtocolLib (5.3.0-SNAPSHOT-726), Quests (3.15.2-b216e2b), ResourceWorld (2.1.0), RocketPlaceholders (2.3.2), SpawnerMeta (24.8), StaffChat (2.3), SuperVanish (6.2.20), TAB (5.2.1), TerraformGenerator (18.1.2), UltraCosmetics (3.11.2-RELEASE), Vault (1.7.3), ViaBackwards (5.3.1), ViaVersion (5.3.1), Votifier (2.7.3), WorldEdit (7.3.9+6959-7adf70b), WorldGuard (7.0.13+82fdc65), ajLeaderboards (2.6.8), nightcore (2.7.3), zVoteParty (1.1.0.3)
[23:37:07] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[23:37:07] [ServerMain/INFO]: Loaded 1370 recipes
[23:37:07] [ServerMain/INFO]: Loaded 1481 advancements
[23:37:07] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[23:37:07] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 131.3ms
[23:37:08] [Server thread/INFO]: Starting minecraft server version 1.21.4
[23:37:08] [Server thread/INFO]: Loading properties
[23:37:08] [Server thread/INFO]: This server is running Paper version 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[23:37:08] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[23:37:08] [Server thread/INFO]: Server Ping Player Sample Count: 12
[23:37:08] [Server thread/INFO]: Using 4 threads for Netty based IO
[23:37:08] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[23:37:08] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[23:37:08] [Server thread/INFO]: Default game type: SURVIVAL
[23:37:08] [Server thread/INFO]: Generating keypair
[23:37:08] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25567
[23:37:08] [Server thread/INFO]: Using epoll channel type
[23:37:08] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[23:37:08] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[23:37:08] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'Citizens' for files 'plugins/.paper-remapped/Citizens.jar' and 'plugins/.paper-remapped/citizens-2.0.38-SNAPSHOT.jar' in 'plugins/.paper-remapped'
[23:37:08] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[23:37:08] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/com/zaxxer/HikariCP/6.0.0/HikariCP-6.0.0.jar
[23:37:08] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[23:37:08] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[23:37:08] [Server thread/INFO]: [nightcore] Server version detected as Paper 1.21.4.
[23:37:08] [Server thread/INFO]: [nightcore] [Core Components] ENTITY_ID_GENERATOR: Loaded
[23:37:08] [Server thread/INFO]: [nightcore] [Core Components] ITEM_NBT_COMPRESSOR: Loaded
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.2/phtree-2.8.2.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.4.0/adventure-platform-bukkit-4.4.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.4.0/adventure-platform-api-4.4.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.4.0/adventure-text-serializer-bungeecord-4.4.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.21.0/adventure-text-serializer-legacy-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.21.0/adventure-nbt-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.21.0/adventure-text-serializer-gson-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.21.0/adventure-text-serializer-json-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-commons/4.21.0/adventure-text-serializer-commons-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.21.0/adventure-text-serializer-gson-legacy-impl-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.21.0/adventure-text-serializer-json-legacy-impl-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.4.0/adventure-platform-facet-4.4.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.4.0/adventure-platform-viaversion-4.4.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.21.0/adventure-text-minimessage-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-api/4.21.0/adventure-api-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-key/4.21.0/adventure-key-4.21.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loading 2 libraries... please wait
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/container/libraries/com/github/cryptomorin/XSeries/13.3.0/XSeries-13.3.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/container/libraries/com/zaxxer/HikariCP/6.3.0/HikariCP-6.3.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loading 4 libraries... please wait
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/json/json/20240205/json-20240205.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/junit/junit/4.10/junit-4.10.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/bstats/bstats-bukkit/3.0.2/bstats-bukkit-3.0.2.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/bstats/bstats-base/3.0.2/bstats-base-3.0.2.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[23:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[23:37:09] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[23:37:13] [Server thread/WARN]: Legacy plugin StaffChat v2.3 does not specify an api-version.
[23:37:13] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.1
[23:37:13] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.1 is now loaded. Registering protocol transformers and injecting...
[23:37:14] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[23:37:14] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[23:37:14] [Server thread/INFO]: [ViaBackwards] Loading translations...
[23:37:14] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[23:37:14] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.88
[23:37:14] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[23:37:14] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[23:37:14] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3
[23:37:14] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.6
[23:37:14] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.9+6959-7adf70b
[23:37:14] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@78bfce81]
[23:37:14] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-726
[23:37:14] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
[23:37:14] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1-dev+12-8455212
[23:37:14] [Server thread/INFO]: [SpawnerMeta] Loading server plugin SpawnerMeta v24.8
[23:37:14] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[23:37:14] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[23:37:14] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.20
[23:37:14] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.3
[23:37:14] [Server thread/INFO]: [JShader] Loading server plugin JShader v1.1
[23:37:14] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.12.0
[23:37:14] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3800)
[23:37:14] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.6.431
[23:37:14] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[23:37:14] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[23:37:14] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[23:37:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[23:37:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[23:37:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[23:37:14] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.4.1
[23:37:14] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[23:37:14] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.5
[23:37:14] [Server thread/INFO]: [EZColors] Loading server plugin EZColors v2.2.5
[23:37:14] [Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.3.1
[23:37:14] [Server thread/INFO]: [CLV] Loading server plugin CyberLevels v0.5.6
[23:37:14] [Server thread/INFO]: [RocketPlaceholders] Loading server plugin RocketPlaceholders v2.3.2
[23:37:14] [Server thread/INFO]: [RocketPlaceholders] Loading libraries, please wait..
[23:37:15] [Server thread/INFO]: [RocketPlaceholders] Loaded all libraries in 58ms.
[23:37:15] [Server thread/INFO]: [AxRewards] Loading server plugin AxRewards v3.3.0
[23:37:15] [Server thread/INFO]: [AxRewards] Loading library commons-math3
[23:37:15] [Server thread/INFO]: [AxRewards] Loading library caffeine
[23:37:15] [Server thread/INFO]: [AxRewards] Loading library snakeyaml
[23:37:15] [Server thread/INFO]: [AxRewards] Loading library mysql-connector-j
[23:37:15] [Server thread/INFO]: [AxRewards] Loading library sqlite-jdbc
[23:37:15] [Server thread/INFO]: [AxRewards] Loading library h2
[23:37:15] [Server thread/INFO]: [AxRewards] Loading library postgresql
[23:37:15] [Server thread/INFO]: [AxRewards] Loading library HikariCP
[23:37:15] [Server thread/INFO]: [AxRewards] Loading library commons-dbutils
[23:37:15] [Server thread/INFO]: [KoTH] Loading server plugin KoTH v2.0.8
[23:37:15] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.4
[23:37:15] [Server thread/INFO]: [AL] Loading server plugin AdvancedLinks v1.1
[23:37:15] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v4.1.1
[23:37:15] [Server thread/INFO]: [AxSellwands] Loading server plugin AxSellwands v1.8.3
[23:37:15] [Server thread/INFO]: [AxSellwands] Loading library commons-math3
[23:37:15] [Server thread/INFO]: [AxSellwands] Loading library caffeine
[23:37:15] [Server thread/INFO]: [AxSellwands] Loading library snakeyaml
[23:37:15] [Server thread/INFO]: [CrazyAuctions] Loading server plugin CrazyAuctions v1.6.1
[23:37:15] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[23:37:15] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[23:37:15] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[23:37:15] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.5.0.0.1242
[23:37:15] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[23:37:15] [Server thread/INFO]: [CombatLogX] Loading expansions...
[23:37:15] [Server thread/INFO]: [CombatLogX] Loading expansion 'EssentialsX Compatibility v17.2'...
[23:37:15] [Server thread/INFO]: [CombatLogX]  
[23:37:15] [Server thread/INFO]: [CombatLogX] Loading expansion 'Death Effects v17.0'...
[23:37:15] [Server thread/INFO]: [CombatLogX]  
[23:37:15] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v17.2'...
[23:37:15] [Server thread/INFO]: [CombatLogX]  
[23:37:15] [Thread-8/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[23:37:15] [Thread-8/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.14.1' Newest Version: 2.15.0'
[23:37:15] [Thread-8/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[23:37:15] [Server thread/INFO]: [CombatLogX] Loading expansion 'SuperVanish Compatibility v17.1'...
[23:37:15] [Server thread/INFO]: [CombatLogX]  
[23:37:15] [Server thread/INFO]: [CombatLogX] Loading expansion 'WorldGuard Compatibility v17.3'...
[23:37:15] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.13+82fdc65
[23:37:15] [Server thread/INFO]: [CombatLogX]  
[23:37:15] [Server thread/INFO]: [CombatLogX] Loading expansion 'Citizens Compatibility v17.15'...
[23:37:15] [Server thread/INFO]: [CombatLogX]  
[23:37:15] [Server thread/INFO]: [CombatLogX] Successfully loaded 6 expansions.
[23:37:15] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.11.2-RELEASE
[23:37:15] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[23:37:15] [Server thread/INFO]: [AxAFKZone] Loading server plugin AxAFKZone v1.5.2
[23:37:15] [Server thread/INFO]: [Mclogs] Loading server plugin Mclogs v2.4.1
[23:37:15] [Server thread/INFO]: [TerraformGenerator] Loading server plugin TerraformGenerator v18.1.2
[23:37:15] [Server thread/INFO]: [Pl-Hide-Free] Loading server plugin Pl-Hide-Free v2.0.2
[23:37:15] [Server thread/INFO]: [Pl-Hide-Free] Loading library caffeine
[23:37:15] [Server thread/INFO]: [HealthSMP] Loading server plugin HealthSMP v1.0
[23:37:15] [Server thread/INFO]: [AxTrade] Loading server plugin AxTrade v1.15.1
[23:37:15] [Server thread/INFO]: [AxVaults] Loading server plugin AxVaults v2.6.5
[23:37:15] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15.2-b216e2b
[23:37:15] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.8
[23:37:15] [Server thread/INFO]: [AxKills] Loading server plugin AxKills v1.0.5
[23:37:15] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[23:37:15] [Server thread/INFO]: [BetterBalls] Loading server plugin BetterBalls v0.7-BETA
[23:37:15] [Server thread/INFO]: [BetterBalls] Inventory title with support for more than 32 characters. Skipping..
[23:37:15] [Server thread/INFO]: [BetterBalls] Hex colors are available! Ready for RGB..
[23:37:15] [Server thread/INFO]: [BetterBalls] Old constructor for HoverEvent found! Using it..
[23:37:15] [Server thread/INFO]: [BetterBalls] New sendTitle method found! Using it..
[23:37:15] [Server thread/INFO]: [BetterBalls] New setUnbreakable method found! Using it..
[23:37:15] [Server thread/INFO]: [BetterBalls] New isUnbreakable method found! Using it..
[23:37:15] [Server thread/INFO]: [BetterBalls] WorldGuard found! Registering custom flag(s)..
[23:37:15] [Server thread/INFO]: [BetterBalls] WorldGuard v7.x or newer detected. Using new methods..
[23:37:15] [Server thread/INFO]: [BetterBalls] [WorldGuard] Successfully registered 'betterballs-cannot-spawn' flag!
[23:37:15] [Server thread/INFO]: [BetterBalls] [WorldGuard] Successfully registered 'betterballs-cannot-catch' flag!
[23:37:15] [Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.12.0
[23:37:15] [Server thread/INFO]: [BetterTeams] [BetterTeams] Checking if the file config.yml is up to date
[23:37:15] [Server thread/INFO]: [BetterTeams] [BetterTeams] File is up to date
[23:37:15] [Server thread/INFO]: [CustomF3Brand] Loading server plugin CustomF3Brand v1.2.1
[23:37:15] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.4.2
[23:37:15] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.5.0
[23:37:15] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.11.1
[23:37:15] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.1-dev+12-8455212
[23:37:15] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.13.0
[23:37:15] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully loaded FancyHolograms version 2.4.2
[23:37:15] [Server thread/INFO]: [ResourceWorld] Loading server plugin ResourceWorld v2.1.0
[23:37:15] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.1
[23:37:15] [Server thread/INFO]: [zVoteParty] Loading server plugin zVoteParty v1.1.0.3
[23:37:15] [Server thread/INFO]: [HeadDrop] Loading server plugin HeadDrop v4.34
[23:37:15] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:37:15] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@4e866a89
[23:37:15] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:37:15] [Server thread/INFO]: [HeadDrop] Hooked into WorldGuard!
[23:37:15] [Server thread/INFO]: [ChatGames] Loading server plugin ChatGames v1.2.1
[23:37:15] [Server thread/INFO]: [LuckyBounties] Loading server plugin LuckyBounties v2.6.2
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.6.8
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[23:37:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[23:37:15] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.3.1
[23:37:15] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.0
[23:37:15] [Server thread/INFO]: true
[23:37:15] [Server thread/INFO]: [StaffChat] Loading server plugin StaffChat v2.3
[23:37:15] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[23:37:15] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.88
[23:37:16] [Server thread/INFO]:         __    
[23:37:16] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.88
[23:37:16] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[23:37:16] [Server thread/INFO]: 
[23:37:16] [Server thread/INFO]: [LuckPerms] Loading configuration...
[23:37:16] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[23:37:16] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[23:37:17] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[23:37:17] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1488ms)
[23:37:17] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3
[23:37:17] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[23:37:17] [Server thread/INFO]: [Vault] Enabled Version 1.7.3
[23:37:17] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[23:37:17] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.6
[23:37:17] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.2.5
[23:37:17] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[23:37:17] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.9+6959-7adf70b
[23:37:17] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[23:37:17] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[23:37:17] [Server thread/WARN]: 
**********************************************
** This WorldEdit version does not fully support your version of Bukkit.
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**
** Please see https://worldedit.enginehub.org/en/latest/faq/#bukkit-adapters
**********************************************

[23:37:17] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[23:37:17] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.3
[23:37:17] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[23:37:17] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[23:37:17] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[23:37:17] [Server thread/INFO]: [nightcore] [DEBUG] Inject post-loading code...
[23:37:17] [Server thread/INFO]: [nightcore] Plugin loaded in 39 ms!
[23:37:17] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.6.431
[23:37:17] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[23:37:17] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[23:37:17] [Server thread/INFO]: [TerraformGenerator] Enabling TerraformGenerator v18.1.2
[23:37:17] [Server thread/INFO]: [TerraformGenerator] Custom Logger Initialized
[23:37:17] [Server thread/INFO]: [TerraformGenerator] bStats Metrics enabled.
[23:37:17] [Server thread/INFO]: [TerraformGenerator] Detected version: 1.21.4, number: 21.4
[23:37:17] [Server thread/INFO]: [LuckyBounties] Enabling LuckyBounties v2.6.2
[23:37:17] [Server thread/INFO]: [LuckyBounties] Loading saved bounties
[23:37:17] [Server thread/INFO]: [LuckyBounties] Loaded bounties
[23:37:17] [Server thread/INFO]: [LuckyBounties] Loading saved player-stats
[23:37:17] [Server thread/INFO]: [LuckyBounties] Loaded player-stats
[23:37:17] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[23:37:17] [Server thread/WARN]:     at LuckyBounties-2.6.2.jar//de.lucky44.luckybounties.LuckyBounties.onEnable(LuckyBounties.java:143)
[23:37:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[23:37:17] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[23:37:17] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[23:37:17] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[23:37:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658)
[23:37:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607)
[23:37:17] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278)
[23:37:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[23:37:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[23:37:17] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[23:37:17] [Server thread/INFO]: [LuckyBounties] Plugin enabled
[23:37:17] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.0
[23:37:17] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[23:37:17] [Server thread/WARN]:     at PlugManX.jar//com.rylinaux.plugman.util.BukkitCommandWrap.<init>(BukkitCommandWrap.java:28)
[23:37:17] [Server thread/WARN]:     at PlugManX.jar//com.rylinaux.plugman.PlugMan.onEnable(PlugMan.java:225)
[23:37:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[23:37:17] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[23:37:17] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[23:37:17] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[23:37:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658)
[23:37:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607)
[23:37:17] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278)
[23:37:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[23:37:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[23:37:17] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[23:37:18] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[23:37:18] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[23:37:18] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[23:37:18] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[23:37:18] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[23:37:18] [Server thread/INFO]: Preparing level "world"
[23:37:18] [Server thread/INFO]: [TerraformGenerator] Detected world: world, commencing injection... 
[23:37:18] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[23:37:18] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[23:37:18] [Server thread/INFO]: Preparing spawn area: 0%
[23:37:18] [Server thread/INFO]: Time elapsed: 356 ms
[23:37:18] [Server thread/INFO]: [TerraformGenerator] world loaded.
[23:37:18] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[23:37:18] [Server thread/INFO]: Preparing spawn area: 0%
[23:37:18] [Server thread/INFO]: Time elapsed: 87 ms
[23:37:18] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[23:37:18] [Server thread/INFO]: Preparing spawn area: 0%
[23:37:18] [Server thread/INFO]: Time elapsed: 32 ms
[23:37:18] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.1
[23:37:18] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[23:37:18] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[23:37:18] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[23:37:18] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[23:37:18] [Server thread/INFO]: [Votifier] Loaded token for website: default
[23:37:18] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[23:37:19] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[23:37:19] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1-dev+12-8455212
[23:37:19] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8192.
[23:37:19] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[23:37:19] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[23:37:19] [Server thread/INFO]: [Essentials] No kits found to migrate.
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[23:37:19] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[23:37:19] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[23:37:19] [Server thread/INFO]: [Essentials] Using locale en_US
[23:37:19] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[23:37:19] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[23:37:19] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[23:37:19] [Server thread/INFO]: [SpawnerMeta] Enabling SpawnerMeta v24.8
[23:37:19] [Server thread/INFO]: [SpawnerMeta v24.8] enabled!
[23:37:19] [Server thread/INFO]: [SpawnerMeta] Vault has been found, economy enabled!
[23:37:19] [Server thread/INFO]: [SpawnerMeta] PlayerPoints has been found, player points enabled!
[23:37:19] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[23:37:19] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[23:37:19] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[23:37:19] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[23:37:19] [Server thread/INFO]: [WorldGuard] Loading region data...
[23:37:19] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[23:37:19] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[23:37:19] [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.
[23:37:19] [Server thread/INFO]: Could not set generator for world 'spawn': Plugin 'VoidGen' does not exist
[23:37:19] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[23:37:19] [Server thread/INFO]: Preparing spawn area: 0%
[23:37:19] [Server thread/INFO]: Time elapsed: 83 ms
[23:37:19] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[23:37:19] [Server thread/INFO]: Could not set generator for world 'spawn': Plugin 'VoidGen' does not exist
[23:37:19] [Server thread/INFO]: Preparing start region for dimension minecraft:arena
[23:37:19] [Server thread/INFO]: Preparing spawn area: 0%
[23:37:19] [Server thread/INFO]: Time elapsed: 84 ms
[23:37:19] [Server thread/INFO]: [WorldGuard] (arena) TNT ignition is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (arena) Lighters are PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (arena) Lava fire is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (arena) Fire spread is UNRESTRICTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'arena'
[23:37:19] [Server thread/INFO]: Preparing start region for dimension minecraft:resource_world
[23:37:19] [Server thread/INFO]: Preparing spawn area: 0%
[23:37:19] [Server thread/INFO]: Time elapsed: 76 ms
[23:37:19] [Server thread/INFO]: [WorldGuard] (resource_world) TNT ignition is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (resource_world) Lighters are PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (resource_world) Lava fire is PERMITTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] (resource_world) Fire spread is UNRESTRICTED.
[23:37:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'resource_world'
[23:37:19] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[23:37:19] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[23:37:20] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.20
[23:37:20] [Server thread/INFO]: [SuperVanish] Hooked into PaperSpigot for server list ping support
[23:37:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.20]
[23:37:20] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[23:37:20] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[23:37:20] [Server thread/INFO]: [JShader] Enabling JShader v1.1
[23:37:20] [Server thread/INFO]: [JShader] Looking for Java Version...
[23:37:20] [Server thread/INFO]: [JShader]     Java Version: 21.0.7
[23:37:20] [Server thread/INFO]: [JShader]     Legacy Java: false
[23:37:20] [Server thread/INFO]: [JShader] Checking if JavaScript engine is already shaded..
[23:37:20] [Server thread/INFO]: [JShader] JavaScript engine shaded.
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.12.0
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 6 section configs from /sections/
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 6 shop configs from /shops/
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 6 shop sections.
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.21.4...
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to DEFAULT in config
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using plugin default spawners...
[23:37:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.1.0]
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [DEBUG]: Found incompatible component tag for current minecraft version: Did you mean 'repair_cost' instead of 'RepairCost'?
Please change the value manually to get rid of this message
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [WARN]: Item path in config.yml: sold-items-ignored-NBTtags
[23:37:20] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 151ms to complete
[23:37:20] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3800)
[23:37:20] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.12.0 but found v6.13.1.
[23:37:20] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[23:37:20] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[23:37:20] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[bT.
[23:37:20] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[null.
[23:37:20] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3800) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R4/boss/CraftBossBar
    at Citizens.jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2746) ~[Citizens.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens.jar:?]
    at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens.jar:?]
    at Citizens.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R4.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[23:37:20] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3800)
[23:37:20] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[23:37:20] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[23:37:20] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[23:37:20] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[23:37:20] [Server thread/INFO]: --------------------
[23:37:20] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[23:37:20] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[23:37:20] [Server thread/INFO]: --------------------
[23:37:20] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[23:37:20] [Server thread/INFO]: [NBTAPI] Checking bindings...
[23:37:20] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[23:37:20] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[23:37:20] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[23:37:20] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] No bot token has been set in the config; a bot token is required to connect to Discord.
[23:37:20] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[23:37:20] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.4.1
[23:37:20] [pool-69-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[23:37:21] [Server thread/INFO]: Server version: v1_21_R3 - 1.21.4 - paper  1.21.4-232-12d8fe0 (MC: 1.21.4)
[23:37:21] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[23:37:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.4.1]
[23:37:21] [Server thread/INFO]: PlaceholderAPI hooked.
[23:37:21] [Server thread/INFO]: Updated (EN) language file. Took 13ms
[23:37:21] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[23:37:21] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:37:21] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[23:37:21] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:37:21] [Server thread/INFO]: 
 
[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]
 
[23:37:21] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.5
[23:37:21] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[23:37:21] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[23:37:21] [Server thread/WARN]: [ExcellentCrates] EconomyBridge is not installed. Crate open cost feature will be disabled.
[23:37:21] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[23:37:21] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@26b581f2
[23:37:21] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[23:37:21] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[23:37:21] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crate keys.
[23:37:21] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[23:37:21] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crates.
[23:37:21] [Server thread/ERROR]: [nightcore] Invalid material 'null'. Caused by '/home/container/plugins/ExcellentCrates/milestones.yml'.
[23:37:21] [Server thread/ERROR]: [nightcore] Invalid material 'null'. Caused by '/home/container/plugins/ExcellentCrates/menu/default.yml'.
[23:37:21] [Server thread/ERROR]: [nightcore] Invalid material 'null'. Caused by '/home/container/plugins/ExcellentCrates/menu/default.yml'.
[23:37:21] [Server thread/ERROR]: [nightcore] Invalid material 'null'. Caused by '/home/container/plugins/ExcellentCrates/menu/default.yml'.
[23:37:21] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[23:37:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.5]
[23:37:21] [Server thread/INFO]: [ExcellentCrates] [DEBUG] Inject post-loading code...
[23:37:21] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 223 ms!
[23:37:21] [Server thread/INFO]: [EZColors] Enabling EZColors v2.2.5
[23:37:23] [Server thread/INFO]: [!] Chat Colors →  Successfully downloaded 12 languages from the cloud!
[23:37:23] [Server thread/INFO]: [!] Chat Colors →  Loading EZColors v2.2.5!
[23:37:23] [Server thread/INFO]: [!] Chat Colors →  Found a compatible version. Hooking into V1_21_R1!
[23:37:23] [Server thread/INFO]: [!] Chat Colors →  Using HIGHEST as the Chat Listener.
[23:37:23] [Server thread/INFO]: [!] Chat Colors →  Found PlaceholderAPI. Loading hook!
[23:37:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ezcolors [1.0.0]
[23:37:23] [Server thread/INFO]: [!] Chat Colors →  Successfully Loaded EZColors v2.2.5 in 1498ms!
[23:37:23] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.3.1
[23:37:23] [Server thread/INFO]:  
[23:37:23] [Server thread/INFO]: ====================================
[23:37:23] [Server thread/INFO]: Plugin name: Infiniteannouncements
[23:37:23] [Server thread/INFO]: Version: 2.3.1
[23:37:23] [Server thread/INFO]: Core version: 0.7.25
[23:37:23] [Server thread/INFO]: ====================================
[23:37:23] [Server thread/INFO]:  
[23:37:23] [Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[23:37:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: infiniteannouncements [1.0.0]
[23:37:23] [Server thread/INFO]: [CLV] Enabling CyberLevels v0.5.6
[23:37:23] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[23:37:23] [Server thread/INFO]: [CLV] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╱╱╱╭╮
[23:37:23] [Server thread/INFO]: [CLV] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱╱╱╱┃┃
[23:37:23] [Server thread/INFO]: [CLV] ┃┃╰╋╮╭┫╰━┳━━┳━┫┃╱╱╭━━┳╮╭┳━━┫┃╭━━╮
[23:37:23] [Server thread/INFO]: [CLV] ┃┃╭┫┃┃┃╭╮┃┃━┫╭┫┃╭┫┃━┫╰╯┃┃━┫┃┃━━┫
[23:37:23] [Server thread/INFO]: [CLV] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃┃╰━╯┃┃━╋╮╭┫┃━┫╰╋━━┃
[23:37:23] [Server thread/INFO]: [CLV] ╰━━━┻━╮╭┻━━┻━━┻╯╰━━━┻━━╯╰╯╰━━┻━┻━━╯
[23:37:23] [Server thread/INFO]: [CLV] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast
[23:37:23] [Server thread/INFO]: [CLV] ╱╱╱╱╰━━╯  Version: 0.5.6
[23:37:23] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[23:37:23] [Server thread/INFO]: [CLV] 
[23:37:23] [Server thread/INFO]: [CLV] Loading YAML files...
[23:37:23] [Server thread/INFO]: [CLV] Loaded file config.yml.
[23:37:23] [Server thread/INFO]: [CLV] Loaded file lang.yml.
[23:37:23] [Server thread/INFO]: [CLV] Loaded file levels.yml.
[23:37:23] [Server thread/INFO]: [CLV] Loaded file rewards.yml.
[23:37:23] [Server thread/INFO]: [CLV] Loaded file earn-exp.yml.
[23:37:23] [Server thread/INFO]: [CLV] Loaded file anti-abuse.yml.
[23:37:23] [Server thread/INFO]: [CLV] Loaded 6 files in 15ms.
[23:37:23] [Server thread/INFO]: [CLV] 
[23:37:23] [Server thread/INFO]: [CLV] Loading exp earning events...
[23:37:23] [Server thread/INFO]: [CLV] Loaded 7 exp earn events in 1ms.
[23:37:23] [Server thread/INFO]: [CLV] 
[23:37:23] [Server thread/INFO]: [CLV] Loading anti-abuse...
[23:37:23] [Server thread/INFO]: [CLV] Loaded 2 anti-abuse settings in 0ms.
[23:37:23] [Server thread/INFO]: [CLV] 
[23:37:23] [Server thread/INFO]: [CLV] Loading level data...
[23:37:23] [Server thread/INFO]: [CLV] Loaded 100 level(s) in 0ms.
[23:37:23] [Server thread/INFO]: [CLV] 
[23:37:23] [Server thread/INFO]: [CLV] Loading leaderboard data...
[23:37:23] [Server thread/INFO]: [CLV] Loaded 10 players in 1ms.
[23:37:23] [Server thread/INFO]: [CLV] 
[23:37:23] [Server thread/INFO]: [CLV] Loading reward data...
[23:37:23] [Server thread/INFO]: [CLV] Loaded 1 reward(s) in 1ms.
[23:37:23] [Server thread/INFO]: [CLV] 
[23:37:23] [Server thread/INFO]: [CLV] Loading leaderboard data...
[23:37:23] [Server thread/INFO]: [CLV] Loaded 10 players in 0ms.
[23:37:23] [Server thread/INFO]: [CLV] 
[23:37:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clv [0.5.6]
[23:37:23] [Server thread/INFO]: [CLV] Loaded CLV v0.5.6 in 34ms.
[23:37:23] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[23:37:23] [Server thread/INFO]: [RocketPlaceholders] Enabling RocketPlaceholders v2.3.2
[23:37:23] [Server thread/INFO]: [RocketPlaceholders] Loaded 16 placeholders!
[23:37:23] [Server thread/INFO]: [RocketPlaceholders] Hooked into JShader for JavaScript support.
[23:37:23] [Server thread/INFO]: [RocketPlaceholders] PlaceholderAPI hooked!
[23:37:23] [Server thread/INFO]: [RocketPlaceholders] RocketPlaceholders v2.3.2 by Lorenzo0111 is now enabled!
[23:37:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rp [2.3.2]
[23:37:23] [Server thread/INFO]: [AxRewards] Enabling AxRewards v3.3.0
[23:37:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axrewards [1.0.0]
[23:37:23] [Server thread/INFO]: [AxRewards] Hooked into PlaceholderAPI!
[23:37:23] [Server thread/INFO]: [AxRewards] Loaded plugin! Using H2 database to store data!
[23:37:23] [Server thread/INFO]: [KoTH] Enabling KoTH v2.0.8
[23:37:23] [Server thread/INFO]: [KoTH] Enabling KoTH v2.0.8
[23:37:23] [Server thread/INFO]: [KoTH] PlaceholderAPI Support: Yes
[23:37:23] [Server thread/INFO]: [KoTH] Scoreboard Hook: Scoreboard Disabled
[23:37:23] [Server thread/INFO]: [KoTH] The koth blue was loaded correctly.
[23:37:23] [Server thread/INFO]: [KoTH] The koth red was loaded correctly.
[23:37:23] [Server thread/INFO]: [KoTH] The koth green was loaded correctly.
[23:37:23] [Server thread/INFO]: [KoTH] You are using the latest version of KoTH!
[23:37:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: koth [1.0]
[23:37:23] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.4
[23:37:24] [Server thread/INFO]: [AL] Enabling AdvancedLinks v1.1
[23:37:24] [Server thread/INFO]: [AL] The plugin has been successfully enabled! Version: 1.1
[23:37:24] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v4.1.1
[23:37:24] [Server thread/INFO]: [AxSellwands] Enabling AxSellwands v1.8.3
[23:37:24] [Server thread/INFO]: [AxSellwands] Hooked into Vault!
[23:37:24] [Server thread/INFO]: [AxSellwands] Hooked into EconomyShopGUI!
[23:37:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axsellwands [1.0.0]
[23:37:24] [Server thread/INFO]: [AxSellwands] Hooked into WorldGuard!
[23:37:24] [Server thread/INFO]: [AxSellwands] Loaded plugin!
[23:37:24] [Server thread/INFO]: [CrazyAuctions] Enabling CrazyAuctions v1.6.1
[23:37:24] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[23:37:24] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[23:37:24] [Server thread/INFO]: [DeluxeMenus] 39 GUI menus loaded!
[23:37:24] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[23:37:24] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[23:37:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[23:37:24] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[23:37:24] [Server thread/INFO]: [BetterRTP] Cooldown = 180
[23:37:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[23:37:24] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.5.0.0.1242
[23:37:24] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[23:37:24] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[23:37:24] [Server thread/INFO]: CombatLogX was loaded successfully.
[23:37:24] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[23:37:24] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Citizens Compatibility v17.15'...
[23:37:24] [Server thread/WARN]: [CombatLogX] [Citizens Compatibility] A dependency was found but it was not enabled: Citizens
[23:37:24] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Citizens Compatibility v17.15'...
[23:37:24] [Server thread/INFO]: [CombatLogX]  
[23:37:24] [Server thread/INFO]: [CombatLogX] Enabling expansion 'EssentialsX Compatibility v17.2'...
[23:37:24] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Successfully found a dependency: Essentials v2.21.1-dev+12-8455212
[23:37:24] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Detected EssentialsX successfully.
[23:37:24] [Server thread/INFO]: [CombatLogX]  
[23:37:24] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v17.2'...
[23:37:24] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.6
[23:37:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: combatlogx [17.2]
[23:37:24] [Server thread/INFO]: [CombatLogX]  
[23:37:24] [Server thread/INFO]: [CombatLogX] Enabling expansion 'SuperVanish Compatibility v17.1'...
[23:37:24] [Server thread/WARN]: [CombatLogX] [SuperVanish Compatibility] A dependency is not installed on the server: PremiumVanish
[23:37:24] [Server thread/INFO]: [CombatLogX] [SuperVanish Compatibility] Missing PremiumVanish, checking for regular SuperVanish...
[23:37:24] [Server thread/INFO]: [CombatLogX] [SuperVanish Compatibility] Successfully found a dependency: SuperVanish v6.2.20
[23:37:24] [Server thread/INFO]: [CombatLogX]  
[23:37:24] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v17.3'...
[23:37:24] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.13+82fdc65
[23:37:24] [Server thread/INFO]: [CombatLogX]  
[23:37:24] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Death Effects v17.0'...
[23:37:24] [Server thread/INFO]: [CombatLogX]  
[23:37:24] [Server thread/INFO]: [CombatLogX] Successfully enabled 5 expansions.
[23:37:24] [Server thread/INFO]: CombatLogX was enabled successfully.
[23:37:24] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.11.2-RELEASE
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[23:37:25] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.11.2-RELEASE (commit a83d951)
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Initializing module v1_21 (expected version: 1.21.5)
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Loading NMS-less mode...
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Loaded NMS-less mode
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Paper-specific features enabled
[23:37:25] [Server thread/INFO]: [UltraCosmetics] 
[23:37:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [3.11.2-RELEASE]
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[23:37:25] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[23:37:25] [Server thread/INFO]: [UltraCosmetics] 
[23:37:25] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[23:37:25] [Server thread/INFO]: [UltraCosmetics] 
[23:37:25] [Server thread/INFO]: [UltraCosmetics] Hooked into PlayerPoints for economy.
[23:37:25] [Server thread/INFO]: [UltraCosmetics] 
[23:37:25] [Server thread/INFO]: [UltraCosmetics] 
[23:37:25] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 810ms!
[23:37:25] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[23:37:25] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[23:37:25] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[23:37:25] [Server thread/INFO]: [DeluxeTags] 22 tags loaded
[23:37:25] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[23:37:25] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[23:37:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[23:37:25] [Server thread/INFO]: [DeluxeTags] ----------------------------
[23:37:25] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[23:37:25] [Server thread/INFO]: [DeluxeTags]  
[23:37:25] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[23:37:25] [Server thread/INFO]: [DeluxeTags] The latest version
[23:37:25] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[23:37:25] [Server thread/INFO]: [DeluxeTags]  
[23:37:25] [Server thread/INFO]: [DeluxeTags] ----------------------------
[23:37:25] [Server thread/INFO]: [AxAFKZone] Enabling AxAFKZone v1.5.2
[23:37:26] [Server thread/INFO]: ╠ Loaded zone afk!
[23:37:26] [Server thread/INFO]: [Mclogs] Enabling Mclogs v2.4.1
[23:37:26] [Server thread/INFO]: [Pl-Hide-Free] Enabling Pl-Hide-Free v2.0.2
[23:37:26] [Server thread/INFO]: [HealthSMP] Enabling HealthSMP v1.0
[23:37:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lifesteal [1.0]
[23:37:26] [Server thread/INFO]: [AxTrade] Enabling AxTrade v1.15.1
[23:37:26] [Server thread/INFO]: [AxTrade] Hooked into Vault!
[23:37:26] [Server thread/INFO]: [AxTrade] Hooked into PlayerPoints!
[23:37:26] [Server thread/INFO]: [AxTrade] Loaded plugin!
[23:37:26] [Server thread/INFO]: [AxVaults] Enabling AxVaults v2.6.5
[23:37:27] [Server thread/INFO]: [AxVaults] Loaded plugin!
[23:37:27] [Server thread/INFO]: [Quests] Enabling Quests v3.15.2-b216e2b
[23:37:27] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[23:37:27] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[23:37:27] [Server thread/INFO]: [Quests] Your server is running version 1.21
[23:37:27] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[23:37:27] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.8
[23:37:27] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[23:37:27] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[23:37:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.8]
[23:37:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.8]
[23:37:27] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[23:37:27] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[23:37:27] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[23:37:27] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[23:37:27] [Server thread/INFO]: [AuraSkills] Loaded 151 config options in 15 ms
[23:37:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[23:37:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[23:37:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[23:37:27] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[23:37:27] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[23:37:27] [Server thread/INFO]: [AxKills] Enabling AxKills v1.0.5
[23:37:27] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[23:37:27] [Server thread/INFO]: [BetterBalls] Enabling BetterBalls v0.7-BETA
[23:37:27] [Server thread/INFO]:   ___      _   _           ___       _ _     Running v0.7-BETA (v1_21)
[23:37:27] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ ) __ _| | |___ Server Paper v1.21.4-232-12d8fe0 (MC: 1.21.4)
[23:37:27] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_| _ \/ _` | | (_-< Discord for support: https://alonsoaliaga.com/discord
[23:37:27] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |___/\__,_|_|_/__/ Thanks for using my plugin ❤!
[23:37:27] [Server thread/INFO]:           Developed by AlonsoAliaga
[23:37:27] [Server thread/INFO]: 
[23:37:27] [Server thread/INFO]: ==============================================================================================
[23:37:27] [Server thread/INFO]: [BetterBalls] You are using a Paper fork (Paper), plugin should work fine!
[23:37:27] [Server thread/INFO]: [BetterBalls] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[23:37:27] [Server thread/INFO]: ==============================================================================================
[23:37:27] [Server thread/INFO]: 
[23:37:27] [Server thread/INFO]: [BetterBalls] BungeeCord action bar available. Hooking..
[23:37:27] [Server thread/INFO]: [BetterBalls] ProtocolLib found! Checking..
[23:37:27] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[23:37:27] [Server thread/INFO]: [BetterBalls] Old ItemStack constructor is available!
[23:37:27] [Server thread/INFO]: [BetterBalls] SkullMeta#setOwningPlayer method is available for heads.
[23:37:27] [Server thread/INFO]: [BetterBalls] SkullMeta#setOwner method is available for heads.
[23:37:27] [Server thread/INFO]: [BetterBalls] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[23:37:27] [Server thread/INFO]: [BetterBalls] New setUnbreakable method found! Using it..
[23:37:27] [Server thread/INFO]: [BetterBalls] New setOwningPlayer method is available!
[23:37:27] [Server thread/INFO]: [BetterBalls] Old Bukkit#getOfflinePlayer(String name) method is available!
[23:37:27] [Server thread/INFO]: [BetterBalls] New isUnbreakable method found! Using it..
[23:37:27] [Server thread/INFO]: [BetterBalls] Random texture is disabled!
[23:37:27] [Server thread/INFO]: [BetterBalls] Unique textures is disabled!
[23:37:27] [Server thread/INFO]: [BetterBalls] Metadata filter is disabled!
[23:37:27] [Server thread/INFO]: [BetterBalls] Enabling Ball recipe!
[23:37:27] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.12.0
[23:37:27] [Server thread/INFO]: [BetterTeams] [BetterTeams] Checking if the file messages.yml is up to date
[23:37:27] [Server thread/INFO]: [BetterTeams] [BetterTeams] File is up to date
[23:37:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.12.0]
[23:37:27] [Server thread/INFO]: [BetterTeams] Display team name config value: prefix
[23:37:27] [Server thread/INFO]: [BetterTeams] Loading below name. Type: PREFIX
[23:37:27] [Server thread/INFO]: [BetterTeams] Not loading management
[23:37:27] [Server thread/INFO]: [CustomF3Brand] Enabling CustomF3Brand v1.2.1
[23:37:27] [Server thread/INFO]: PlaceholderAPI support enabled.
[23:37:27] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.4.2
[23:37:27] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully enabled FancyHolograms version 2.4.2
[23:37:27] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.5.0
[23:37:27] [Server thread/INFO]: ------------- Jobs -------------
[23:37:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.5.0]
[23:37:27] [Server thread/INFO]: PlaceholderAPI hooked.
[23:37:27] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loaded 15 holograms for all loaded worlds
[23:37:27] [Server thread/INFO]: Connected to database (SqLite)
[23:37:27] [Server thread/INFO]: Loaded 8 titles
[23:37:27] [Server thread/INFO]: Loaded 2 restricted areas!
[23:37:27] [Server thread/INFO]: [Jobs] Your defined (CARROT) protected block id/name is not correct!
[23:37:27] [Server thread/INFO]: [Jobs] Your defined (POTATO) protected block id/name is not correct!
[23:37:27] [Server thread/INFO]: Loaded 78 protected blocks timers
[23:37:28] [Server thread/INFO]: Loaded 1538 custom item names
[23:37:28] [Server thread/INFO]: Loaded 85 custom entity names
[23:37:28] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[23:37:28] [Server thread/INFO]: Loaded 42 custom enchant names
[23:37:28] [Server thread/INFO]: Loaded 46 custom enchant names
[23:37:28] [Server thread/INFO]: Loaded 16 custom color names
[23:37:28] [Server thread/INFO]: Update Woodcutter jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[23:37:28] [Server thread/INFO]: Loaded 5 jobs
[23:37:28] [Server thread/INFO]: Loaded 0 boosted items
[23:37:28] [Server thread/INFO]: Loaded 986 furnace for reassigning.
[23:37:28] [Server thread/INFO]: Loaded 203 brewing for reassigning.
[23:37:28] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[23:37:28] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[23:37:28] [Server thread/INFO]: Preloaded 4 players data in 0.0
[23:37:28] [Server thread/INFO]: WorldGuard detected.
[23:37:28] [Server thread/INFO]: Registering listeners...
[23:37:28] [Server thread/INFO]: Listeners registered successfully
[23:37:28] [Server thread/INFO]: Plugin has been enabled successfully.
[23:37:28] [Server thread/INFO]: ------------------------------------
[23:37:28] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.11.1
[23:37:28] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[23:37:28] [Server thread/INFO]: [EpicRename] Version: 3.11.1 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[23:37:28] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[23:37:28] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[23:37:28] [Server thread/INFO]: [!] Rename → Prefix set to: '[!] Rename → '
[23:37:28] [Server thread/INFO]: [!] Rename → Plugin Enabled!
[23:37:28] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.1-dev+12-8455212
[23:37:28] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[23:37:28] [Server thread/INFO]: [GSit] Enabling GSit v1.13.0
[23:37:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.13.0]
[23:37:28] [Server thread/INFO]: [!] Sit → The Plugin was successfully enabled.
[23:37:28] [Server thread/INFO]: [!] Sit → Link with PlaceholderAPI successful!
[23:37:28] [Server thread/INFO]: [!] Sit → Link with WorldGuard successful!
[23:37:28] [Server thread/INFO]: [ResourceWorld] Enabling ResourceWorld v2.1.0
[23:37:28] [Server thread/INFO]:  
[23:37:28] [Server thread/INFO]: Resource World v2.1.0
[23:37:28] [Server thread/INFO]:  
[23:37:28] [Server thread/INFO]:      Author: Nik
[23:37:28] [Server thread/INFO]:  
[23:37:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rw [2.1.0]
[23:37:28] [Server thread/INFO]: [TAB] Enabling TAB v5.2.1
[23:37:28] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[23:37:28] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "belowname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[23:37:28] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[23:37:28] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[23:37:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.2.1]
[23:37:28] [Server thread/INFO]: [TAB] [WARN] Found a total of 4 issues.
[23:37:28] [Server thread/INFO]: [TAB] Enabled in 76ms
[23:37:28] [Server thread/INFO]: [zVoteParty] Enabling zVoteParty v1.1.0.3
[23:37:28] [Server thread/INFO]: [zVoteParty v1.1.0.3] === ENABLE START ===
[23:37:28] [Server thread/INFO]: [zVoteParty v1.1.0.3] Plugin Version V1.1.0.3
[23:37:28] [Server thread/INFO]: [zVoteParty v1.1.0.3] Loaded 1 rewards
[23:37:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zvoteparty [1.1.0.3]
[23:37:28] [Server thread/INFO]: [zVoteParty v1.1.0.3] Hook NuVotifier
[23:37:28] [Server thread/INFO]: [zVoteParty v1.1.0.3] Loading 1 inventories
[23:37:28] [Server thread/INFO]: [zVoteParty v1.1.0.3] Loading 1 commands
[23:37:28] [Server thread/INFO]: [zVoteParty v1.1.0.3] === ENABLE DONE (34ms) ===
[23:37:28] [Server thread/INFO]: [HeadDrop] Enabling HeadDrop v4.34
[23:37:28] [Server thread/INFO]: 
[23:37:28] [Server thread/INFO]: ██╗  ██╗███████╗ █████╗ ██████╗ ██████╗ ██████╗  █████╗ ██████╗ 
[23:37:28] [Server thread/INFO]: ██║  ██║██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗
[23:37:28] [Server thread/INFO]: ███████║█████╗  ███████║██║  ██║██║  ██║██████╔╝██║  ██║██████╔╝
[23:37:28] [Server thread/INFO]: ██╔══██║██╔══╝  ██╔══██║██║  ██║██║  ██║██╔══██╗██║  ██║██╔═══╝ 
[23:37:28] [Server thread/INFO]: ██║  ██║███████╗██║  ██║██████╔╝██████╔╝██║  ██║╚█████╔╝██║     
[23:37:28] [Server thread/INFO]: ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═════╝ ╚═════╝ ╚═╝  ╚═╝ ╚════╝ ╚═╝     
[23:37:28] [Server thread/INFO]: 
[23:37:28] [Server thread/INFO]: --------------------------------------------------------------------------
[23:37:28] [Server thread/INFO]: [HeadDrop] HeadDrop 4.34 by RRS
[23:37:28] [Server thread/INFO]: [HeadDrop] Enabled successfully!
[23:37:28] [Server thread/INFO]: --------------------------------------------------------------------------
[23:37:28] [Server thread/INFO]: [ChatGames] Enabling ChatGames v1.2.1
[23:37:28] [Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[23:37:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[23:37:28] [Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[23:37:28] [Server thread/INFO]: [ChatGames] Points loaded successfully!
[23:37:28] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.8
[23:37:28] [FancyLogger/INFO]: [FancyHolograms] (ForkJoinPool.commonPool-worker-1) WARN: 
[23:37:28] [FancyLogger/INFO]: -------------------------------------------------------
[23:37:28] [FancyLogger/INFO]: You are not using the latest version of the FancyHolograms plugin.
[23:37:28] [FancyLogger/INFO]: Please update to the newest version (2.5.0).
[23:37:28] [FancyLogger/INFO]: https://modrinth.com/plugin/FancyHolograms
[23:37:28] [FancyLogger/INFO]: -------------------------------------------------------
[23:37:28] [FancyLogger/INFO]: 
[23:37:28] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[23:37:28] [Server thread/INFO]: [ajLeaderboards] The columns already exist for clv_player_level. Canceling updater and bumping DB version.
[23:37:28] [Server thread/INFO]: [ajLeaderboards] The columns already exist for playerpoints_points. Canceling updater and bumping DB version.
[23:37:28] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_deaths. Canceling updater and bumping DB version.
[23:37:28] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_hours_played. Canceling updater and bumping DB version.
[23:37:28] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[23:37:28] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance_commas. Canceling updater and bumping DB version.
[23:37:28] [Server thread/INFO]: [ajLeaderboards] Loaded 6 boards
[23:37:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.6.8]
[23:37:28] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[23:37:28] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[23:37:28] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.8 by ajgeiss0702 enabled!
[23:37:28] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.3.1
[23:37:28] [Server thread/INFO]: [StaffChat] Enabling StaffChat v2.3*
[23:37:28] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[23:37:28] [Server thread/WARN]: Could not register alias playtimelevels because it contains commands that do not exist: deluxemenu:playtime $1
[23:37:28] [Server thread/INFO]: [spark] Starting background profiler...
[23:37:29] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[23:37:29] [Server thread/INFO]: Done preparing level "world" (10.867s)
[23:37:29] [Server thread/INFO]: Running delayed init tasks
[23:37:29] [Craft Scheduler Thread - 4 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[23:37:29] [Craft Scheduler Thread - 6 - Essentials/INFO]: [Essentials] Fetching version information...
[23:37:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.2.6]
[23:37:29] [Craft Scheduler Thread - 32 - Vault/INFO]: [Vault] Checking for Updates ... 
[23:37:29] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3)!
[23:37:29] [ForkJoinPool.commonPool-worker-3/ERROR]: [PlaceholderAPI] Failed to load expansion Expansion-quests.jar (is a dependency missing?)
java.lang.NoClassDefFoundError: me/pikamug/quests/quests/Quest
    at java.base/java.lang.Class.getDeclaredMethods0(Native Method) ~[?:?]
    at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3578) ~[?:?]
    at java.base/java.lang.Class.getDeclaredMethods(Class.java:2676) ~[?:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$findExpansionInFile$7(LocalExpansionManager.java:429) ~[PlaceholderAPI-2.11.6.jar:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.quests.Quest
    at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:445) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 11 more
[23:37:29] [Craft Scheduler Thread - 3 - PlayerPoints/INFO]: [RoseGarden] An update for PlayerPoints (v3.3.2) is available! You are running v3.2.6.
[23:37:29] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[23:37:29] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.29.0
[23:37:29] [Craft Scheduler Thread - 2 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[23:37:29] [Craft Scheduler Thread - 2 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[23:37:29] [Craft Scheduler Thread - 28 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[23:37:29] [Craft Scheduler Thread - 23 - BetterTeams/WARN]: [BetterTeams] There is a new version of better teams released update here: (https://www.spigotmc.org/resources/better-teams.17129/)
[23:37:29] [Craft Scheduler Thread - 8 - CMILib/INFO]: New version of CMILib was detected. Please update it (1.5.4.1 -> 1.5.4.4)
[23:37:29] [Craft Scheduler Thread - 21 - ResourceWorld/INFO]: [!] Resource World → You're running the Latest Version <3
[23:37:29] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[23:37:29] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[23:37:29] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.6.431
[23:37:29] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.6.454
[23:37:29] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[23:37:29] [Craft Scheduler Thread - 6 - Essentials/WARN]: [Essentials] You're 15 EssentialsX dev build(s) out of date!
[23:37:29] [Craft Scheduler Thread - 6 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[23:37:29] [Server thread/INFO]: [AuraSkills] Loaded 15 skills with 323 total sources
[23:37:29] [Craft Scheduler Thread - 14 - MiniMOTD/INFO]: [MiniMOTD] There is an update available for MiniMOTD!
[23:37:29] [Craft Scheduler Thread - 14 - MiniMOTD/INFO]: [MiniMOTD] This server is running version v2.1.4, which is 2 versions outdated.
[23:37:29] [Craft Scheduler Thread - 14 - MiniMOTD/INFO]: [MiniMOTD] Download the latest version, v2.1.6 from GitHub at the link below:
[23:37:29] [Craft Scheduler Thread - 14 - MiniMOTD/INFO]: [MiniMOTD] https://github.com/jpenilla/MiniMOTD/releases/tag/v2.1.6
[23:37:29] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[23:37:29] [Server thread/INFO]: [AuraSkills] Loaded 30 pattern rewards and 0 level rewards
[23:37:29] [Server thread/INFO]: [AuraSkills] Loaded 32 loot entries in 4 pools and 2 tables
[23:37:29] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[23:37:29] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[23:37:29] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[23:37:29] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[23:37:29] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.3.2, you're on: 5.3.1
[23:37:29] [Server thread/ERROR]: [PlaceholderAPI] Failed to load class files of expansion.
java.util.concurrent.CompletionException: zip file closed (expansion file: /home/container/plugins/PlaceholderAPI/expansions/FloodgatePlaceholders-1.5.0.jar)
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$findExpansionInFile$7(LocalExpansionManager.java:443) ~[PlaceholderAPI-2.11.6.jar:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalStateException: zip file closed
    at java.base/java.util.zip.ZipFile.ensureOpen(ZipFile.java:846) ~[?:?]
    at java.base/java.util.zip.ZipFile.getEntry(ZipFile.java:338) ~[?:?]
    at java.base/java.util.jar.JarFile.getEntry(JarFile.java:517) ~[?:?]
    at java.base/java.util.jar.JarFile.getJarEntry(JarFile.java:472) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:209) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:144) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.entrypoint.classloader.group.SpigotPluginClassLoaderGroup.lookupClass(SpigotPluginClassLoaderGroup.java:43) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.entrypoint.classloader.group.SimpleListPluginClassLoaderGroup.getClassByName(SimpleListPluginClassLoaderGroup.java:37) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.entrypoint.classloader.group.LockingClassLoaderGroup.getClassByName(LockingClassLoaderGroup.java:34) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:187) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:580) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.util.FileUtil.findClass(FileUtil.java:62) ~[PlaceholderAPI-2.11.6.jar:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$findExpansionInFile$7(LocalExpansionManager.java:421) ~[PlaceholderAPI-2.11.6.jar:?]
    ... 7 more
[23:37:29] [Server thread/INFO]: Done (26.582s)! For help, type "help"
[23:37:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15.2-b216e2b]
[23:37:29] [Server thread/INFO]: [Quests] Successfully hooked into Essentials economy.
[23:37:29] [Server thread/INFO]: [Quests] 46 task types have been registered.
[23:37:29] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[23:37:29] [Craft Scheduler Thread - 24 - zVoteParty/INFO]: [zVoteParty v1.1.0.3] No update available.
[23:37:29] [Server thread/INFO]: [Quests] 992 quests have been registered.
[23:37:29] [Craft Scheduler Thread - 14 - AuraSkills/INFO]: [AuraSkills] New update available! You are on version 2.2.8, latest version is 2.3.3
[23:37:29] [Craft Scheduler Thread - 14 - AuraSkills/INFO]: [AuraSkills] Download it on Modrinth: https://modrinth.com/plugin/uDdZAVls/version/wmXK7Dm8
[23:37:29] [Craft Scheduler Thread - 14 - BetterBalls/INFO]: [BetterBalls] Checking for updates...
[23:37:29] [Craft Scheduler Thread - 14 - BetterBalls/INFO]: [BetterBalls] Plugin up-to-date! You have the latest version!
[23:37:30] [User Authenticator #0/INFO]: UUID of player MlmLIMITED is bc672547-685e-4ed5-ad89-5057b6a7ed38
[23:37:30] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to PlayerPoints v3.2.6
java.lang.NumberFormatException: For input string: "ftbuk"
    at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67) ~[?:?]
    at java.base/java.lang.Integer.parseInt(Integer.java:662) ~[?:?]
    at java.base/java.lang.Integer.parseInt(Integer.java:778) ~[?:?]
    at PlayerPoints-3.2.6.jar/org.black_ixx.playerpoints.libs.rosegarden.utils.NMSUtil.getVersionNumber(NMSUtil.java:31) ~[PlayerPoints-3.2.6.jar:?]
    at PlayerPoints-3.2.6.jar/org.black_ixx.playerpoints.libs.rosegarden.utils.HexUtils$Gradient.nextChatColor(HexUtils.java:386) ~[PlayerPoints-3.2.6.jar:?]
    at PlayerPoints-3.2.6.jar/org.black_ixx.playerpoints.libs.rosegarden.utils.HexUtils.parseGradients(HexUtils.java:206) ~[PlayerPoints-3.2.6.jar:?]
    at PlayerPoints-3.2.6.jar/org.black_ixx.playerpoints.libs.rosegarden.utils.HexUtils.colorify(HexUtils.java:75) ~[PlayerPoints-3.2.6.jar:?]
    at PlayerPoints-3.2.6.jar/org.black_ixx.playerpoints.libs.rosegarden.utils.RoseGardenUtils.sendMessage(RoseGardenUtils.java:171) ~[PlayerPoints-3.2.6.jar:?]
    at PlayerPoints-3.2.6.jar/org.black_ixx.playerpoints.libs.rosegarden.utils.RoseGardenUtils.sendMessage(RoseGardenUtils.java:178) ~[PlayerPoints-3.2.6.jar:?]
    at PlayerPoints-3.2.6.jar/org.black_ixx.playerpoints.libs.rosegarden.manager.PluginUpdateManager.onPlayerJoin(PluginUpdateManager.java:116) ~[PlayerPoints-3.2.6.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:327) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:8) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1448) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1428) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1422) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1379) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1387) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1264) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:37:30] [Server thread/INFO]: MlmLIMITED[/24.57.40.75:37888] logged in with entity id 67 at ([spawn]0.39535100019038605, 121.0, -59.88462988898892)
[23:37:30] [Server thread/INFO]: + MlmLIMITED
[23:37:31] [Craft Scheduler Thread - 6 - SpawnerMeta/INFO]: [Spawner Meta v24.8] New version is available: v25.1! To download visit: https://www.spigotmc.org/resources/spawnermeta.74188/
[23:37:31] [Craft Scheduler Thread - 14 - AxRewards/INFO]: [!] Rewards → There is a new version of the plugin available! (current: 3.3.0 | latest: 3.4.3)
[23:37:31] [Craft Scheduler Thread - 15 - AxAFKZone/INFO]: [!] AFK Zone → There is a new version of AxAFKZone available! (current: 1.5.2 | latest: 1.6.3)
[23:37:31] [Craft Scheduler Thread - 20 - AxVaults/INFO]: [!] Vaults → There is a new version of the plugin available! (current: 2.6.5 | latest: 2.8.0)
[23:37:31] [Craft Scheduler Thread - 1 - AxSellwands/INFO]: [!] Sellwands → There is a new version of the plugin available! (current: 1.8.3 | latest: 1.9.5)
[23:37:31] [Craft Scheduler Thread - 21 - AxTrade/INFO]: [!] Trade → There is a new version of the plugin available! (current: 1.15.1 | latest: 1.17.0)
[23:37:34] [Server thread/INFO]: MlmLIMITED issued server command: /pl
[23:42:28] [Server thread/INFO]: [CLV] Successfully auto-saved all player data (2ms).
[23:42:28] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[23:47:28] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[23:47:28] [Server thread/INFO]: [CLV] Successfully auto-saved all player data (1ms).
[23:52:28] [Server thread/INFO]: [CHAT GAMES] A(n) TRIVIA chat game has started in the server!
[23:52:28] [Server thread/INFO]: [CLV] Successfully auto-saved all player data (1ms).