Date: 2023/10/11 11:41:49 UTC-07:00
Type: Diff Report
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
[13:35:05] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[13:35:18] [ServerMain/INFO]: Loaded 7 recipes
[13:35:23] [Server thread/INFO]: Starting minecraft server version 1.20.1
[13:35:23] [Server thread/INFO]: Loading properties
[13:35:24] [Server thread/INFO]: This server is running CraftBukkit version 3871-Spigot-d2eba2c-3f9263b (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT)
[13:35:26] [Server thread/INFO]: Debug logging is disabled
[13:35:26] [Server thread/INFO]: Server Ping Player Sample Count: 12
[13:35:26] [Server thread/INFO]: Using 4 threads for Netty based IO
[13:35:26] [Server thread/INFO]: Default game type: SURVIVAL
[13:35:26] [Server thread/INFO]: Generating keypair
[13:35:27] [Server thread/INFO]: Starting Minecraft server on *:25565
[13:35:27] [Server thread/INFO]: Using default channel type
[13:35:28] [Server thread/ERROR]: Could not load 'plugins\citizens-v1_20_R2-2.0.33-SNAPSHOT.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:170) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:144) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_20_R1.CraftServer.loadPlugins(CraftServer.java:435) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:972) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:303) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.io.FileNotFoundException: Jar does not contain plugin.yml
... 7 more
[13:35:30] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[13:35:51] [Server thread/WARN]: Legacy plugin BCommons v0.3.0 does not specify an api-version.
[13:35:52] [Server thread/WARN]: [ViaVersion] Invalid blocked version protocol found in config: '[754, 753, 751, 736, 735, 578, 575, 573, 498, 490, 485, 480, 477, 404, 401, 393, 340, 338, 335, 316, 315, 210, 110, 109, 108, 107, 47, 5, 4]'
[13:35:52] [Server thread/ERROR]: Could not load 'plugins\Staff+.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown dependency ProtocolLib. Please download and install ProtocolLib to run this plugin.
at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:269) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_20_R1.CraftServer.loadPlugins(CraftServer.java:435) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:972) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:303) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:35:52] [Server thread/ERROR]: Could not load 'plugins\ViaBackwards-4.9.0-23w40a-SNAPSHOT.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.NoClassDefFoundError: com/viaversion/viaversion/api/configuration/Config
at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:149) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:394) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:301) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_20_R1.CraftServer.loadPlugins(CraftServer.java:435) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:972) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:303) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NoClassDefFoundError: com/viaversion/viaversion/api/configuration/Config
at java.lang.Class.forName0(Native Method) ~[?:?]
at java.lang.Class.forName(Class.java:467) ~[?:?]
at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:67) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:145) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
... 7 more
Caused by: java.lang.ClassNotFoundException: com.viaversion.viaversion.api.configuration.Config
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:147) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:99) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
at java.lang.Class.forName0(Native Method) ~[?:?]
at java.lang.Class.forName(Class.java:467) ~[?:?]
at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:67) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:145) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
... 7 more
[13:35:56] [Server thread/INFO]: [NexEngine] Loading 2 libraries... please wait
[13:35:56] [Server thread/INFO]: [NexEngine] Loaded library C:\Users\Lenovo\Downloads\Localhost BoxPvp\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[13:35:56] [Server thread/INFO]: [NexEngine] Loaded library C:\Users\Lenovo\Downloads\Localhost BoxPvp\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[13:35:56] [Server thread/INFO]: [NexEngine] Loaded library C:\Users\Lenovo\Downloads\Localhost BoxPvp\libraries\it\unimi\dsi\fastutil\8.5.11\fastutil-8.5.11.jar
[13:36:04] [Server thread/INFO]: [35;1m Downloaded from https://directleaks.net [0m
[13:36:04] [Server thread/INFO]: [iKoth] Loading iKoth v4.5
[13:36:04] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.4
[13:36:04] [Server thread/INFO]: [ClansLite] Loading ClansLite v1.3.9
[13:36:04] [Server thread/INFO]: [BCommons] Loading BCommons v0.3.0
[13:36:05] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.8.1
[13:36:05] [Server thread/INFO]: [ViaVersion] ViaVersion 4.8.1 is now loaded. Registering protocol transformers and injecting...
[13:36:09] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[13:36:10] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.102
[13:36:11] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[13:36:12] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.4
[13:36:12] [Server thread/INFO]: [Vulcan] Loading Vulcan v2.7.5
[13:36:17] [Server thread/INFO]: [TimedRewards] Loading TimedRewards v1.1.20
[13:36:17] [Server thread/INFO]: [TAB] Loading TAB v4.0.6
[13:36:17] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[13:36:17] [Server thread/INFO]: [Essentials] Loading Essentials v2.21.0-dev+17-79449ef
[13:36:17] [Server thread/INFO]: [JumpPads] Loading JumpPads v1.25.13
[13:36:17] [Server thread/INFO]: [AdvancedBan] Loading AdvancedBan v2.3.0
[13:36:17] [Server thread/INFO]: [ItemEdit] Loading ItemEdit v3.1.1
[13:36:17] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v3.5.1
[13:36:17] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.8.1-SNAPSHOT-575;aae9249
[13:36:25] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@54554264]
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.8.0
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[13:36:25] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[13:36:26] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[13:36:26] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[13:36:26] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[13:36:26] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[13:36:26] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[13:36:26] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[13:36:26] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.7-Release
[13:36:26] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[13:36:26] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.21.0-dev+17-79449ef
[13:36:26] [Server thread/INFO]: [PlayerKits2] Loading PlayerKits2 v1.7.1
[13:36:26] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.12
[13:36:26] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.21.0-dev+17-79449ef
[13:36:26] [Server thread/INFO]: [SIR] Loading SIR v2.2-R10
[13:36:26] [Server thread/INFO]: [CataMines] Loading CataMines v2.5.11
[13:36:26] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.9+5934e49
[13:36:26] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.17.2
[13:36:27] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (1558 ms).
[13:36:27] [Server thread/INFO]: [Shopkeepers] Loading config.
[13:36:28] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[13:36:28] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[13:36:28] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[13:36:28] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.4.2
[13:36:28] [Server thread/INFO]: [TemporaryBlocks] Loading TemporaryBlocks v1.0-SNAPSHOT
[13:36:29] [Server thread/INFO]: Using default implementation for ThreadExecutor
[13:36:29] [Server thread/INFO]: Initialized Scheduler Signaller of type: class net.geferon.libs.quartz.core.SchedulerSignalerImpl
[13:36:29] [Server thread/INFO]: Quartz Scheduler v.2.3.2 created.
[13:36:29] [Server thread/INFO]: RAMJobStore initialized.
[13:36:29] [Server thread/INFO]: Scheduler meta-data: Quartz Scheduler (v2.3.2) 'QuartzScheduler' with instanceId 'NON_CLUSTERED'
Scheduler class: 'net.geferon.libs.quartz.core.QuartzScheduler' - running locally.
NOT STARTED.
Currently in standby mode.
Number of jobs executed: 0
Using thread pool 'net.geferon.libs.quartz.simpl.SimpleThreadPool' - with 5 threads.
Using job-store 'net.geferon.libs.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
[13:36:29] [Server thread/INFO]: Quartz scheduler 'QuartzScheduler' initialized from an externally provided properties instance.
[13:36:29] [Server thread/INFO]: Quartz scheduler version: 2.3.2
[13:36:30] [Server thread/INFO]: JobFactory set to: net.geferon.temporaryblocks.scheduling.BinderJobFactory@5e182993
[13:36:30] [Server thread/INFO]: [PvPManager] Loading PvPManager v3.15.6
[13:36:30] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.2
[13:36:30] [Server thread/INFO]: [AdvancedEnchantments] Loading AdvancedEnchantments v9.4.2
[13:36:30] [Server thread/INFO]: [BeautyQuests] Loading BeautyQuests v0.20.1
[13:36:30] [Server thread/INFO]: [Skulls] Loading Skulls v3.11.1
[13:36:30] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[13:36:33] [Server thread/INFO]: [0;36;1m [0;36;22m __ [m
[13:36:33] [Server thread/INFO]: [0;36;1m | [0;36;22m|__) [0;32;22mLuckPerms[m [0;36;1mv5.4.102[m
[13:36:33] [Server thread/INFO]: [0;36;1m |___ [0;36;22m| [0;30;1mRunning on Bukkit - CraftBukkit[m
[13:36:33] [Server thread/INFO]: [m
[13:36:33] [Server thread/INFO]: [LuckPerms] Loading configuration...
[13:36:34] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[13:36:39] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[13:36:40] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[13:36:42] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 11915ms)
[13:36:42] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[13:36:42] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.21.0-dev+17-79449ef which is not a depend or softdepend of this plugin.
[13:36:42] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[13:36:43] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[13:36:43] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[13:36:43] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[13:36:43] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.1-SNAPSHOT-575;aae9249
[13:36:44] [Server thread/INFO]: LZ4 Compression Binding loaded successfully
[13:36:44] [Server thread/INFO]: ZSTD Compression Binding loaded successfully
[13:36:44] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[13:36:45] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[13:36:47] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[13:36:51] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[13:36:51] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[13:36:51] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[13:36:51] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[13:36:51] [Server thread/INFO]: [NexEngine] Plugin loaded in 429 ms!
[13:36:51] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[13:36:51] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[13:36:51] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[13:36:51] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[13:36:52] [Server thread/INFO]: Preparing level "world"
[13:36:52] [Server thread/INFO]: -------- World Settings For [world] --------
[13:36:52] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[13:36:52] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[13:36:52] [Server thread/INFO]: Item Despawn Rate: 6000
[13:36:52] [Server thread/INFO]: Item Merge Radius: 2.5
[13:36:52] [Server thread/INFO]: View Distance: 10
[13:36:52] [Server thread/INFO]: Simulation Distance: 10
[13:36:52] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[13:36:52] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[13:36:52] [Server thread/INFO]: Experience Merge Radius: 3.0
[13:36:52] [Server thread/INFO]: Cactus Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Cane Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Melon Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Sapling Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Carrot Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Potato Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Wheat Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Vine Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Kelp Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[13:36:52] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[13:36:52] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[13:36:52] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[13:36:52] [Server thread/INFO]: Max TNT Explosions: 100
[13:36:52] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:36:52] [Server thread/INFO]: Mob Spawn Range: 6
[13:36:52] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[13:36:52] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[13:36:52] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[13:36:52] [Server thread/INFO]: Item Despawn Rate: 6000
[13:36:52] [Server thread/INFO]: Item Merge Radius: 2.5
[13:36:52] [Server thread/INFO]: View Distance: 10
[13:36:52] [Server thread/INFO]: Simulation Distance: 10
[13:36:52] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[13:36:52] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[13:36:52] [Server thread/INFO]: Experience Merge Radius: 3.0
[13:36:52] [Server thread/INFO]: Cactus Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Cane Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Melon Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Sapling Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Carrot Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Potato Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Wheat Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Vine Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Kelp Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[13:36:52] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[13:36:52] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[13:36:52] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[13:36:52] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[13:36:53] [Server thread/INFO]: Max TNT Explosions: 100
[13:36:53] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:36:53] [Server thread/INFO]: Mob Spawn Range: 6
[13:36:53] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[13:36:53] [ForkJoinPool.commonPool-worker-1/WARN]: An update for FastAsyncWorldEdit is available. You are 6 build(s) out of date.
You are running build 575, the latest version is build 581.
Update at https://www.spigotmc.org/resources/13932/
[13:37:08] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[13:37:08] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[13:37:09] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:09] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:10] [Worker-Main-3/INFO]: Preparing spawn area: 8%
[13:37:10] [Worker-Main-10/INFO]: Preparing spawn area: 19%
[13:37:11] [Worker-Main-3/INFO]: Preparing spawn area: 43%
[13:37:11] [Worker-Main-11/INFO]: Preparing spawn area: 66%
[13:37:12] [Worker-Main-3/INFO]: Preparing spawn area: 89%
[13:37:12] [Server thread/INFO]: Time elapsed: 19264 ms
[13:37:12] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[13:37:27] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[13:37:27] [Worker-Main-10/INFO]: Preparing spawn area: 0%
[13:37:28] [Worker-Main-11/INFO]: Preparing spawn area: 4%
[13:37:28] [Worker-Main-3/INFO]: Preparing spawn area: 27%
[13:37:29] [Worker-Main-3/INFO]: Preparing spawn area: 63%
[13:37:29] [Worker-Main-11/INFO]: Preparing spawn area: 99%
[13:37:29] [Server thread/INFO]: Time elapsed: 17006 ms
[13:37:29] [Server thread/INFO]: [iKoth] Enabling iKoth v4.5
[13:37:30] [Server thread/WARN]: [iKoth] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.4 which is not a depend or softdepend of this plugin.
[13:37:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ikoth [4.5]
[13:37:30] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.4
[13:37:32] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[13:37:32] [Server thread/INFO]: [ClansLite] Enabling ClansLite v1.3.9
[13:37:32] [Server thread/INFO]: [ClansLite] §a-------------------------------------------
[13:37:32] [Server thread/INFO]: [ClansLite] §6ClansLite: §aA supported Minecraft version has been detected
[13:37:32] [Server thread/INFO]: [ClansLite] §6ClansLite: §aYour server version is: §d3871-Spigot-d2eba2c-3f9263b (MC: 1.20.1)
[13:37:32] [Server thread/INFO]: [ClansLite] §6ClansLite: §6Continuing plugin startup
[13:37:32] [Server thread/INFO]: [ClansLite] §a-------------------------------------------
[13:37:32] [Server thread/INFO]: [ClansLite] ====================================================
[13:37:32] [Server thread/INFO]: [ClansLite] ClansLite works better if you use Paper
[13:37:32] [Server thread/INFO]: [ClansLite] as your server software.
[13:37:32] [Server thread/INFO]: [ClansLite]
[13:37:32] [Server thread/INFO]: [ClansLite] Paper offers significant performance improvements,
[13:37:32] [Server thread/INFO]: [ClansLite] bug fixes, security enhancements and optional
[13:37:32] [Server thread/INFO]: [ClansLite] features for server owners to enhance their server.
[13:37:32] [Server thread/INFO]: [ClansLite]
[13:37:32] [Server thread/INFO]: [ClansLite] Paper includes Timings v2, which is significantly
[13:37:32] [Server thread/INFO]: [ClansLite] better at diagnosing lag problems over v1.
[13:37:32] [Server thread/INFO]: [ClansLite]
[13:37:32] [Server thread/INFO]: [ClansLite] All of your plugins should still work, and the
[13:37:32] [Server thread/INFO]: [ClansLite] Paper community will gladly help you fix any issues.
[13:37:32] [Server thread/INFO]: [ClansLite]
[13:37:32] [Server thread/INFO]: [ClansLite] Join the Paper Community @ https://papermc.io
[13:37:32] [Server thread/INFO]: [ClansLite] ====================================================
[13:37:33] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §cPlugManX not found!
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §cDisabling PlugManX hook loader
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §6Continuing plugin startup
[13:37:33] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:37:33] [Server thread/ERROR]: Cannot load plugins\ClansLite\messages.yml
org.bukkit.configuration.InvalidConfigurationException: while parsing a block mapping
in 'reader', line 13, column 1:
clan-name-too-short: "&3Nombre d ...
^
expected <block end>, but found '<anchor>'
in 'reader', line 232, column 12:
line-1: "&6ClansLite chest protections us ...
^
at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:110) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:308) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at xyz.gamlin.clans.files.MessagesFileManager.reloadMessagesConfig(MessagesFileManager.java:31) ~[?:?]
at xyz.gamlin.clans.files.MessagesFileManager.getMessagesConfig(MessagesFileManager.java:41) ~[?:?]
at xyz.gamlin.clans.utils.ClansStorageUtil.<clinit>(ClansStorageUtil.java:31) ~[?:?]
at xyz.gamlin.clans.Clans.onEnable(Clans.java:141) ~[?:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:546) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:460) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:588) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:413) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:972) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:303) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: org.yaml.snakeyaml.parser.ParserException: while parsing a block mapping
in 'reader', line 13, column 1:
clan-name-too-short: "&3Nombre d ...
^
expected <block end>, but found '<anchor>'
in 'reader', line 232, column 12:
line-1: "&6ClansLite chest protections us ...
^
at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:656) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:162) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:241) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:205) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157) ~[snakeyaml-2.0.jar:?]
at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.0.jar:?]
at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:103) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
... 18 more
[13:37:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clansLite [1.3.9]
[13:37:33] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §3PlaceholderAPI found!
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §3External placeholders enabled!
[13:37:33] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:37:33] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §3FloodgateApi not found!
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §3Bedrock support may not function!
[13:37:33] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:37:33] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §3Plugin by: §b§lLoving11ish
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §3has been loaded successfully
[13:37:33] [Server thread/INFO]: [ClansLite] §6ClansLite: §3Plugin Version: §d§l1.3.9
[13:37:33] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:37:33] [Server thread/INFO]: [BCommons] Enabling BCommons v0.3.0
[13:37:33] [Server thread/INFO]: [[0;33;22mBCommons[m] [[0;32;1mInfo[m]: Server version: [0;33;1m1.2 [m([0;33;1mv1_20_R1[m, legacy: [0;33;1mfalse[m).[m
[13:37:33] [Server thread/INFO]: [[0;33;22mBCommons[m] [[0;32;1mInfo[m]: Registered worker: [0;32;1mWorkerBInventory[m.[m
[13:37:33] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.8.1
[13:37:33] [Server thread/WARN]: [ViaVersion] Couldn't find reflection methods/fields to access Channel from player.
Login race condition fixer will be disabled.
Some plugins that use ViaAPI on join event may work incorrectly.
java.lang.NoSuchFieldException: NetworkManager
at com.viaversion.viaversion.bukkit.listeners.JoinListener.findField(JoinListener.java:80) ~[?:?]
at com.viaversion.viaversion.bukkit.listeners.JoinListener.<clinit>(JoinListener.java:50) ~[?:?]
at com.viaversion.viaversion.ViaVersionPlugin.onEnable(ViaVersionPlugin.java:109) ~[?:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:546) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:460) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:588) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:413) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:972) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:303) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:37:33] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20/1.20.1 (763)
[13:37:34] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.4
[13:37:34] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.5
[13:37:36] [Server thread/INFO]: [Vulcan] Server Version: 1.20 detected!
[13:37:37] [Server thread/INFO]: [Vulcan] BStats enabled!
[13:37:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.7.5]
[13:37:37] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[13:37:37] [Server thread/INFO]: [TimedRewards] Enabling TimedRewards v1.1.20
[13:37:37] [Server thread/INFO]: [[0;33;22mTimedRewards[m] [[0;32;1mInfo[m]: TimedRewards (free) enable start.[m
[13:37:37] [Server thread/INFO]: [[0;33;22mTimedRewards[m] [[0;32;1mInfo[m]: Purchase the premium version for multiple menus, unclaimed an claimed items, vote rewards,[m
[13:37:37] [Server thread/INFO]: [[0;33;22mTimedRewards[m] [[0;32;1mInfo[m]: in-game management and more. https://www.spigotmc.org/resources/46501/[m
[13:37:37] [Server thread/INFO]: [[0;33;22mTimedRewards[m] [[0;32;1mInfo[m]: Registered worker: [0;32;1mWorkerPlaceholder[m.[m
[13:37:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: trs [1.1.20]
[13:37:37] [Server thread/INFO]: [[0;33;22mTimedRewards[m] [[0;32;1mInfo[m]: Registered worker: [0;32;1mWorkerRewardMenu[m.[m
[13:37:37] [Server thread/INFO]: [[0;33;22mTimedRewards[m] [[0;32;1mInfo[m]: Loaded [0;33;1m7 [0;37;22mreward items (time taken: [0;33;1m39[0;37;22mms).[m
[13:37:37] [Server thread/INFO]: [[0;33;22mTimedRewards[m] [[0;32;1mInfo[m]: Registered command: [0;32;1mrewards [mwith [0;33;1m0 [mchildren.[m
[13:37:37] [Server thread/INFO]: [[0;33;22mTimedRewards[m] [[0;32;1mInfo[m]: Registered command: [0;32;1mtimedrewards [mwith [0;33;1m3 [mchildren.[m
[13:37:37] [Server thread/INFO]: [TAB] Enabling TAB v4.0.6
[13:37:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.0.6]
[13:37:38] [Server thread/INFO]: [TAB] [38;2;255;170;0m[Hint] Refresh interval of %rel_factionsuuid_relation_color% is same as default interval, therefore there is no need to override it.[m
[13:37:38] [Server thread/INFO]: [TAB] [38;2;85;255;85mEnabled in 940ms[m
[13:37:38] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+17-79449ef
[13:37:38] [Server thread/ERROR]: You are running an unsupported server version!
[13:37:39] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[13:37:39] [Server thread/INFO]: No kits found to migrate.
[13:37:41] [Server thread/INFO]: Loaded 39094 items from items.json.
[13:37:41] [Server thread/INFO]: Using locale es
[13:37:41] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[13:37:41] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[13:37:41] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[13:37:41] [Server thread/INFO]: Using Vault based permissions (LuckPerms)
[13:37:41] [Server thread/INFO]: [JumpPads] Enabling JumpPads v1.25.13
[13:37:41] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[13:37:41] [Server thread/INFO]: HikariPool-1 - Starting...
[13:37:43] [Server thread/INFO]: HikariPool-1 - Driver does not support get/set network timeout for connections. (característica no soportada)
[13:37:43] [Server thread/INFO]: HikariPool-1 - Start completed.
[13:37:44] [Server thread/INFO]:
[13:37:44] [Server thread/INFO]:
[13:37:44] [Server thread/INFO]: [0;30;1m[]=====[[0;37;22mEnabling AdvancedBan[0;30;1m]=====[]
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mInformation:
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mName: [0;37;22mAdvancedBan
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mDeveloper: [0;37;22mLeoko
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mVersion: [0;37;22m2.3.0
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mStorage: [0;37;22mHSQLDB (local)
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mSupport:
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mGithub: [0;37;22mhttps://github.com/DevLeoko/AdvancedBan/issues
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mDiscord: [0;37;22mhttps://discord.gg/ycDG6rS
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mTwitter: [0;37;22m@LeokoGar
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;31;1mUpdate:
[13:37:44] [Server thread/INFO]: [0;30;1m| [0;37;22mYou have the newest version
[13:37:44] [Server thread/INFO]: [0;30;1m[]================================[][m
[13:37:44] [Server thread/INFO]: [m
[13:37:44] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.1.1
[13:37:44] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1mHooking into Vault[m
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1mHooking into PlaceholderApi[m
[13:37:44] [Server thread/WARN]: [ItemEdit] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.4 which is not a depend or softdepend of this plugin.
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1mHooked into PlaceHolderAPI:[m
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1mplaceholders:[m
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1m [0;33;1m%itemedit_amount_[0;33;22m<{itemid}>[0;33;1m_[0;33;22m[{slot}][0;33;1m_[0;33;22m[{player}][0;33;1m%[m
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1m shows how many [0;33;22mitemid player [0;37;1mhas on [0;33;22mslot[m
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1m <{itemid}> for item id on serveritem[m
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1m [{slot}] for the slot where the item should be counted, by default [0;32;1minventory[m
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1m Values: [0;33;1minventory[0;37;1m (include offhand), [0;33;1mequip[0;37;1m (include offhand), [0;33;1minventoryandequip[0;37;1m (include offhand), [0;33;1mhand[0;37;1m, [0;33;1moffhand[0;37;1m, [0;33;1mhead[0;37;1m, [0;33;1mchest[0;37;1m, [0;33;1mlegs[0;37;1m, [0;33;1mfeet[m
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1m [{player}] for the player, by default [0;32;1mself[m
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1m example: %itemedit_amount_{[0;33;22mmy_item_id[0;37;1m}_{[0;33;22mhand[0;37;1m}%[m
[13:37:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[13:37:44] [Server thread/INFO]: [0;34;22m[[0;37;1mItemEdit[0;34;22m] [0;37;1m[0;32;1m# [0;37;1mEnabled (took [0;33;1m531[0;37;1m ms)[m
[13:37:44] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.5.1
[13:37:44] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[13:37:44] [Server thread/WARN]: [AuctionHouse] [1;33mA backup of the database has been saved with .backup extension.[0m
[13:37:45] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_20_R1
[13:37:45] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[13:37:45] [Server thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[13:37:45] [Server thread/INFO]: [AuctionHouse] Loaded 1 listing
[13:37:45] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[13:37:47] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[13:37:49] [Server thread/INFO]: [ajLeaderboards] Loaded 0 boards
[13:37:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[13:37:49] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[13:37:49] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[13:37:49] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[13:37:49] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[13:37:52] [Server thread/INFO]: [DeluxeMenus] 7 GUI menus loaded!
[13:37:52] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.13.7-Release]
[13:37:52] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+17-79449ef
[13:37:52] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[13:37:52] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.7.1
[13:37:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.7.1]
[13:37:53] [Server thread/INFO]: [0;30;1m[[0;36;1mPlayerKits[0;32;1m²[0;30;1m] [0;33;1mHas been enabled! [0;37;1mVersion: 1.7.1[m
[13:37:53] [Server thread/INFO]: [0;30;1m[[0;36;1mPlayerKits[0;32;1m²[0;30;1m] [0;33;1mThanks for using my plugin! [0;37;1m~Ajneb97[m
[13:37:53] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+17-79449ef
[13:37:53] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[13:37:53] [Server thread/INFO]: [SIR] Enabling SIR v2.2-R10
[13:37:53] [Server thread/INFO]: * *____ * ___ * ____
[13:37:53] [Server thread/INFO]: * (___ * * |* * |___)
[13:37:53] [Server thread/INFO]: * ____) . _|_ . | * \ . v2.2-R10
[13:37:53] [Server thread/INFO]:
[13:37:53] [Server thread/INFO]: * Developer: CroaBeast
[13:37:53] [Server thread/INFO]: * Software: CraftBukkit 1.20.1
[13:37:53] [Server thread/INFO]: * Java Version: 17.0.6
[13:37:53] [Server thread/INFO]:
[13:37:53] [Server thread/INFO]: [SIR] Loading plugin's files...
[13:37:53] [Server thread/INFO]: [SIR] The modules.yml file has been updated.
[13:37:53] [Server thread/INFO]: [SIR] The lang.yml file has been updated.
[13:37:53] [Server thread/INFO]: [SIR] The config.yml file has been updated.
[13:37:54] [Server thread/INFO]: [SIR] Loaded 14 files in 413 ms.
[13:37:54] [Server thread/INFO]: [SIR]
[13:37:54] [Server thread/INFO]: [SIR] Checking all compatible hooks...
[13:37:54] [Server thread/INFO]: [SIR] PlaceholderAPI: Found v. 2.11.4
[13:37:54] [Server thread/INFO]: [SIR] Vault: Permission System registered.
[13:37:54] [Server thread/INFO]: [SIR] Vanish Plugin: Found Essentials v. 2.21.0-dev+17-79449ef
[13:37:54] [Server thread/INFO]: [SIR] The announcement task has been started.
[13:37:54] [Server thread/INFO]: [SIR]
[13:37:54] [Server thread/INFO]: [SIR] SIR 2.2-R10 was loaded in 713 ms.
[13:37:54] [Server thread/INFO]:
[13:37:54] [Server thread/INFO]: [CataMines] Enabling CataMines v2.5.11
[13:37:54] [Server thread/INFO]: [CataMines] Loading config file
[13:37:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: catamines [2.5.11]
[13:37:54] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[13:37:54] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[13:37:54] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[13:37:54] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[13:37:54] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[13:37:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[13:37:54] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[13:37:54] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[13:37:54] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[13:37:54] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[13:37:55] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[13:37:55] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:37:55] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.17.2
[13:37:56] [Server thread/INFO]: [Shopkeepers] Loading the data of 16 shopkeepers ...
[13:37:56] [Server thread/WARN]: [Shopkeepers] Shopkeeper 12: Name is more than 256 characters long ('§x§0§0§1§1§f§8§l?§x§0§5§1§c§f§2§l?§x§0§a§2§8§e§c§l?§x§0§e§3§3§e§6§l?§x§1§3§3§f§e§0§l?§x§1§8§4§a§d§a§l? §x§1§d§5§6§d§4§l?§x§2§2§6§1§c§e§l? §x§2§6§6§d§c§7§l?§x§2§b§7§8§c§1§l?§x§3§0§8§4§b§b§l?§x§3§5§8§f§b§5§l?§x§3§a§9§b§a§f§l?§x§3§e§a§6§a§9§l?§x§4§3§b§2§a§3§l?§x§4§8§b§d§9§d§ls'). Name is trimmed to '§x§0§0§1§1§f§8§l?§x§0§5§1§c§f§2§l?§x§0§a§2§8§e§c§l?§x§0§e§3§3§e§6§l?§x§1§3§3§f§e§0§l?§x§1§8§4§a§d§a§l? §x§1§d§5§6§d§4§l?§x§2§2§6§1§c§e§l? §x§2§6§6§d§c§7§l?§x§2§b§7§8§c§1§l?§x§3§0§8§4§b§b§l?§x§3§5§8§f§b§5§l?§x§3§a§9§b§a§f§l?§x§3§e§a§6§a§9§l?§x§4§3§b§2§a§3§l'.
[13:37:56] [Server thread/WARN]: [Shopkeepers] Shopkeeper 13: Name is more than 256 characters long ('§x§0§9§f§f§3§8§l?§x§0§c§f§6§3§6§l?§x§0§e§e§d§3§5§l?§x§1§1§e§4§3§3§l?§x§1§3§d§b§3§2§l?§x§1§6§d§2§3§0§l? §x§1§8§c§9§2§f§l?§x§1§b§c§1§2§d§l? §x§1§d§b§8§2§b§l?§x§2§0§a§f§2§a§l?§x§2§2§a§6§2§8§l?§x§2§5§9§d§2§7§l?§x§2§7§9§4§2§5§l?§x§2§a§8§b§2§4§l?§x§2§c§8§2§2§2§ls'). Name is trimmed to '§x§0§9§f§f§3§8§l?§x§0§c§f§6§3§6§l?§x§0§e§e§d§3§5§l?§x§1§1§e§4§3§3§l?§x§1§3§d§b§3§2§l?§x§1§6§d§2§3§0§l? §x§1§8§c§9§2§f§l?§x§1§b§c§1§2§d§l? §x§1§d§b§8§2§b§l?§x§2§0§a§f§2§a§l?§x§2§2§a§6§2§8§l?§x§2§5§9§d§2§7§l?§x§2§7§9§4§2§5§l?§x§2§a§8§b§2§4§l?§x§2§c§8§2§2§2§l'.
[13:37:57] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.4.2
[13:37:57] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[13:37:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [4.4.2]
[13:37:57] [Server thread/INFO]: HikariPool-1 - Starting...
[13:37:57] [Server thread/INFO]: HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@56e856d0
[13:37:57] [Server thread/INFO]: HikariPool-1 - Start completed.
[13:37:57] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[13:37:57] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[13:37:58] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
[13:37:58] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'emerald' in 'default' menu!
[13:37:58] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'golden' in 'default' menu!
[13:37:58] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'diamond' in 'default' menu!
[13:37:58] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[13:37:58] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 1273 ms!
[13:37:58] [Server thread/INFO]: [TemporaryBlocks] Enabling TemporaryBlocks v1.0-SNAPSHOT
[13:37:58] [Server thread/INFO]: Scheduler QuartzScheduler_$_NON_CLUSTERED started.
[13:37:58] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.15.6
[13:37:58] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;32;1mUsing player nametags: [0;36;1mtrue[m
[13:37:58] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;32;1mConnected to [0;36;1mSQLITE[0;32;1m database successfully[m
[13:37:58] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;32;1mPlayers stored: [0;33;22m4[m
[13:37:58] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;35;22mWorldGuard Found! Enabling Support For WorldGuard Regions[m
[13:37:58] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;35;22mEssentials Found! Hooked successfully[m
[13:37:58] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;35;22mVault Found! Using it for currency related features[m
[13:37:58] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;35;22mPlaceholderAPI Found! Hooked successfully[m
[13:37:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [3.15.6]
[13:37:59] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;32;1mPvPManager v3.15.6 enabled [0;37;22m(604 ms)[m
[13:37:59] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.2
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[13:37:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[13:37:59] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.4.2
[13:37:59] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Checking for updates...
[13:38:00] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[13:38:00] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuardExtraFlags.
[13:38:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedenchantments [1.0.0]
[13:38:00] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[13:38:00] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Essentials.
[13:38:01] [PvPManager Worker Thread - 0/INFO]: [PvPManager] No update found
[13:38:01] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[13:38:01] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[13:38:02] [Server thread/INFO]: [AdvancedEnchantments] Registering Vulcan Hook and enabling module...
[13:38:03] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[13:38:03] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20.1
[13:38:03] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[13:38:03] [Server thread/WARN]: [BeautyQuests] You are not running the Paper software.
It is highly recommended to use it for extended features and more stability.
[13:38:03] [Server thread/WARN]: [BeautyQuests] The Minecraft version 1_20_R1 is not supported by BeautyQuests.
[13:38:03] [Server thread/WARN]: [BeautyQuests] Some functionnalities of the plugin have not been enabled.
[13:38:03] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.167s)!
[13:38:03] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[13:38:03] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[13:38:03] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[13:38:05] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[13:38:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beautyquests [0.20.1]
[13:38:05] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[13:38:05] [Server thread/ERROR]: [BeautyQuests] No NPC plugin installed - please install Citizens or znpcs
[13:38:05] [Server thread/ERROR]: [BeautyQuests] This is a fatal error. Now disabling.
[13:38:05] [Server thread/INFO]: [WorldGuard] Unregistering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[13:38:05] [Server thread/INFO]: [Skulls] Enabling Skulls v3.11.1
[13:38:05] [Server thread/INFO]: [m
[13:38:05] [Server thread/INFO]: [38;2;0;168;127m=============================[m
[13:38:05] [Server thread/INFO]: [38;2;0;206;116mSkulls [0;37;1mv[0;33;1m3.11.1 [38;2;203;203;203mby [38;2;0;206;116mTweetzy[m
[13:38:05] [Server thread/INFO]: [38;2;0;206;116mDeveloper[38;2;203;203;203m: [0;33;1mKiran Hart[m
[13:38:06] [Server thread/INFO]: [0;30;1m[[38;2;0;206;116mFlightCore[0;30;1m][38;2;203;203;203m Enabling metrics for [38;2;0;206;116mSkulls[m
[13:38:06] [Server thread/INFO]: [38;2;0;168;127m=============================[m
[13:38:06] [Server thread/INFO]: [m
[13:38:06] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[13:38:08] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[13:38:08] [Server thread/INFO]: Done (76.120s)! For help, type "help"
[13:38:08] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.9+5934e49 which is not a depend or softdepend of this plugin.
[13:38:08] [Server thread/INFO]: Plugin 'WorldGuard' found. Using it now.
[13:38:08] [Server thread/INFO]: Attempting to use plugin 'WorldGuard'
[13:38:08] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:38:08] [Server thread/INFO]: [0;32;1m[JumpPads] CleanUp found no JumpPads to delete![m
[13:38:08] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Essentials for Vault's Economy API
[13:38:08] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LuckPerms for Vault's Chat API
[13:38:08] [Craft Scheduler Thread - 4/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[13:38:08] [Craft Scheduler Thread - 9/INFO]: §6Obteniendo información de versión...
[13:38:08] [Server thread/INFO]:
[13:38:08] [Server thread/INFO]: [SIR] Registering all the advancement values...
[13:38:08] [Server thread/INFO]: [SIR] All worlds have default advancements disabled.
[13:38:08] [Craft Scheduler Thread - 5/INFO]: [DecentHolograms] Loading holograms...
[13:38:08] [Server thread/WARN]: [SIR] Task #51 for SIR v2.2-R10 generated an exception
java.lang.ClassCastException: class java.lang.Integer cannot be cast to class [[Ljava.lang.String; (java.lang.Integer and [[Ljava.lang.String; are in module java.base of loader 'bootstrap')
at me.croabeast.sirplugin.object.advance.AdvancementInfo.<init>(AdvancementInfo.java:79) ~[?:?]
at me.croabeast.sirplugin.Initializer.loadAdvances(Initializer.java:183) ~[?:?]
at me.croabeast.sirplugin.SIRPlugin.lambda$onEnable$1(SIRPlugin.java:92) ~[?:?]
at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:415) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1256) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:387) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1197) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1014) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:303) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:38:08] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.102 which is not a depend or softdepend of this plugin.
[13:38:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[13:38:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.5]
[13:38:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[13:38:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[13:38:08] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[13:38:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[13:38:08] [Server thread/INFO]: [0;32;1m5 placeholder hook(s) registered! [0;33;22m1 placeholder hook(s) have an update available.[m
[13:38:08] [Server thread/INFO]: [CataMines] Loading mines from files...
[13:38:08] [Craft Scheduler Thread - 2/WARN]: [ClansLite] §4*-------------------------------------------*
[13:38:08] [Craft Scheduler Thread - 2/WARN]: [ClansLite] §6ClansLite: §cA new version is available!
[13:38:08] [Craft Scheduler Thread - 2/WARN]: [ClansLite] §4*-------------------------------------------*
[13:38:08] [Craft Scheduler Thread - 5/INFO]: [DecentHolograms] Loaded 17 holograms!
[13:38:10] [Server thread/INFO]: [CataMines] Starting mines and registering commands. Running version 2.5.11
[13:38:10] [Server thread/INFO]: [CataMines] Registering listeners
[13:38:10] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[13:38:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionhouse [3.5.1]
[13:38:10] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[13:38:10] [Craft Scheduler Thread - 4/INFO]: [Vault] Checking for Updates ...
[13:38:11] [Server thread/INFO]: [38;2;221;94;137m[21mS[38;2;227;115;152m[21mk[38;2;233;136;167m[21mu[38;2;239;157;182m[21ml[38;2;245;178;197m[21ml[38;2;251;199;212m[21ms[m [0;30;1m» [0;32;1mLoaded [0;33;1m56286 [0;32;1mskulls in [0;37;1m5,066.232[0;32;1mms[m
[13:38:11] [Craft Scheduler Thread - 4/INFO]: [Vault] No new version available
[13:38:11] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into AdvancedEnchantments, WorldGuard, PlaceholderAPI.
[13:38:12] [Craft Scheduler Thread - 8/INFO]: [38;2;221;94;137m[21mS[38;2;227;115;152m[21mk[38;2;233;136;167m[21mu[38;2;239;157;182m[21ml[38;2;245;178;197m[21ml[38;2;251;199;212m[21ms[m [0;30;1m» [0;32;1mLoaded [0;33;1m141[0;32;1m history inserts[m
[13:38:13] [Craft Scheduler Thread - 4/INFO]: [ClansLite] §6ClansLite: §aAuto save task has started.
[13:38:13] [Craft Scheduler Thread - 4/INFO]: [ClansLite] §6ClansLite: §aAuto invite wipe task has started.
[13:38:21] [Server thread/INFO]:
[13:38:21] [Server thread/INFO]: >> Announcer command Help
[13:38:21] [Server thread/INFO]: - /announcer: Shows this help menu.
[13:38:21] [Server thread/INFO]: - /announcer start: Starts the task.
[13:38:21] [Server thread/INFO]: - /announcer cancel: Cancels the task.
[13:38:21] [Server thread/INFO]: - /announcer reboot: Reboots the task.
[13:38:21] [Server thread/INFO]: - /announcer preview <ID>:
[13:38:21] [Server thread/INFO]: Shows a preview of an announcement.
[13:38:21] [Server thread/INFO]:
[13:38:28] [Server thread/INFO]: Using com.fastasyncworldedit.bukkit.adapter.NMSRelighterFactory as relighter factory.
[13:38:28] [User Authenticator #1/INFO]: UUID of player bleak_737 is e7e729c9-ac35-300f-8eb6-804497cfddd3
-[13:38:32] [Server thread/INFO]: bleak_737[/ ip ] logged in with entity id 328 at ([world]302.86119520118586, 20.0625, 156.11783679028386)
+[13:38:32] [Server thread/INFO]: bleak_737[/ 1=15=ip ] logged in with entity id 328 at ([world]302.86119520118586, 20.0625, 156.11783679028386)
[13:38:34] [Server thread/WARN]: Permissions lag notice with (LuckPermsHandler). Response took 55.367400ms. Summary: Getting group for bleak_737
[13:38:34] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6164ms or 123 ticks behind
[13:39:25] [Server thread/INFO]: bleak_737 issued server command: /pl
[13:39:53] [Server thread/INFO]: Stopping the server
[13:39:53] [Server thread/INFO]: Stopping server
[13:39:53] [Server thread/INFO]: [Skulls] Disabling Skulls v3.11.1
[13:39:53] [Server thread/INFO]: [AdvancedEnchantments] Disabling AdvancedEnchantments v9.4.2
[13:39:53] [Server thread/INFO]: [WorldGuardExtraFlags] Disabling WorldGuardExtraFlags v4.2.2
[13:39:53] [Server thread/INFO]: [PvPManager] Disabling PvPManager v3.15.6
[13:39:53] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;31;1mSaving player data to storage...[m
[13:39:53] [Server thread/INFO]: [0;31;1m[[0;30;1mPvPManager[0;31;1m] [0;31;1mClosed SQLITE storage[m
[13:39:53] [Server thread/INFO]: [TemporaryBlocks] Disabling TemporaryBlocks v1.0-SNAPSHOT
[13:39:53] [Server thread/INFO]: Scheduler QuartzScheduler_$_NON_CLUSTERED shutting down.
[13:39:53] [Server thread/INFO]: Scheduler QuartzScheduler_$_NON_CLUSTERED paused.
[13:39:53] [Server thread/INFO]: Scheduler QuartzScheduler_$_NON_CLUSTERED shutdown complete.
[13:39:53] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.4.2
[13:39:53] [Server thread/INFO]: HikariPool-1 - Shutdown initiated...
[13:39:53] [Server thread/INFO]: HikariPool-1 - Shutdown completed.
[13:39:53] [Server thread/INFO]: [Shopkeepers] Disabling Shopkeepers v2.17.2
[13:39:53] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.9+5934e49
[13:39:53] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[13:39:53] [Server thread/ERROR]: Error occurred while disabling WorldGuard v7.0.9+5934e49 (Is it up to date?)
java.lang.IllegalStateException: zip file closed
at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:159) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:104) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:99) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
at net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler.onAbsentValue(GlideFlagHandler.java:57) ~[?:?]
at net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler.onAbsentValue(GlideFlagHandler.java:18) ~[?:?]
at com.sk89q.worldguard.session.handler.FlagValueChangeHandler.onClearValue(FlagValueChangeHandler.java:86) ~[?:?]
at com.sk89q.worldguard.session.handler.FlagValueChangeHandler.uninitialize(FlagValueChangeHandler.java:50) ~[?:?]
at com.sk89q.worldguard.session.Session.uninitialize(Session.java:134) ~[?:?]
at com.sk89q.worldguard.bukkit.session.BukkitSessionManager.shutdown(BukkitSessionManager.java:92) ~[?:?]
at com.sk89q.worldguard.bukkit.BukkitWorldGuardPlatform.unload(BukkitWorldGuardPlatform.java:149) ~[?:?]
at com.sk89q.worldguard.WorldGuard.disable(WorldGuard.java:206) ~[?:?]
at com.sk89q.worldguard.bukkit.WorldGuardPlugin.onDisable(WorldGuardPlugin.java:266) ~[?:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:268) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:367) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:501) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:493) ~[spigot-api-1.20.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_20_R1.CraftServer.disablePlugins(CraftServer.java:480) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:864) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.dedicated.DedicatedServer.t(DedicatedServer.java:692) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1047) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:303) ~[spigot-1.20.1-R0.1-SNAPSHOT.jar:3871-Spigot-d2eba2c-3f9263b]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:39:53] [Server thread/INFO]: [CataMines] Disabling CataMines v2.5.11
[13:39:53] [Server thread/INFO]: [SIR] Disabling SIR v2.2-R10
[13:39:53] [Server thread/INFO]: * *____ * ___ * ____
[13:39:53] [Server thread/INFO]: * (___ * * |* * |___)
[13:39:53] [Server thread/INFO]: * ____) . _|_ . | * \ . v2.2-R10
[13:39:53] [Server thread/INFO]:
[13:39:53] [Server thread/INFO]: [SIR] All worlds have default advancements enabled.
[13:39:53] [Server thread/INFO]: [SIR] The announcement task has been stopped.
[13:39:53] [Server thread/INFO]: [SIR] SIR 2.2-R10 was totally disabled.
[13:39:53] [Server thread/INFO]:
[13:39:53] [Server thread/INFO]: Disabling EssentialsSpawn v2.21.0-dev+17-79449ef
[13:39:53] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.12
[13:39:53] [Server thread/INFO]: [PlayerKits2] Disabling PlayerKits2 v1.7.1
[13:39:53] [Server thread/INFO]: [0;30;1m[[0;36;1mPlayerKits[0;32;1m²[0;30;1m] [0;33;1mHas been disabled! [0;37;1mVersion: 1.7.1[m
[13:39:53] [Server thread/INFO]: Disabling EssentialsChat v2.21.0-dev+17-79449ef
[13:39:53] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.13.7-Release
[13:39:53] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.8.0
[13:39:53] [pool-50-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[13:39:53] [pool-50-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[13:39:53] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[13:39:53] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[13:39:53] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 disabled.
[13:39:53] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.8.1-SNAPSHOT-575;aae9249
[13:39:53] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[13:39:53] [Server thread/INFO]: [AuctionHouse] Disabling AuctionHouse v3.5.1
[13:39:53] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion auctionhouse
[13:39:53] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin AuctionHouse was disabled.
[13:39:53] [Server thread/INFO]: [AuctionHouse] Saving auctions data
[13:39:53] [Server thread/INFO]: [ItemEdit] Disabling ItemEdit v3.1.1
[13:39:53] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion itemedit
[13:39:53] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin ItemEdit was disabled.
[13:39:53] [Server thread/INFO]: [AdvancedBan] Disabling AdvancedBan v2.3.0
[13:39:53] [Server thread/INFO]: Database closed
[13:39:53] [Server thread/INFO]: HikariPool-1 - Shutdown initiated...
[13:39:53] [Server thread/INFO]: HikariPool-1 - Shutdown completed.
[13:39:53] [Server thread/INFO]:
[13:39:53] [Server thread/INFO]:
[13:39:53] [Server thread/INFO]: [0;30;1m[]=====[[0;37;22mDisabling AdvancedBan[0;30;1m]=====[]
[13:39:53] [Server thread/INFO]: [0;30;1m| [0;31;1mInformation:
[13:39:53] [Server thread/INFO]: [0;30;1m| [0;31;1mName: [0;37;22mAdvancedBan
[13:39:53] [Server thread/INFO]: [0;30;1m| [0;31;1mDeveloper: [0;37;22mLeoko
[13:39:53] [Server thread/INFO]: [0;30;1m| [0;31;1mVersion: [0;37;22m2.3.0
[13:39:53] [Server thread/INFO]: [0;30;1m| [0;31;1mStorage: [0;37;22mHSQLDB (local)
[13:39:53] [Server thread/INFO]: [0;30;1m| [0;31;1mSupport:
[13:39:53] [Server thread/INFO]: [0;30;1m| [0;31;1mGithub: [0;37;22mhttps://github.com/DevLeoko/AdvancedBan/issues
[13:39:53] [Server thread/INFO]: [0;30;1m| [0;31;1mDiscord: [0;37;22mhttps://discord.gg/ycDG6rS
[13:39:53] [Server thread/INFO]: [0;30;1m| [0;31;1mTwitter: [0;37;22m@LeokoGar
[13:39:53] [Server thread/INFO]: [0;30;1m[]================================[][m
[13:39:53] [Server thread/INFO]: [m
[13:39:53] [Server thread/INFO]: [JumpPads] Disabling JumpPads v1.25.13
[13:39:53] [Server thread/INFO]: Disabling Essentials v2.21.0-dev+17-79449ef
[13:39:53] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[13:39:53] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[13:39:53] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion vault
[13:39:53] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Vault was disabled.
[13:39:53] [Server thread/INFO]: [TAB] Disabling TAB v4.0.6
[13:39:54] [Server thread/INFO]: [TAB] [38;2;85;255;85mDisabled in 8ms[m
[13:39:54] [Server thread/INFO]: [TimedRewards] Disabling TimedRewards v1.1.20
[13:39:54] [Server thread/INFO]: [Vulcan] Disabling Vulcan v2.7.5
[13:39:54] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.4
[13:39:54] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.102
[13:39:54] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion luckperms
[13:39:54] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin LuckPerms was disabled.
[13:39:54] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[13:39:54] [Server thread/INFO]: [LuckPerms] Closing storage...
[13:39:54] [Server thread/INFO]: [LuckPerms] Goodbye!
[13:39:54] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v4.8.1
[13:39:54] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[13:39:54] [Server thread/INFO]: [BCommons] Disabling BCommons v0.3.0
[13:39:54] [Server thread/INFO]: [ClansLite] Disabling ClansLite v1.3.9
[13:39:54] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:39:54] [Server thread/INFO]: [ClansLite] §6ClansLite: §3Plugin by: §b§lLoving11ish
[13:39:54] [Server thread/INFO]: [ClansLite] §6ClansLite: §3Background tasks have disabled successfully!
[13:39:54] [Server thread/INFO]: [ClansLite] §6ClansLite: §3All clans saved to clans.yml successfully!
[13:39:54] [Server thread/INFO]: [ClansLite] §6ClansLite: §3All users saved to usermap.yml successfully!
[13:39:54] [Server thread/INFO]: [ClansLite] §6ClansLite: §3Plugin Version: §d§l1.3.9
[13:39:54] [Server thread/INFO]: [ClansLite] §6ClansLite: §3Has been shutdown successfully
[13:39:54] [Server thread/INFO]: [ClansLite] §6ClansLite: §3Goodbye!
[13:39:54] [Server thread/INFO]: [ClansLite] -------------------------------------------
[13:39:54] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.4
[13:39:54] [Server thread/INFO]: [iKoth] Disabling iKoth v4.5
[13:39:54] [Server thread/INFO]: Saving players
[13:39:54] [Server thread/INFO]: bleak_737 lost connection: Server closed
[13:39:54] [Server thread/INFO]: bleak_737 left the game.
[13:39:54] [Server thread/INFO]: Saving worlds
[13:40:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[13:40:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[13:40:03] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[13:40:03] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[13:40:03] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved