Paste #136457: Full Log

Date: 2025/10/04 19:21:29 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[02:08:22] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.8+9-LTS; Eclipse Adoptium Temurin-21.0.8+9) on Linux 6.8.0-63-generic (amd64)
[02:08:22] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.5-114-ver/1.21.5@a1b3058 (2025-06-18T10:59:02Z) for Minecraft 1.21.5
[02:08:22] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[02:08:23] [ServerMain/INFO]: [PluginInitializerManager] Initialized 32 plugins
[02:08:23] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (32):
 - AuraSkills (2.3.7), Citizens (2.0.38-SNAPSHOT (build 3820)), CloudCrates (2.9.1-canary.0), CrazyVouchers (4.1.1), CyberLevels (0.5.10), DecentHolograms (2.9.6), DeluxeMenus (1.14.1-Release), Essentials (2.21.2), EssentialsSpawn (2.21.2), FastAsyncWorldEdit (2.13.1), LibsDisguises (11.0.9), LuckPerms (5.5.14), Multiverse-Core (5.3.0), MythicMobs (5.9.5-f13ab4a1), NBTAPI (2.15.1), PlaceholderAPI (2.11.6), PlayerAuctions (1.31.1), PlugManX (2.4.1), ProtocolLib (5.4.0), RivalCredits (1.0.6), RivalFishingRods (1.5.2), RivalHarvesterHoes (3.0.1), RivalMobSwords (1.5.1), RivalOmniToolAddon (1.0.2), RivalPickaxes (1.1.3), SuperMobCoins (2.4.3), SuperiorSkyblock2 (2025.1), TAB (5.2.4), Vault (1.7.3-b131), WildStacker (2025.1-b142), WorldGuard (7.0.13+82fdc65), packetevents (2.9.5)
[02:08:25] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[02:08:26] [ServerMain/INFO]: Loaded 1373 recipes
[02:08:26] [ServerMain/INFO]: Loaded 1484 advancements
[02:08:26] [Server thread/INFO]: Starting minecraft server version 1.21.5
[02:08:26] [Server thread/INFO]: Loading properties
[02:08:26] [Server thread/INFO]: This server is running Paper version 1.21.5-114-ver/1.21.5@a1b3058 (2025-06-18T10:59:02Z) (Implementing API version 1.21.5-R0.1-SNAPSHOT)
[02:08:26] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[02:08:26] [Server thread/INFO]: Server Ping Player Sample Count: 12
[02:08:26] [Server thread/INFO]: Using 4 threads for Netty based IO
[02:08:26] [Server thread/INFO]: [MoonriseCommon] Paper is using 3 worker threads, 1 I/O threads
[02:08:26] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[02:08:26] [Server thread/INFO]: Default game type: SURVIVAL
[02:08:26] [Server thread/INFO]: Generating keypair
[02:08:26] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25575
[02:08:26] [Server thread/INFO]: Using epoll channel type
[02:08:26] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[02:08:26] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[02:08:27] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loading 1 libraries... please wait
[02:08:27] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[02:08:27] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[02:08:27] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[02:08:27] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[02:08:27] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[02:08:27] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 3 libraries... please wait
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.2/phtree-2.8.2.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[02:08:28] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[02:08:28] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.14
[02:08:28] [Server thread/INFO]: [LuckPerms] Loading configuration...
[02:08:28] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[02:08:28] [Server thread/INFO]: [WildStacker] Loading server plugin WildStacker v2025.1-b142
[02:08:28] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[02:08:33] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0
[02:08:33] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1
[02:08:33] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@80be6e2]
[02:08:33] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[02:08:33] [Server thread/INFO]: [SuperiorSkyblock2] Loading server plugin SuperiorSkyblock2 v2025.1
[02:08:34] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.9.5
[02:08:34] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[02:08:34] [Server thread/INFO]: [CoreLogging] Loading server plugin Multiverse-Core v5.3.0
[02:08:34] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v11.0.9
[02:08:34] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.6
[02:08:34] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.9.5-f13ab4a1
[02:08:34] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[02:08:34] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[02:08:34] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.3.7
[02:08:34] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.15.1
[02:08:34] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.5! Trying to find NMS support
[02:08:34] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R4' loaded!
[02:08:34] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[02:08:34] [Server thread/INFO]: [RivalMobSwords] Loading server plugin RivalMobSwords v1.5.1
[02:08:34] [Server thread/INFO]: [RivalFishingRods] Loading server plugin RivalFishingRods v1.5.2
[02:08:34] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3820)
[02:08:34] [Server thread/INFO]: [RivalPickaxes] Loading server plugin RivalPickaxes v1.1.3
[02:08:34] [Server thread/INFO]: [RivalHarvesterHoes] Loading server plugin RivalHarvesterHoes v3.0.1
[02:08:34] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.2
[02:08:34] [Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.31.1
[02:08:34] [Thread-9/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[02:08:34] [Thread-9/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.15.1' Newest Version: 2.15.2'
[02:08:34] [Thread-9/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)!
[02:08:34] [Server thread/INFO]: [RivalOmniToolAddon] Loading server plugin RivalOmniToolAddon v1.0.2
[02:08:34] [Server thread/INFO]: [RivalCredits] Loading server plugin RivalCredits v1.0.6
[02:08:34] [Server thread/INFO]: [SuperMobCoins] Loading server plugin SuperMobCoins v2.4.3
[02:08:34] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.2
[02:08:34] [Server thread/INFO]: [CLV] Loading server plugin CyberLevels v0.5.10
[02:08:34] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-Release
[02:08:34] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version! The following Item options will not work: nbt_int, nbt_ints, nbt_string and nbt_strings.
[02:08:34] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[02:08:34] [Server thread/INFO]: [CloudCrates] Loading server plugin CloudCrates v2.9.1-canary.0
[02:08:34] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.4
[02:08:34] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v4.1.1
[02:08:34] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[02:08:34] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.14
[02:08:35] [Server thread/INFO]:         __    
[02:08:35] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.14
[02:08:35] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[02:08:35] [Server thread/INFO]: 
[02:08:35] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[02:08:35] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[02:08:35] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[02:08:35] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 715ms)
[02:08:35] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[02:08:35] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[02:08:35] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[02:08:35] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[02:08:35] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[02:08:35] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0
[02:08:35] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1
[02:08:35] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[02:08:35] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[02:08:35] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[02:08:35] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[02:08:35] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_5.PaperweightFaweAdapter as the Bukkit adapter
[02:08:36] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[02:08:36] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[02:08:36] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[02:08:36] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[02:08:36] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[02:08:36] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[02:08:36] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[02:08:36] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[02:08:36] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[02:08:36] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[02:08:36] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[02:08:36] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[02:08:36] [Server thread/INFO]: Preparing level "world"
[02:08:36] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] A new release for FastAsyncWorldEdit is available: 2.13.2. You are currently on 2.13.1.
Download from https://modrinth.com/plugin/fastasyncworldedit, https://hangar.papermc.io/IntellectualSites/FastAsyncWorldEdit or https://www.spigotmc.org/resources/13932
[02:08:36] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[02:08:36] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:36] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 1175 build(s) out of date.
You are running build 0, the latest version is build 1175.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[02:08:36] [Server thread/INFO]: Time elapsed: 208 ms
[02:08:36] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[02:08:36] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:36] [Server thread/INFO]: Time elapsed: 63 ms
[02:08:36] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[02:08:36] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:36] [Server thread/INFO]: Time elapsed: 259 ms
[02:08:36] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2025.1-b142
[02:08:36] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[02:08:37] [Server thread/INFO]: [WildStacker] Loading configuration started...
[02:08:37] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[02:08:37] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[02:08:37] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[02:08:37] [Server thread/INFO]: [WildStacker]  - Stacking barrels is enabled
[02:08:37] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 58ms)
[02:08:37] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[02:08:37] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 35ms)
[02:08:37] [Server thread/INFO]: [WildStacker] Loading messages started...
[02:08:37] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[02:08:37] [Server thread/INFO]: [WildStacker] Loading messages done (Took 2ms)
[02:08:37] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[02:08:37] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[02:08:37] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Enabling SuperiorSkyblock2 v2025.1
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BAMBOO_BUTTON
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BAMBOO_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BAMBOO_FENCE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BAMBOO_FENCE_GATE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BAMBOO_PRESSURE_PLATE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BAMBOO_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BEE_NEST
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BLACK_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BLUE_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block BROWN_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CAVE_VINES
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CAVE_VINES_PLANT
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CHERRY_BUTTON
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CHERRY_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CHERRY_FENCE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CHERRY_FENCE_GATE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CHERRY_PRESSURE_PLATE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CHERRY_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CHISELED_BOOKSHELF
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block COMPOSTER
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block COPPER_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block COPPER_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CRAFTER
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block CYAN_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block DECORATED_POT
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block EXPOSED_COPPER_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block EXPOSED_COPPER_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block GRAY_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block GREEN_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block LECTERN
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block LIGHT_BLUE_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block LIGHT_GRAY_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block LIME_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block MAGENTA_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block ORANGE_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block OXIDIZED_COPPER_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block OXIDIZED_COPPER_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block PINK_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block PURPLE_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block RED_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WAXED_COPPER_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WAXED_COPPER_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WAXED_EXPOSED_COPPER_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WAXED_EXPOSED_COPPER_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WAXED_OXIDIZED_COPPER_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WAXED_OXIDIZED_COPPER_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WAXED_WEATHERED_COPPER_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WAXED_WEATHERED_COPPER_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WEATHERED_COPPER_DOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WEATHERED_COPPER_TRAPDOOR
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block WHITE_CANDLE
[02:08:37] [Server thread/WARN]: [SuperiorSkyblock2] Potentially missing interactable block YELLOW_CANDLE
[02:08:37] [Server thread/INFO]: Preparing start region for dimension minecraft:superiorworld
[02:08:37] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:37] [Server thread/INFO]: Time elapsed: 23 ms
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module bank...
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module bank (Took 3ms)
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module missions...
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_6
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_91
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_7
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_93
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_92
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_9
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_8
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_8
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_94
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_9
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_98
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_97
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_5
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_99
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_93
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_96
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_6
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_92
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_7
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_91
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_95
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission explorer_2
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission explorer_1
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module missions (Took 343ms)
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module generators...
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module generators (Took 4ms)
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module upgrades...
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module upgrades (Took 12ms)
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages started...
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2]  - Found 702 messages in the language files.
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages done (Took 17ms)
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic oneblock.schematic (DefaultSchematicParser)
[02:08:37] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal.schematic (DefaultSchematicParser)
[02:08:38] [Server thread/WARN]: [SuperiorSkyblock2] [biomes.yml] Biome 'WOODED_HILLS' is not valid, skipping...
[02:08:38] [Server thread/ERROR]: [SuperiorSkyblock2] [menus/permissions.yml] Couldn't convert permissions.set_biome.permission-enabled into an itemstack. Check type & data sections!
[02:08:38] [Server thread/ERROR]: [SuperiorSkyblock2] [menus/permissions.yml] Couldn't convert permissions.set_biome.permission-disabled into an itemstack. Check type & data sections!
[02:08:38] [Server thread/ERROR]: [SuperiorSkyblock2] [menus/permissions.yml] Couldn't convert permissions.set_biome.role-permission into an itemstack. Check type & data sections!
[02:08:38] [Server thread/WARN]: [SuperiorSkyblock2] [player-language.yml] The language iw-IL is not valid.
[02:08:38] [Server thread/WARN]: [SuperiorSkyblock2] [player-language.yml] The language vi-VN is not valid.
[02:08:38] [Server thread/WARN]: [SuperiorSkyblock2] [player-language.yml] The language pl-PL is not valid.
[02:08:38] [Server thread/WARN]: [SuperiorSkyblock2] [player-language.yml] The language it-IT is not valid.
[02:08:38] [Server thread/WARN]: [SuperiorSkyblock2] [player-language.yml] The language zh-CN is not valid.
[02:08:38] [Server thread/WARN]: [SuperiorSkyblock2] [player-language.yml] The language fr-FR is not valid.
[02:08:38] [Server thread/WARN]: [SuperiorSkyblock2] [player-language.yml] The language es-ES is not valid.
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Trying to connect to local database (SQLite)...
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully established connection with local database!
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Creating a backup file...
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Backup done!
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load players...
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 2 players (Took 6ms)
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load islands...
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 2 islands (Took 29ms)
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load grid...
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Finished grid!
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load stacked blocks...
[02:08:38] [Server thread/INFO]: [SuperiorSkyblock2] Finished stacked blocks!
[02:08:38] [Server thread/INFO]: [packetevents] Enabling packetevents v2.9.5
[02:08:38] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[02:08:38] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[02:08:38] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[02:08:38] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[02:08:38] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[02:08:38] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) TNT ignition is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lighters are PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lava fire is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Fire spread is UNRESTRICTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorWorld'
[02:08:38] [Server thread/INFO]: [WorldGuard] Loading region data...
[02:08:38] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v5.3.0
[02:08:38] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.9.5)
[02:08:38] [Server thread/INFO]: Preparing start region for dimension minecraft:obsidianmine
[02:08:38] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:38] [Server thread/INFO]: Time elapsed: 33 ms
[02:08:38] [Server thread/INFO]: [WorldGuard] (obsidianmine) TNT ignition is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (obsidianmine) Lighters are PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (obsidianmine) Lava fire is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (obsidianmine) Fire spread is UNRESTRICTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'obsidianmine'
[02:08:38] [Server thread/INFO]: Preparing start region for dimension minecraft:diamondmine
[02:08:38] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:38] [Server thread/INFO]: Time elapsed: 24 ms
[02:08:38] [Server thread/INFO]: [WorldGuard] (diamondmine) TNT ignition is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (diamondmine) Lighters are PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (diamondmine) Lava fire is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (diamondmine) Fire spread is UNRESTRICTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'diamondmine'
[02:08:38] [Server thread/INFO]: Preparing start region for dimension minecraft:lapismine
[02:08:38] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:38] [Server thread/INFO]: Time elapsed: 12 ms
[02:08:38] [Server thread/INFO]: [WorldGuard] (lapismine) TNT ignition is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (lapismine) Lighters are PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (lapismine) Lava fire is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (lapismine) Fire spread is UNRESTRICTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lapismine'
[02:08:38] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp
[02:08:38] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:38] [Server thread/INFO]: Time elapsed: 20 ms
[02:08:38] [Server thread/INFO]: [WorldGuard] (PvP) TNT ignition is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (PvP) Lighters are PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (PvP) Lava fire is PERMITTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] (PvP) Fire spread is UNRESTRICTED.
[02:08:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PvP'
[02:08:38] [Server thread/INFO]: Preparing start region for dimension minecraft:amethystmine
[02:08:38] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 13 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (amethystmine) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (amethystmine) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (amethystmine) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (amethystmine) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'amethystmine'
[02:08:39] [Server thread/INFO]: Preparing start region for dimension minecraft:coppermine
[02:08:39] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 16 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (coppermine) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (coppermine) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (coppermine) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (coppermine) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'coppermine'
[02:08:39] [Server thread/INFO]: Preparing start region for dimension minecraft:redstonemine
[02:08:39] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 17 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (redstonemine) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (redstonemine) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (redstonemine) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (redstonemine) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'redstonemine'
[02:08:39] [Server thread/INFO]: Preparing start region for dimension minecraft:emeraldmine
[02:08:39] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 21 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (emeraldmine) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (emeraldmine) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (emeraldmine) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (emeraldmine) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'emeraldmine'
[02:08:39] [Server thread/INFO]: Preparing start region for dimension minecraft:cryingobsidianmine
[02:08:39] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 21 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (cryingobsidianmine) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (cryingobsidianmine) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (cryingobsidianmine) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (cryingobsidianmine) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'cryingobsidianmine'
[02:08:39] [Server thread/INFO]: Preparing start region for dimension minecraft:ironmine
[02:08:39] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 17 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (ironmine) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (ironmine) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (ironmine) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (ironmine) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ironmine'
[02:08:39] [Server thread/INFO]: Preparing start region for dimension minecraft:netheritemine
[02:08:39] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 7 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (netheritemine) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (netheritemine) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (netheritemine) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (netheritemine) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'netheritemine'
[02:08:39] [Server thread/INFO]: Preparing start region for dimension minecraft:coalmine
[02:08:39] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 8 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (coalmine) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (coalmine) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (coalmine) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (coalmine) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'coalmine'
[02:08:39] [Server thread/INFO]: Preparing start region for dimension minecraft:koth
[02:08:39] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 29 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (KoTH) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (KoTH) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (KoTH) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (KoTH) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KoTH'
[02:08:39] [Server thread/INFO]: Preparing start region for dimension minecraft:goldmine
[02:08:39] [Server thread/INFO]: Preparing spawn area: 0%
[02:08:39] [Server thread/INFO]: Time elapsed: 25 ms
[02:08:39] [Server thread/INFO]: [WorldGuard] (goldmine) TNT ignition is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (goldmine) Lighters are PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (goldmine) Lava fire is PERMITTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] (goldmine) Fire spread is UNRESTRICTED.
[02:08:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'goldmine'
[02:08:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-core [5.3.0]
[02:08:39] [Server thread/INFO]: [Multiverse-Core] API service loaded!
[02:08:39] [Server thread/INFO]: [Multiverse-Core] Version 5.3.0 (API v5.3) Enabled - By dumptruckman, Rigby, fernferret, lithium3141, main--, benwoo1110 and Zax71
[02:08:39] [Server thread/INFO]: [Multiverse-Core] Loving Multiverse-Core? Please consider supporting the project with a small donation: https://github.com/sponsors/Multiverse
[02:08:39] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v11.0.9
[02:08:39] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-11.0.9-Premium.jar
[02:08:39] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R4) (MC: 1.21.5)
[02:08:39] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1637
[02:08:39] [Server thread/INFO]: [LibsDisguises] Build Date: 11/09/2025 04:26
[02:08:39] [Server thread/INFO]: [LibsDisguises] Registered to: 1039239 (27)
[02:08:39] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[02:08:39] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'SCALED', LD will scale down (when possible) oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[02:08:40] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Loading block mappings for V_1_21_5/18...
[02:08:40] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Finished loading block mappings for V_1_21_5/18 in 117.376765ms
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise CoalGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise CopperGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise IronGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise RedstoneGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise LapisGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise DiamondGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise EmeraldGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise GoldGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ObsidianGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise CryingObsidianGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise AmethystGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise NetheriteGuardian
[02:08:40] [Server thread/INFO]: [LibsDisguises] Loaded 12 custom disguises
[02:08:40] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[02:08:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[02:08:40] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[02:08:40] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.6
[02:08:40] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R4 (1.21.5).
[02:08:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.5! Trying to find NMS support
[02:08:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R4' loaded!
[02:08:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[02:08:40] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[02:08:40] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.9.5-f13ab4a1
[02:08:40] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.5)...
[02:08:40] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[02:08:41] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[02:08:41] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[02:08:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[02:08:41] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[02:08:41] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[02:08:41] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[02:08:42] [Server thread/INFO]: [MythicMobs] Loading Packs...
[02:08:42] [Server thread/INFO]: [MythicMobs] Loading Items...
[02:08:42] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[02:08:42] [Server thread/INFO]: [MythicMobs] Loading Skills...
[02:08:43] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[02:08:43] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[02:08:43] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[02:08:43] [Server thread/INFO]: [MythicMobs] ✓ Loaded 20 mobs.
[02:08:43] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[02:08:43] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[02:08:43] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[02:08:43] [Server thread/INFO]: [MythicMobs] ✓ Loaded 24 random spawns.
[02:08:43] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[02:08:43] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[02:08:43] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[02:08:43] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[02:08:43] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[02:08:43] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.9.5 ( build f13ab4a1 ) has been successfully loaded!
[02:08:43] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.3.7
[02:08:43] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[02:08:43] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[02:08:43] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[02:08:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.3.7]
[02:08:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.3.7]
[02:08:43] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[02:08:43] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[02:08:43] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[02:08:43] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[02:08:43] [Server thread/INFO]: [AuraSkills] Successfully registered hook MythicMobs
[02:08:43] [Server thread/INFO]: [AuraSkills] Loaded 160 config options in 27 ms
[02:08:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.5! Trying to find NMS support
[02:08:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R4' loaded!
[02:08:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[02:08:43] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[02:08:43] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[02:08:43] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.15.1
[02:08:43] [Server thread/INFO]: [NBTAPI] Checking bindings...
[02:08:43] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[02:08:43] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[02:08:43] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[02:08:43] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[02:08:43] [Server thread/INFO]: [RivalMobSwords] Enabling RivalMobSwords v1.5.1
[02:08:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rivalmobswords [1.3]
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ RivalMobSwords x Essence Economy loaded.
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalswords-0 - Starting...
[02:08:44] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalswords-0 - Start completed.
[02:08:44] [Server thread/INFO]: [Rival Mob Swords] Successfully connected to the SQLite Database.
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ RivalMobSwords - WildStacker support enabled!.
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ Registering Commands - Done
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ AuraSkills found x Hook loaded.
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Auto Sell (☄) (1/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Key Finder (⚓) (2/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x EXP Finder (❄) (3/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Spawner Finder (🔥) (4/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x EXP Booster (🚀) (5/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Money Booster (⛁) (6/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Essence Booster (❋) (7/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Money Pouch (⛁) (8/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Essence Pouch (❋) (9/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Looting (☽) (10/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x XP Booster (🕮) (11/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Enchantment Activator (🛠) (12/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Speed (🌊) (13/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Haste (🗡) (14/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Sharpness (🥃) (15/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Strength (💫) (16/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Mob Smasher (💥) (17/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x AutoClicker (🤖) (18/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 1 (19/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 2 (20/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 3 (21/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 4 (22/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 5 (23/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 6 (24/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 7 (25/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 8 (26/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 9 (27/28)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 10 (28/28)
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ Registering Ability x Boomerang Ability (1/7)
[02:08:44] [Server thread/INFO]: ━ Registering Ability x Bleed Ability (2/7)
[02:08:44] [Server thread/INFO]: ━ Registering Ability x Thunderclap Ability (3/7)
[02:08:44] [Server thread/INFO]: ━ Registering Ability x Whirlwind Slash Ability (4/7)
[02:08:44] [Server thread/INFO]: ━ Registering Ability x Lucky Block Ability (5/7)
[02:08:44] [Server thread/INFO]: ━ Registering Ability x Inferno Strike Ability (6/7)
[02:08:44] [Server thread/INFO]: ━ Registering Ability x Custom Ability (7/7)
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ Rival Mob Swords x Plugin has finished loading!
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: [RivalFishingRods] Enabling RivalFishingRods v1.5.2
[02:08:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rivalrods [1.5.0]
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ RivalFishingRods x Essence Economy loaded.
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalrods-0 - Starting...
[02:08:44] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalrods-0 - Start completed.
[02:08:44] [Server thread/INFO]: [Rival Fishing Rods] Successfully connected to the SQLite Database.
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]:    ___  _           __
[02:08:44] [Server thread/INFO]:   / _ \(_)  _____ _/ /
[02:08:44] [Server thread/INFO]:  / , _/ / |/ / _ `/ / 
[02:08:44] [Server thread/INFO]: /_/|_/_/|___/\_,_/_/  
[02:08:44] [Server thread/INFO]:    _____     __   _          
[02:08:44] [Server thread/INFO]:   / __(_)__ / /  (_)__  ___ _
[02:08:44] [Server thread/INFO]:  / _// (_-</ _ \/ / _ \/ _ `/
[02:08:44] [Server thread/INFO]: /_/ /_/___/_//_/_/_//_/\_, / 
[02:08:44] [Server thread/INFO]:                       /___/  
[02:08:44] [Server thread/INFO]:    ___          __  
[02:08:44] [Server thread/INFO]:   / _ \___  ___/ /__
[02:08:44] [Server thread/INFO]:  / , _/ _ \/ _  (_-<
[02:08:44] [Server thread/INFO]: /_/|_|\___/\_,_/___/
[02:08:44] [Server thread/INFO]:                     
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ Registering Commands x Done
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ AuraSkills found x Hook loaded.
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Auto Sell (☄) (1/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Key Finder (⚓) (2/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Molten Reel (💫) (3/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x EXP Finder (❄) (4/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Spawner Finder (🔥) (5/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Money Pouch (⛁) (6/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Essence Pouch (❋) (7/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Tsunami (🌊) (8/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Angler (💥) (9/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x XP Booster (🕮) (10/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Essence Booster (❋) (11/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Money Booster (⛁) (12/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Enchantment Activator (🛠) (13/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 1 (14/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 2 (15/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 3 (16/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 4 (17/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 5 (18/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 6 (19/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 7 (20/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 8 (21/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 9 (22/23)
[02:08:44] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 10 (23/23)
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: ━ Rival Fishing Rods x Plugin has finished loading!
[02:08:44] [Server thread/INFO]: 
[02:08:44] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3820)
[02:08:44] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[02:08:44] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[02:08:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[02:08:44] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[02:08:44] [Server thread/INFO]: [RivalPickaxes] Enabling RivalPickaxes v1.1.3
[02:08:46] [Server thread/INFO]: 
[02:08:46] [Server thread/INFO]: [!] RivalPickaxes x Essence Economy loaded.
[02:08:46] [Server thread/INFO]: 
[02:08:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rivalpickaxes [1.1.3]
[02:08:46] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalpickaxes-0 - Starting...
[02:08:46] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalpickaxes-0 - Start completed.
[02:08:46] [Server thread/INFO]: [Rival Pickaxes] Successfully connected to the SQLite Database.
[02:08:46] [Server thread/INFO]: 
[02:08:46] [Server thread/INFO]: 
[02:08:46] [Server thread/INFO]: 
[02:08:46] [Server thread/INFO]: 
[02:08:46] [Server thread/INFO]:     ____  _             __                        
[02:08:46] [Server thread/INFO]:    / __ \(_)   ______ _/ /                        
[02:08:46] [Server thread/INFO]:   / /_/ / / | / / __ `/ /                         
[02:08:46] [Server thread/INFO]:  / _, _/ /| |/ / /_/ / /                          
[02:08:46] [Server thread/INFO]: /_/ |_/_/_|___/\__,_/_/                        
[02:08:46] [Server thread/INFO]:                                           
[02:08:46] [Server thread/INFO]:     ____  _      __                       
[02:08:46] [Server thread/INFO]:    / __ \(_)____/ /______ __  _____  _____
[02:08:46] [Server thread/INFO]:   / /_/ / / ___/ //_/ __ `/ |/_/ _ \/ ___/
[02:08:46] [Server thread/INFO]:  / ____/ / /__/ ,< / /_/ />  </  __(__  ) 
[02:08:46] [Server thread/INFO]: /_/   /_/\___/_/|_|\__,_/_/|_|\___/____/  
[02:08:46] [Server thread/INFO]: 
[02:08:46] [Server thread/INFO]: 
[02:08:46] [Server thread/INFO]: 
[02:08:46] [Server thread/INFO]: 
[02:08:47] [Server thread/INFO]: 
[02:08:47] [Server thread/INFO]: [Rival Pickaxes] - Loaded 1928019 mineable blocks
[02:08:47] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: [Rival Pickaxes] - Loaded 0 mine mob locations
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: [!] Registering Commands - Done
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Auto Sell (☄) (1/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Key Finder (⚓) (2/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x EXP Finder (❄) (3/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Spawner Finder (🔥) (4/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Money Booster (⛁) (5/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Essence Booster (❋) (6/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Fortune (☽) (7/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x XP Booster (🕮) (8/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Money Pouch (⛁) (9/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Essence Pouch (❋) (10/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Merchant (🥃) (11/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Speed (🌊) (12/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Haste (⛏) (13/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Enchantment Activator (🛠) (14/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Scavenger (💫) (15/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Shockwave Enchant (16/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Earthquake Enchant (17/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Phantom Enchant (18/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x VeinMiner Enchant (19/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Explosive (💥) (20/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Jackhammer Enchant (21/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Second Hand (🤖) (22/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Efficiency (🚀) (23/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 1 (24/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 2 (25/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 3 (26/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 4 (27/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 5 (28/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 6 (29/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 7 (30/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 8 (31/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 9 (32/33)
[02:08:49] [Server thread/INFO]: [!] Registering Enchant x Custom Enchant 10 (33/33)
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: [!] Registering Ability x Lucky Block Ability (1/5)
[02:08:49] [Server thread/INFO]: [!] Registering Ability x Black Hole Ability (2/5)
[02:08:49] [Server thread/INFO]: [!] Registering Ability x Laser Ability (3/5)
[02:08:49] [Server thread/INFO]: [!] Registering Ability x Napalm Ability (4/5)
[02:08:49] [Server thread/INFO]: [!] Registering Ability x Custom Ability (5/5)
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: [!] Rival Pickaxes x Plugin has finished loading!
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: ━ AuraSkills found x Hook loaded.
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: [!] WorldGuard found x Hook loaded.
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: 
[02:08:49] [Server thread/INFO]: [!] SuperiorSkyblock2 found x Hook loaded.
[02:08:49] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: [RivalHarvesterHoes] Enabling RivalHarvesterHoes v3.0.1
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: ━ RivalHarvesterHoes x Essence Economy loaded.
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rivalhoes [3.0.1]
[02:08:52] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalhoes-0 - Starting...
[02:08:52] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalhoes-0 - Start completed.
[02:08:52] [Server thread/INFO]: [Rival Harvester Hoes] Successfully connected to the SQLite Database.
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]:     ____  _             __                        
[02:08:52] [Server thread/INFO]:    / __ \(_)   ______ _/ /                        
[02:08:52] [Server thread/INFO]:   / /_/ / / | / / __ `/ /                         
[02:08:52] [Server thread/INFO]:  / _, _/ /| |/ / /_/ / /                          
[02:08:52] [Server thread/INFO]: /_/ |_/_/_|___/\__,_/_/              __           
[02:08:52] [Server thread/INFO]:    / / / /___ _______   _____  _____/ /____  _____
[02:08:52] [Server thread/INFO]:   / /_/ / __ `/ ___/ | / / _ \/ ___/ __/ _ \/ ___/
[02:08:52] [Server thread/INFO]:  / __  / /_/ / /   | |/ /  __(__  ) /_/  __/ /    
[02:08:52] [Server thread/INFO]: /_/ /_/\__,_/_/    |___/\___/____/\__/\___/_/     
[02:08:52] [Server thread/INFO]:    / / / /___  ___  _____                         
[02:08:52] [Server thread/INFO]:   / /_/ / __ \/ _ \/ ___/                         
[02:08:52] [Server thread/INFO]:  / __  / /_/ /  __(__  )                          
[02:08:52] [Server thread/INFO]: /_/ /_/\____/\___/____/                           
[02:08:52] [Server thread/INFO]:                                                   
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Auto Sell (☄) (1/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Key Finder (⚓) (2/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x EXP Finder (❄) (3/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Spawner Finder (🔥) (4/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Money Booster (⛁) (5/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Essence Booster (❋) (6/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Crops Booster (💫) (7/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x XP Booster (🕮) (8/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Money Pouch (⛁) (9/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Essence Pouch (❋) (10/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Rush (🚀) (11/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Merchant (🥃) (12/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Air Strike (🔥) (13/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Speed (🌊) (14/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Haste (⛏) (15/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Trench (☽) (16/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x JackHammer (💥) (17/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Enchantment Activator (🛠) (18/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Tiller (19/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Planter (20/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Soul Speed (21/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Replenish (22/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Scavenger (23/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Auto Farmers (🤖) (24/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 1 (25/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 2 (26/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 3 (27/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 4 (28/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 5 (29/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 6 (30/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 7 (31/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 8 (32/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 9 (33/34)
[02:08:52] [Server thread/INFO]: ━ Registering Enchant x Custom Enchant 10 (34/34)
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: ━ Registering Ability x Lucky Block Ability (1/9)
[02:08:52] [Server thread/INFO]: ━ Registering Ability x Hell Rain Ability (2/9)
[02:08:52] [Server thread/INFO]: ━ Registering Ability x Black Hole Ability (3/9)
[02:08:52] [Server thread/INFO]: ━ Registering Ability x Plantera Ability (4/9)
[02:08:52] [Server thread/INFO]: ━ Registering Ability x Laser Ability (5/9)
[02:08:52] [Server thread/INFO]: ━ Registering Ability x UFO Ability (6/9)
[02:08:52] [Server thread/INFO]: ━ Registering Ability x Barn Ability (7/9)
[02:08:52] [Server thread/INFO]: ━ Registering Ability x Napalm Ability (8/9)
[02:08:52] [Server thread/INFO]: ━ Registering Ability x Custom Ability (9/9)
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: ━ Rival Harvester Hoes x Plugin has finished loading!
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: ━ SuperiorSkyblock2 found x Hook loaded.
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: ━ WorldGuard found x Hook loaded.
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: ━ Citizens found x Hook loaded.
[02:08:52] [Server thread/INFO]: 
[02:08:52] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.2
[02:08:52] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[02:08:52] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[02:08:52] [Server thread/INFO]: [Essentials] No kits found to migrate.
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[02:08:52] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[02:08:52] [Server thread/INFO]: [Essentials] Loaded 43880 items from items.json.
[02:08:52] [Server thread/INFO]: [Essentials] Using locale en
[02:08:52] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[02:08:52] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[02:08:52] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[02:08:53] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[02:08:53] [Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.31.1
[02:08:53] [Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[02:08:53] [Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Economy plugin found! (EssentialsX Economy)
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Found Item Currency integrating support...
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Found XP Currency integrating support...
[02:08:54] [Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[02:08:54] [Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[02:08:54] [Server thread/INFO]: [RivalOmniToolAddon] Enabling RivalOmniToolAddon v1.0.2
[02:08:54] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalomnitool-0 - Starting...
[02:08:54] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalomnitool-0 - Start completed.
[02:08:54] [Server thread/INFO]: [Rival Omni Tool] Successfully connected to the SQLite Database.
[02:08:54] [Server thread/INFO]: [Rival OmniTool] - Found RivalPickaxes - Hooked 
[02:08:54] [Server thread/INFO]: [Rival OmniTool] - Found RivalFishingRods - Hooked 
[02:08:54] [Server thread/INFO]: [Rival OmniTool] - Found RivalMobSwords - Hooked 
[02:08:54] [Server thread/INFO]: [Rival OmniTool] - Found RivalHarvesterHoes - Hooked 
[02:08:54] [Server thread/INFO]: [RivalCredits] Enabling RivalCredits v1.0.6
[02:08:54] [Server thread/WARN]: [com.zaxxer.hikari.HikariConfig] rivalcredits-0 - idleTimeout is close to or more than maxLifetime, disabling it.
[02:08:54] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalcredits-0 - Starting...
[02:08:54] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalcredits-0 - Start completed.
[02:08:54] [Server thread/INFO]: [Rival Credits] Successfully connected to the SQLite Database.
[02:08:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rivalcredits [1.0]
[02:08:54] [Server thread/INFO]: ^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^
[02:08:54] [Server thread/INFO]: 
[02:08:54] [Server thread/INFO]: 
[02:08:54] [Server thread/INFO]: 
[02:08:54] [Server thread/INFO]:       :::::::::       :::::::::::    :::     :::           :::        :::   
[02:08:54] [Server thread/INFO]:      :+:    :+:          :+:        :+:     :+:         :+: :+:      :+:    
[02:08:54] [Server thread/INFO]:     +:+    +:+          +:+        +:+     +:+        +:+   +:+     +:+     
[02:08:54] [Server thread/INFO]:    +#++:++#:           +#+        +#+     +:+       +#++:++#++:    +#+      
[02:08:54] [Server thread/INFO]:   +#+    +#+          +#+         +#+   +#+        +#+     +#+    +#+       
[02:08:54] [Server thread/INFO]:  #+#    #+#          #+#          #+#+#+#         #+#     #+#    #+#        
[02:08:54] [Server thread/INFO]: ###    ###      ###########        ###           ###     ###    ##########  
[02:08:54] [Server thread/INFO]: 
[02:08:54] [Server thread/INFO]: 
[02:08:54] [Server thread/INFO]:       ::::::::       :::::::::       ::::::::::       :::::::::       :::::::::::   :::::::::::       :::::::: 
[02:08:54] [Server thread/INFO]:     :+:    :+:      :+:    :+:      :+:              :+:    :+:          :+:           :+:          :+:    :+:
[02:08:54] [Server thread/INFO]:    +:+             +:+    +:+      +:+              +:+    +:+          +:+           +:+          +:+         
[02:08:54] [Server thread/INFO]:   +#+             +#++:++#:       +#++:++#         +#+    +:+          +#+           +#+          +#++:++#++   
[02:08:54] [Server thread/INFO]:  +#+             +#+    +#+      +#+              +#+    +#+          +#+           +#+                 +#+    
[02:08:54] [Server thread/INFO]: #+#    #+#      #+#    #+#      #+#              #+#    #+#          #+#           #+#          #+#    #+#     
[02:08:54] [Server thread/INFO]: ########       ###    ###      ##########       #########       ###########       ###           ########       
[02:08:54] [Server thread/INFO]: 
[02:08:54] [Server thread/INFO]: 
[02:08:54] [Server thread/INFO]: 
[02:08:54] [Server thread/INFO]: ^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^
[02:08:54] [Server thread/INFO]: [SuperMobCoins] Enabling SuperMobCoins v2.4.3
[02:08:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supermobcoins [2.4.3]
[02:08:54] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.2
[02:08:54] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[02:08:54] [Server thread/INFO]: [CLV] Enabling CyberLevels v0.5.10
[02:08:54] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[02:08:54] [Server thread/INFO]: [CLV] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╱╱╱╭╮
[02:08:54] [Server thread/INFO]: [CLV] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱╱╱╱┃┃
[02:08:54] [Server thread/INFO]: [CLV] ┃┃╰╋╮╭┫╰━┳━━┳━┫┃╱╱╭━━┳╮╭┳━━┫┃╭━━╮
[02:08:54] [Server thread/INFO]: [CLV] ┃┃╭┫┃┃┃╭╮┃┃━┫╭┫┃╭┫┃━┫╰╯┃┃━┫┃┃━━┫
[02:08:54] [Server thread/INFO]: [CLV] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃┃╰━╯┃┃━╋╮╭┫┃━┫╰╋━━┃
[02:08:54] [Server thread/INFO]: [CLV] ╰━━━┻━╮╭┻━━┻━━┻╯╰━━━┻━━╯╰╯╰━━┻━┻━━╯
[02:08:54] [Server thread/INFO]: [CLV] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast
[02:08:54] [Server thread/INFO]: [CLV] ╱╱╱╱╰━━╯  Version: 0.5.10
[02:08:54] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[02:08:54] [Server thread/INFO]: [CLV] 
[02:08:54] [Server thread/INFO]: [CLV] Loading YAML files...
[02:08:54] [Server thread/INFO]: [CLV] Loaded file config.yml.
[02:08:54] [Server thread/INFO]: [CLV] Loaded file lang.yml.
[02:08:54] [Server thread/INFO]: [CLV] Loaded file levels.yml.
[02:08:54] [Server thread/INFO]: [CLV] Loaded file rewards.yml.
[02:08:54] [Server thread/INFO]: [CLV] Loaded file earn-exp.yml.
[02:08:54] [Server thread/INFO]: [CLV] Loaded file anti-abuse.yml.
[02:08:54] [Server thread/INFO]: [CLV] Loaded 6 files in 8ms.
[02:08:54] [Server thread/INFO]: [CLV] 
[02:08:54] [Server thread/INFO]: [CLV] Loading exp earning events...
[02:08:54] [Server thread/INFO]: [CLV] Loaded 0 exp earn events in 1ms.
[02:08:54] [Server thread/INFO]: [CLV] 
[02:08:54] [Server thread/INFO]: [CLV] Loading anti-abuse...
[02:08:54] [Server thread/INFO]: [CLV] Loaded 2 anti-abuse settings in 0ms.
[02:08:54] [Server thread/INFO]: [CLV] 
[02:08:54] [Server thread/INFO]: [CLV] Loading level data...
[02:08:54] [Server thread/INFO]: [CLV] Loaded 25 level(s) in 0ms.
[02:08:54] [Server thread/INFO]: [CLV] 
[02:08:54] [Server thread/INFO]: [CLV] Loading reward data...
[02:08:54] [Server thread/INFO]: [CLV] Loaded 2 reward(s) in 0ms.
[02:08:54] [Server thread/INFO]: [CLV] 
[02:08:54] [Server thread/INFO]: [CLV] Loading leaderboard data...
[02:08:54] [Server thread/INFO]: [CLV] Loaded 10 players in 0ms.
[02:08:54] [Server thread/INFO]: [CLV] 
[02:08:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clv [0.5.10]
[02:08:54] [Server thread/INFO]: [CLV] Hooked into RivalHarvesterHoes.
[02:08:54] [Server thread/INFO]: [CLV] Hooked into RivalPickaxes.
[02:08:54] [Server thread/INFO]: [CLV] Loaded CLV v0.5.10 in 28ms.
[02:08:54] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[02:08:54] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-Release
[02:08:54] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[02:08:54] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[02:08:54] [Server thread/INFO]: [DeluxeMenus] 4 GUI menus loaded!
[02:08:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-Release]
[02:08:54] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[02:08:54] [Server thread/INFO]: [CloudCrates] Enabling CloudCrates v2.9.1-canary.0
[02:08:54] [Server thread/INFO]: [CloudCrates] No bedrock support found.
[02:08:55] [Server thread/INFO]: [CloudCrates] Loaded the Default crate.
[02:08:55] [Server thread/INFO]: [CloudCrates | Default ] Loaded the Money reward.
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cloudcrates [2.9.1-canary.0]
[02:08:55] [Server thread/INFO]: [TAB] Enabling TAB v5.2.4
[02:08:55] [Server thread/INFO]: [TAB] [WARN] [animations.yml] .skyblock: Animation "skyblock" has refresh interval of 80, which is not divisible by 50! Using 100.
[02:08:55] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[02:08:55] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[02:08:55] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[02:08:55] [Server thread/INFO]: [TAB] [WARN] Found a total of 4 issues.
[02:08:55] [Server thread/INFO]: [TAB] Enabled in 86ms
[02:08:55] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v4.1.1
[02:08:55] [Server thread/INFO]: [spark] Starting background profiler...
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[02:08:55] [Server thread/INFO]: Done preparing level "world" (19.219s)
[02:08:55] [Server thread/INFO]: Running delayed init tasks
[02:08:55] [Craft Scheduler Thread - 1 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[02:08:55] [Craft Scheduler Thread - 8 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[02:08:55] [Craft Scheduler Thread - 17 - Vault/INFO]: [Vault] Checking for Updates ... 
[02:08:55] [Craft Scheduler Thread - 3 - Essentials/INFO]: [Essentials] Fetching version information...
[02:08:55] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[02:08:55] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[02:08:55] [Server thread/INFO]: [WildStacker] Loading providers started...
[02:08:55] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[02:08:55] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[02:08:55] [Craft Scheduler Thread - 1 - DecentHolograms/INFO]: [DecentHolograms] Loaded 44 holograms!
[02:08:55] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: 
- https://www.spigotmc.org/resources/96927/
- https://modrinth.com/plugin/decentholograms
[02:08:55] [Craft Scheduler Thread - 17 - Vault/INFO]: [Vault] No new version available
[02:08:55] [Server thread/INFO]: [WildStacker] 
[02:08:55] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[02:08:55] [Server thread/INFO]: [WildStacker] Loading providers done (Took 33ms)
[02:08:55] [Server thread/INFO]: [SuperiorSkyblock2] Using WildStacker as a spawners provider.
[02:08:55] [Server thread/INFO]: [SuperiorSkyblock2] Using WildStacker as a stacked-blocks provider.
[02:08:55] [Server thread/INFO]: [SuperiorSkyblock2] Using LuckPerms as a permissions provider.
[02:08:55] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of vanish status of players.
[02:08:55] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of afk status of players.
[02:08:55] [Server thread/INFO]: [SuperiorSkyblock2] Using Vault as an economy provider.
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: superior [2025.1]
[02:08:55] [Server thread/INFO]: [SuperiorSkyblock2] Using PlaceholderAPI for placeholders support.
[02:08:55] [Server thread/INFO]: [SuperiorSkyblock2] Detected PaperSpigot - Using async chunk-loading support with PaperMC.
[02:08:55] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 317 total sources
[02:08:55] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[02:08:55] [Server thread/INFO]: [AuraSkills] Loaded 33 pattern rewards and 13 level rewards
[02:08:55] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[02:08:55] [Server thread/INFO]: [AuraSkills] Loaded 7 menus
[02:08:55] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.31.1]
[02:08:55] [Server thread/INFO]: [WildStacker] Starting to load entities...
[02:08:55] [Server thread/INFO]: [WildStacker] Loading entities done! Took 0 ms.
[02:08:55] [Server thread/INFO]: [WildStacker] Starting to load items...
[02:08:55] [Server thread/INFO]: [WildStacker] Loading items done! Took 0 ms.
[02:08:55] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[02:08:55] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 2 ms.
[02:08:55] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[02:08:55] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 30.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 29.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 28.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 27.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 26.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 32.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 34.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 33.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 35.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 36.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 45.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 44.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 43.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 42.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 46.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 48.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 47.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 50.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 49.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 51.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 54.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 53.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 52.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 55.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 56.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 57.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 59.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 63.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 62.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 61.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 274.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 273.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 272.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 271.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 270.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 266.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 261.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 259.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 257.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 255.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 254.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 252.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 250.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 248.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 247.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 246.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 245.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 241.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 240.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 239.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 235.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 232.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 228.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 226.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 225.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 221.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 219.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 217.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 213.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 209.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 207.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 206.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 205.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 203.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 201.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 196.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 194.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 192.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 178.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 161.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 160.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 153.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 149.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 148.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 147.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 139.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 111.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 110.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 109.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 108.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 107.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 106.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 105.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 103.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 293.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 279.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 278.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 277.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 894.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 877.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 870.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 868.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 860.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 859.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 934.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 940.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 952.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 944.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 942.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 948.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 949.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 947.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 950.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 946.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 953.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 951.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 945.
[02:08:55] [Server thread/ERROR]: [Citizens] The trait chunktickettrait failed to load for NPC ID: 955.
[02:08:55] [Server thread/INFO]: [Citizens] Loaded 108 NPCs.
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: nf [1.6.1]
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[02:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[02:08:55] [Server thread/INFO]: 6 placeholder hook(s) registered!
[02:08:55] [Server thread/INFO]: Done (33.382s)! For help, type "help"
[02:09:00] [Craft Scheduler Thread - 12 - RivalFishingRods/INFO]: [!] You are using the Latest Version of Rival Fishing Rods v1.5.2
[02:09:00] [Craft Scheduler Thread - 8 - RivalPickaxes/INFO]: [!] You are using the Latest Version of Rival Pickaxes v1.1.3
[02:09:00] [Craft Scheduler Thread - 17 - RivalMobSwords/INFO]: [!] You are using the Latest Version of Rival Mob Swords v1.5.1
[02:09:00] [Craft Scheduler Thread - 18 - RivalHarvesterHoes/INFO]: 
===================================================
✔ Rival Harvester Hoes v3.0.1
You are running the latest version! Enjoy! ✨
===================================================