Paste #125434: Diff Report Between Paste #125433 and #125432

Date: 2024/08/10 09:40:13 UTC-07:00
Type: Diff Report

View Raw Paste Download This Paste Edit Of Paste 125433
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


 [12:02:31] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
 [12:02:35] [ServerMain/INFO]: Loaded 1174 recipes
 [12:02:36] [ServerMain/INFO]: Loaded 1271 advancements
 [12:02:37] [Server thread/INFO]: Starting minecraft server version 1.20.4
 [12:02:37] [Server thread/INFO]: Loading properties
 [12:02:37] [Server thread/INFO]: This server is running Paper version git-Paper-497 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: d8d54d9 on ver/1.20.4)
 [12:02:39] [Server thread/INFO]: Server Ping Player Sample Count: 12
 [12:02:39] [Server thread/INFO]: Using 4 threads for Netty based IO
 [12:02:39] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
     We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
     For more information please visit: https://github.com/PaperMC/Paper/issues/8948
 [12:02:39] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
 [12:02:40] [Server thread/INFO]: Default game type: SURVIVAL
 [12:02:40] [Server thread/INFO]: Generating keypair
 [12:02:40] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25581
 [12:02:40] [Server thread/INFO]: Using epoll channel type
 [12:02:40] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
 [12:02:40] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
 [12:02:41] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
 [12:02:42] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
 [12:02:42] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
 [12:02:42] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
 [12:02:42] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
 [12:02:51] [Server thread/WARN]: Legacy plugin CommandNPC v1.9.1 does not specify an api-version.
 [12:02:51] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loading 1 libraries... please wait
 [12:02:51] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
 [12:02:51] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
 [12:02:51] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
 [12:02:51] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
 [12:02:51] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
 [12:02:51] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
 [12:02:51] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.2
 [12:02:51] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.2 is now loaded. Registering protocol transformers and injecting...
 [12:02:53] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
 [12:02:54] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
 [12:02:55] [Server thread/INFO]: [ViaBackwards] Loading translations...
 [12:02:55] [Server thread/INFO]: [ViaBackwards] Registering protocols...
 [12:02:56] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.134
 [12:02:56] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
 [12:02:56] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.2.19+6642-415ef95
 [12:02:59] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2fee8766]
 [12:02:59] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.1
 [12:02:59] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
 [12:02:59] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
 [12:02:59] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+107-7b02d22
 [12:02:59] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
 [12:02:59] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v3.0.6-SNAPSHOT
 [12:02:59] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3385)
 [12:02:59] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+107-7b02d22
 [12:02:59] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.5.1
 [12:02:59] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.2
 [12:02:59] [Server thread/INFO]: [MortisCore] Loading server plugin MortisCore v1.0
 [12:02:59] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.9
 [12:02:59] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
 [12:02:59] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.4.0
 [12:02:59] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.3
 [12:02:59] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
 [12:02:59] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
 [12:02:59] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
 [12:02:59] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.56
 [12:03:00] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
 [12:03:01] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.0
 [12:03:01] [Server thread/INFO]: [ServersNPC] Loading server plugin ServersNPC v4.7
 [12:03:01] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v1.3.0-b10
 [12:03:01] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2024.07
 [12:03:01] [Server thread/INFO]: [SimpleRename] Loading server plugin SimpleRename v13.9
 [12:03:01] [Server thread/INFO]: [Vehicles] Loading server plugin Vehicles v14.8.1
 [12:03:06] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.7.9
 [12:03:06] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
 [12:03:06] [Server thread/INFO]: [MortisItemsPlus] Loading server plugin MortisItemsPlus v1.1
 [12:03:06] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+107-7b02d22
 [12:03:06] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.2.3
 [12:03:06] [Server thread/INFO]: [MortisBountySystem] Loading server plugin MortisBountySystem v1.1
 [12:03:06] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
 [12:03:06] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.8.7
 [12:03:06] [Server thread/INFO]: [MortisBank] Loading server plugin MortisBank v4.0
 [12:03:06] [Server thread/INFO]: [MyPortalsCommands] Loading server plugin MyPortalsCommands v2.3.1
 [12:03:06] [Server thread/INFO]: [CommandNPC] Loading server plugin CommandNPC v1.9.1
 [12:03:06] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.1
 [12:03:06] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.0.0
 [12:03:06] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.6
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
 [12:03:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
 [12:03:06] [Server thread/INFO]: [GraveStonesPlus] Loading server plugin GraveStonesPlus v1.6.3
 [12:03:06] [Server thread/INFO]: [MessageAnnouncer] Loading server plugin MessageAnnouncer v1.12.3
 [12:03:06] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.12
 [12:03:06] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
 [12:03:06] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.134
 [12:03:08] [Server thread/INFO]:         __    
 [12:03:08] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.134
 [12:03:08] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
 [12:03:08] [Server thread/INFO]: 
 [12:03:08] [Server thread/INFO]: [LuckPerms] Loading configuration...
 [12:03:09] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
 [12:03:09] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
 [12:03:09] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
 [12:03:10] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
 [12:03:11] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
 [12:03:12] [Server thread/INFO]: [LuckPerms] Performing initial data load...
 [12:03:12] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5645ms)
 [12:03:12] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
 [12:03:12] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
 [12:03:12] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
 [12:03:12] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
 [12:03:12] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
 [12:03:12] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.19+6642-415ef95
 [12:03:12] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
 [12:03:13] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
 [12:03:14] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R3.PaperweightAdapter as the Bukkit adapter
 [12:03:16] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v3.0.6-SNAPSHOT
 [12:03:16] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
 [12:03:16] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
 [12:03:16] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
 [12:03:16] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
 [12:03:16] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
 [12:03:16] [Server thread/INFO]: [NexEngine] Plugin loaded in 149 ms!
 [12:03:16] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.4.0
 [12:03:17] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
 [12:03:17] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
 [12:03:17] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
 [12:03:17] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
 [12:03:17] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
 [12:03:17] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
 [12:03:18] [Server thread/ERROR]: An unexpected error occurred while starting the plugin. Please check the console for more details.
 java.lang.NoSuchMethodError: 'com.viaversion.viaversion.api.protocol.version.ProtocolVersion com.viaversion.viaversion.api.protocol.version.ServerProtocolVersion.lowestSupportedProtocolVersion()'
     at net.skinsrestorer.bukkit.refresher.ViaWorkaround.shouldApplyWorkaround(ViaWorkaround.java:35) ~[SkinsRestorer.jar:?]
     at net.skinsrestorer.bukkit.SRBukkitInit.selectSpigotRefresher(SRBukkitInit.java:125) ~[SkinsRestorer.jar:?]
     at net.skinsrestorer.bukkit.SRBukkitInit.detectRefresh(SRBukkitInit.java:109) ~[SkinsRestorer.jar:?]
     at net.skinsrestorer.bukkit.SRBukkitInit.initSkinApplier(SRBukkitInit.java:77) ~[SkinsRestorer.jar:?]
     at net.skinsrestorer.shared.plugin.SRPlugin.startup(SRPlugin.java:323) ~[SkinsRestorer.jar:?]
     at net.skinsrestorer.shared.plugin.SRBootstrapper.startPlugin(SRBootstrapper.java:62) ~[SkinsRestorer.jar:?]
     at net.skinsrestorer.bukkit.SRBukkitBootstrap.onEnable(SRBukkitBootstrap.java:45) ~[SkinsRestorer.jar:?]
     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-497]
     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-497]
     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-497]
     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-497]
     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:275) ~[paper-1.20.4.jar:git-Paper-497]
     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-497]
     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-497]
     at java.lang.Thread.run(Thread.java:1583) ~[?:?]
 [12:03:18] [Server thread/WARN]: Updater was not initialized, a error occurred while starting the plugin. Forcing updater to initialize.
 [12:03:18] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
 [12:03:18] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 [12:03:18] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
 [12:03:18] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
 [12:03:18] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
 [12:03:18] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
 [12:03:18] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |------------------|
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |    Error Mode    |
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Version: 15.4.0
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Commit: 7837da9
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     This is the latest version!
 [12:03:18] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
 [12:03:19] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
 [12:03:19] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
 [12:03:19] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
 [12:03:19] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
 [12:03:19] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
 [12:03:19] [Server thread/INFO]: Preparing level "world"
 [12:03:20] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
 [12:03:22] [Server thread/INFO]: Time elapsed: 1915 ms
 [12:03:22] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
 [12:03:22] [Server thread/INFO]: Time elapsed: 39 ms
 [12:03:22] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
 [12:03:22] [Server thread/INFO]: Time elapsed: 24 ms
 [12:03:22] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.2
 [12:03:22] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.3 (765)
 [12:03:23] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.1
 [12:03:23] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
 [12:03:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
 [12:03:24] [Server thread/INFO]: [WorldGuard] Loading region data...
 [12:03:24] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
 [12:03:25] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
 [12:03:25] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+107-7b02d22
 [12:03:25] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
 [12:03:25] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
 [12:03:25] [Server thread/INFO]: [Essentials] No kits found to migrate.
 [12:03:25] [Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
 [12:03:25] [Server thread/INFO]: [Essentials] Using locale en_US
 [12:03:25] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
 [12:03:26] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
 [12:03:26] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
 [12:03:26] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
 [12:03:26] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
 [12:03:26] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
 [12:03:26] [Server thread/INFO]: [Multiverse-Core] §aWe are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
 [12:03:26] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
 [12:03:26] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
 [12:03:26] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
 [12:03:27] [Server thread/INFO]: Time elapsed: 677 ms
 [12:03:27] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
 [12:03:27] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn_backup
 [12:03:27] [Server thread/INFO]: Time elapsed: 61 ms
 [12:03:27] [Server thread/INFO]: [WorldGuard] (spawn_backup) TNT ignition is PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (spawn_backup) Lighters are PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (spawn_backup) Lava fire is PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (spawn_backup) Fire spread is UNRESTRICTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn_backup'
 [12:03:27] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.World$Environment.ordinal()" because the return value of "org.bukkit.WorldCreator.environment()" is null
 [12:03:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createWorld(CraftServer.java:1276)
 [12:03:27] [Server thread/WARN]:     at org.bukkit.Bukkit.createWorld(Bukkit.java:835)
 [12:03:27] [Server thread/WARN]:     at org.bukkit.WorldCreator.createWorld(WorldCreator.java:502)
 [12:03:27] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:486)
 [12:03:27] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:467)
 [12:03:27] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:442)
 [12:03:27] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.utils.WorldManager.loadWorlds(WorldManager.java:770)
 [12:03:27] [Server thread/WARN]:     at multiverse-core-4.3.12.jar//com.onarandombox.MultiverseCore.MultiverseCore.onEnable(MultiverseCore.java:313)
 [12:03:27] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
 [12:03:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
 [12:03:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
 [12:03:27] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
 [12:03:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
 [12:03:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
 [12:03:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671)
 [12:03:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431)
 [12:03:27] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:309)
 [12:03:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
 [12:03:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:03:27] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:03:27] [Server thread/ERROR]: [Multiverse-Core] The world 'spawnBackup' could NOT be loaded because it contains errors and is probably corrupt!
 [12:03:27] [Server thread/ERROR]: [Multiverse-Core] Try using Minecraft Region Fixer to repair your world! 'spawnBackup'
 [12:03:27] [Server thread/ERROR]: [Multiverse-Core] https://github.com/Fenixin/Minecraft-Region-Fixer
 [12:03:27] [Server thread/INFO]: Preparing start region for dimension minecraft:world_backup
 [12:03:27] [Server thread/INFO]: Time elapsed: 20 ms
 [12:03:27] [Server thread/INFO]: [WorldGuard] (world_backup) TNT ignition is PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (world_backup) Lighters are PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (world_backup) Lava fire is PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (world_backup) Fire spread is UNRESTRICTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_backup'
 [12:03:27] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp
 [12:03:27] [Server thread/INFO]: Time elapsed: 47 ms
 [12:03:27] [Server thread/INFO]: [WorldGuard] (pvp) TNT ignition is PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (pvp) Lighters are PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (pvp) Lava fire is PERMITTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] (pvp) Fire spread is UNRESTRICTED.
 [12:03:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvp'
 [12:03:27] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
 [12:03:27] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
 [12:03:27] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
 [12:03:27] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3385)
 [12:03:27] [Server thread/INFO]: [Citizens] Loading external libraries
 [12:03:28] [Server thread/INFO]: [Citizens] Loaded 0 templates.
 [12:03:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
 [12:03:28] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
 [12:03:28] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+107-7b02d22
 [12:03:28] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
 [12:03:28] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.5.1
 [12:03:34] [Server thread/INFO]: Server version: v1_20_R3 - 1.20.4 - paper  git-Paper-497 (MC: 1.20.4)
 [12:03:35] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
 [12:03:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.5.1]
 [12:03:35] [Server thread/INFO]: PlaceholderAPI hooked.
 [12:03:35] [Server thread/INFO]: Updated (EN) language file. Took 55ms
 [12:03:35] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.2
 [12:03:35] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
 [12:03:35] [Server thread/INFO]: [GriefPrevention] 0 total claims loaded.
 [12:03:35] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
 [12:03:35] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
 [12:03:35] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
 [12:03:36] [Server thread/INFO]: [GriefPrevention] Boot finished.
 [12:03:36] [Server thread/INFO]: [MortisCore] Enabling MortisCore v1.0
 [12:03:36] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.9
 [12:03:36] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.3
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
 [12:03:36] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
 [12:03:36] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
 [12:03:36] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
 [12:03:36] [Server thread/INFO]: [DeluxeMenus] 4 GUI menus loaded!
 [12:03:36] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
 [12:03:36] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
 [12:03:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
 [12:03:36] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.56
 [12:03:36] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
 [12:03:36] [Server thread/INFO]: [GrimAC] Registering packets...
 [12:03:36] [Server thread/INFO]: [GrimAC] Registering an outgoing plugin channel...
 [12:03:36] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
 [12:03:36] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
 [12:03:37] [Server thread/INFO]: [Images] Enabling Images v2.5.0
 [12:03:37] [Server thread/INFO]: [ServersNPC] Enabling ServersNPC v4.7
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v1.3.0-b10
 [12:03:37] [Server thread/INFO]: [AuctionHouse] ========== Akarian Auction House ==========
 [12:03:37] [Server thread/INFO]: [AuctionHouse]  
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Loading Akarian Auction House v1.3.0-b10...
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Setting up Economy...
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Successfully hooked into EssentialsX Economy.
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Loading database...
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Successfully connected to FILE database.
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Loading listings...
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Listings loaded successfully.
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Loading users...
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Users loaded successfully.
 [12:03:37] [Server thread/INFO]: [AuctionHouse] Loading layouts...
 [12:03:37] [Server thread/INFO]: [AuctionHouse] =================================================
 [12:03:37] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2024.07
 [12:03:37] [Server thread/INFO]: [UltimateAutoRestart] 2024.07, a free resource by Norska - Thanks for downloading!
 [12:03:37] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
 [12:03:37] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
 [12:03:38] [Server thread/INFO]: [SimpleRename] Enabling SimpleRename v13.9
 [12:03:38] [Server thread/INFO]: SimpleRename enabled!
 [12:03:38] [Server thread/INFO]: [Vehicles] Enabling Vehicles v14.8.1
 [12:03:40] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> lang.yml loaded.
 [12:03:40] [Server thread/WARN]: Nag author(s): '[Pollitoyeye]' of 'Vehicles v14.8.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.7.9
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 shop configs from /shops/
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 14 shop sections.
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.20.4...
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
 [12:03:40] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
 [12:03:41] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 571ms to complete
 [12:03:41] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
 [12:03:41] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
 [12:03:41] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
 [12:03:41] [Server thread/INFO]: --------------------
 [12:03:41] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
 [12:03:41] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
 [12:03:41] [Server thread/INFO]: --------------------
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Enabling MortisItemsPlus v1.1
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Saturation Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Strength Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Absorption Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Speed Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Regeneration Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Fast Digging Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Lightning Bow
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Teleportation Wand
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Knocking Fish
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded set: Shadow Fighter
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded Item set: SteelBorn
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded set: Ancient Gold
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Saturation Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Strength Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Absorption Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Speed Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Regeneration Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded talisman: Fast Digging Talisman
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Lightning Bow
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Teleportation Wand
 [12:03:41] [Server thread/INFO]: [MortisItemsPlus] Loaded item: Knocking Fish
 [12:03:41] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+107-7b02d22
 [12:03:41] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
 [12:03:41] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.2.3
 [12:03:41] [Server thread/INFO]: ------------- Jobs -------------
 [12:03:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.2.3]
 [12:03:41] [Server thread/INFO]: PlaceholderAPI hooked.
 [12:03:41] [Server thread/INFO]: Connected to database (SqLite)
 [12:03:41] [Server thread/INFO]: Loaded 8 titles
 [12:03:41] [Server thread/INFO]: Loaded 69 protected blocks timers
 [12:03:41] [Server thread/INFO]: Loaded 1403 custom item names
 [12:03:41] [Server thread/INFO]: Loaded 81 custom entity names
 [12:03:41] [Server thread/INFO]: Loaded 2 custom MythicMobs names
 [12:03:41] [Server thread/INFO]: Loaded 38 custom enchant names
 [12:03:41] [Server thread/INFO]: Loaded 43 custom enchant names
 [12:03:41] [Server thread/INFO]: Loaded 16 custom color names
 [12:03:41] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
 [12:03:41] [Server thread/INFO]: Loaded 4 shop items
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Miner
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Brewer
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Enchanter
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Digger
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Explorer
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Farmer
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Crafter
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Fisherman
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Woodcutter
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Builder
 [12:03:42] [Server thread/INFO]: Loaded 1 quests for Hunter
 [12:03:42] [Server thread/INFO]: Loaded 12 jobs
 [12:03:42] [Server thread/INFO]: Loaded 0 boosted items
 [12:03:42] [Server thread/INFO]: Loaded 5 furnace for reassigning.
 [12:03:42] [Server thread/INFO]: Loaded 1 brewing for reassigning.
 [12:03:42] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
 [12:03:42] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
 [12:03:42] [Server thread/INFO]: Preloaded 8 players data in 0.02
 [12:03:42] [Server thread/INFO]: WorldGuard detected.
 [12:03:42] [Server thread/INFO]: Plugin has been enabled successfully.
 [12:03:42] [Server thread/INFO]: ------------------------------------
 [12:03:42] [Server thread/INFO]: [MortisBountySystem] Enabling MortisBountySystem v1.1
 [12:03:42] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
 [12:03:42] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
 [12:03:43] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
 [12:03:43] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
 [12:03:43] [Server thread/INFO]: 
  
 []=====[Enabling AdvancedBan]=====[]
 | Information:
 |   Name: AdvancedBan
 |   Developer: Leoko
 |   Version: 2.3.0
 |   Storage: HSQLDB (local)
 | Support:
 |   Github: https://github.com/DevLeoko/AdvancedBan/issues
 |   Discord: https://discord.gg/ycDG6rS
 | Twitter: @LeokoGar
 | Update:
 |   You have the newest version
 []================================[]
  
 [12:03:43] [Server thread/INFO]: [Skript] Enabling Skript v2.8.7
 [12:03:44] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.9.1 (you're currently running 2.8.7)
 [12:03:44] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.9.1/Skript-2.9.1.jar>https://github.com/SkriptLang/Skript/releases/download/2.9.1/Skript-2.9.1.jar
 [12:03:57] [Server thread/INFO]: [Skript] Loaded 233032 aliases in 14182ms
 [12:03:58] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
 [12:03:58] [Server thread/INFO]: [MortisBank] Enabling MortisBank v4.0
 [12:03:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mortisbank [3.0]
 [12:03:58] [Server thread/INFO]: [MyPortalsCommands] Enabling MyPortalsCommands v2.3.1
 [12:03:58] [Server thread/WARN]: [MyPortalsCommands] Could not save messages.yml to plugins/MyPortalsCommands/messages.yml because messages.yml already exists.
 [12:03:58] [Server thread/INFO]: [CommandNPC] Enabling CommandNPC v1.9.1*
 [12:03:58] [Server thread/INFO]: [CommandNPC] Vault compatible economy found! Economy support for CommandNPC has been enabled.
 [12:03:58] [Server thread/INFO]: [CommandNPC] Initiating Database
 [12:03:58] [Server thread/INFO]: [CommandNPC] Injecting command info into Citizens.
 [12:03:58] [Thread-22/INFO]: [CommandNPC] Loading commands complete!
 [12:03:58] [Server thread/INFO]: [CommandNPC] CommandNPC successfully loaded!
 [12:03:58] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.1
 [12:03:59] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
 [12:04:00] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
 [12:04:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.1]
 [12:04:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.1]
 [12:04:00] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
 [12:04:00] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
 [12:04:00] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
 [12:04:00] [Server thread/INFO]: [AuraSkills] Loaded 148 config options in 56 ms
 [12:04:00] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_20_R3! Trying to find NMS support
 [12:04:00] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
 [12:04:00] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
 [12:04:00] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
 [12:04:00] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
 [12:04:00] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.0.0
 [12:04:00] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
 [12:04:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.0.0]
 [12:04:01] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
 [12:04:01] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@306809c0
 [12:04:01] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
 [12:04:01] [Server thread/WARN]: [ExcellentCrates] No hologram handler is available. Do your server met all the requirements?
 [12:04:01] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
 [12:04:01] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
 [12:04:01] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
 [12:04:01] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
 [12:04:01] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
 [12:04:01] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'emerald' in 'default' menu!
 [12:04:01] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'golden' in 'default' menu!
 [12:04:01] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'virtual' in 'default' menu!
 [12:04:01] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
 [12:04:01] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 547 ms!
 [12:04:01] [Server thread/INFO]: [TAB] Enabling TAB v4.1.6
 [12:04:01] [Server thread/INFO]: [TAB] Loaded NMS hook in 268ms
 [12:04:01] [Server thread/INFO]: [TAB] Enabled in 235ms
 [12:04:01] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
 [12:04:02] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
 [12:04:03] [Server thread/INFO]: [ajLeaderboards] Loaded 2 boards
 [12:04:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
 [12:04:03] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
 [12:04:03] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
 [12:04:03] [Server thread/INFO]: [GraveStonesPlus] Enabling GraveStonesPlus v1.6.3
 [12:04:03] [Server thread/INFO]: [GraveStonesPlus] Loaded LuckPerms hook!
 [12:04:03] [Server thread/INFO]: [MessageAnnouncer] Enabling MessageAnnouncer v1.12.3
 [12:04:03] [Server thread/INFO]: [MessageAnnouncer] PlaceholderAPI integration was successful!
 [12:04:03] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.12
 [12:04:03] [Server thread/INFO]: [BetterRTP] Cooldown = 150
 [12:04:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.12]
 [12:04:04] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
 [12:04:04] [Server thread/INFO]: Running delayed init tasks
 [12:04:04] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
 [12:04:04] [Craft Scheduler Thread - 5 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the bike shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the broom shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the car shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the helicopter shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
 [12:04:04] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Fetching version information...
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the parachute shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the plane shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the submarine shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the tank shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the train shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the hoverbike shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the sportbike shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the racingcar shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> An error ocurred while loading the mecha shop, disabling...
 [12:04:04] [Server thread/WARN]: java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
 [12:04:04] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.createInventory(CraftServer.java:2402)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createInventory(Bukkit.java:1895)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.manager.ShopManager.loadConfig(ShopManager.java:46)
 [12:04:04] [Server thread/WARN]:     at Vehicles(14.8.1).jar//es.pollitoyeye.vehicles.VehiclesMain$2.run(VehiclesMain.java:182)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
 [12:04:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1142)
 [12:04:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:04:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
 [12:04:04] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
 [12:04:04] [Craft Scheduler Thread - 5 - CMILib/INFO]: New version of CMILib was detected. Please update it
 [12:04:04] [Craft Scheduler Thread - 10 - DecentHolograms/INFO]: 
 A newer version of DecentHolograms is available. Download it from: 
 - https://www.spigotmc.org/resources/96927/
 - https://modrinth.com/plugin/decentholograms
 [12:04:04] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loaded 5 holograms!
 [12:04:04] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
 [12:04:04] [Craft Scheduler Thread - 13 - GraveStonesPlus/INFO]: [GraveStonesPlus] GraveStonesPlus has an update available! Your Version: 1.6.3 New Version: 1.7
 [12:04:04] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
 [12:04:04] [Craft Scheduler Thread - 4 - Vault/INFO]: [Vault] Checking for Updates ... 
 [12:04:04] [Craft Scheduler Thread - 4 - Vault/INFO]: [Vault] No new version available
 [12:04:04] [Server thread/INFO]: [Skript] Loading variables...
 [12:04:04] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
 [12:04:04] [Server thread/INFO]: [Skript] Line 7: (Discord.sk)
 [12:04:04] [Server thread/INFO]:     A command with the name /discord is already defined in Commandfixes.sk
 [12:04:04] [Server thread/INFO]:     Line: command /discord:
 [12:04:04] [Server thread/INFO]:  
 [12:04:04] [Server thread/INFO]: [Skript] Loaded 3 scripts with a total of 6 structures in 0.1 seconds
 [12:04:04] [Server thread/INFO]: [Skript] Finished loading.
 [12:04:05] [Server thread/INFO]: [AuraSkills] Loaded 15 skills with 312 total sources
 [12:04:05] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
 [12:04:05] [Server thread/INFO]: [AuraSkills] Loaded 30 pattern rewards and 0 level rewards
 [12:04:05] [Server thread/INFO]: [AuraSkills] Loaded 32 loot entries in 4 pools and 2 tables
 [12:04:05] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
 [12:04:05] [Server thread/INFO]: [Citizens] Loaded 8 NPCs.
 [12:04:05] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.6) is available at:
 [12:04:05] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
 [12:04:05] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.0.3, you're on: 4.9.2
 [12:04:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.2]
 [12:04:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
 [12:04:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
 [12:04:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
 [12:04:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: griefprevention [1.7.0]
 [12:04:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
 [12:04:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
 [12:04:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
 [12:04:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
 [12:04:06] [Server thread/INFO]: 9 placeholder hook(s) registered!
 [12:04:06] [Server thread/INFO]: Done (88.973s)! For help, type "help"
 [12:04:06] [Server thread/INFO]: Timings Reset
 [12:04:06] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2516ms or 50 ticks behind
 [12:04:08] [Craft Scheduler Thread - 8 - Images/INFO]: [Images] Loaded 1 images...
 [12:04:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2024.07]
 [12:04:09] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
 [12:04:09] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
 [12:04:11] [Server thread/INFO]: [GraveStonesPlus] Successfully hooked into vault economy!
 [12:04:11] [Server thread/INFO]: [GraveStonesPlus] Hooked into vault permissions
 [12:14:23] [Server thread/INFO]: Usage: /skript ...
 [12:14:23] [Server thread/INFO]:   reload - Reloads a specific script, all scripts, the config, or everything
 [12:14:23] [Server thread/INFO]:   enable - Enables all scripts or a specific one
 [12:14:23] [Server thread/INFO]:   disable - Disables all scripts or a specific one
 [12:14:23] [Server thread/INFO]:   update - Check for updates, read the changelog, or download the latest version of Skript
 [12:14:23] [Server thread/INFO]:   info - Prints a message with links to Skript's aliases and documentation
 [12:14:23] [Server thread/INFO]:   help - Prints this help message. Use '/skript reload/enable/disable/update' to get more info
 [12:14:25] [Server thread/INFO]: Usage: /skript reload ...
 [12:14:25] [Server thread/INFO]:   all - Reloads the config, all aliases configs and all scripts
 [12:14:25] [Server thread/INFO]:   config - Reloads the main config
 [12:14:25] [Server thread/INFO]:   aliases - Reloads the aliases configs (aliases-english.zip or plugin jar)
 [12:14:25] [Server thread/INFO]:   scripts - Reloads all scripts
 [12:14:25] [Server thread/INFO]:   <script> - Reloads a specific script or a folder of scripts
 [12:14:30] [Server thread/INFO]: [Skript] Reloading the config, aliases and all scripts...
 [12:14:40] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-497 (MC: 1.20.4) ---
 [12:14:40] [Paper Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
 [12:14:40] [Paper Watchdog Thread/ERROR]: ------------------------------
 [12:14:40] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
 [12:14:40] [Paper Watchdog Thread/ERROR]: ------------------------------
 [12:14:40] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
 [12:14:40] [Paper Watchdog Thread/ERROR]:     PID: 42 | Suspended: false | Native: false | State: RUNNABLE
 [12:14:40] [Paper Watchdog Thread/ERROR]:     Stack:
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.AbstractCollection.addAll(AbstractCollection.java:337)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.HashSet.<init>(HashSet.java:121)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         com.google.common.collect.Sets.newHashSet(Sets.java:225)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_20_R3.inventory.CraftMetaItem.clone(CraftMetaItem.java:1409)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_20_R3.inventory.CraftMetaArmor.clone(CraftMetaArmor.java:169)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_20_R3.inventory.CraftMetaArmor.clone(CraftMetaArmor.java:19)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.ItemData.compareItemMetas(ItemData.java:429)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.ItemData.matchAlias(ItemData.java:355)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.AliasesMap.exactMatch(AliasesMap.java:215)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.AliasesProvider.addAlias(AliasesProvider.java:322)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.AliasesParser.loadSingleAlias(AliasesParser.java:705)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.AliasesParser.loadAlias(AliasesParser.java:614)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.AliasesParser.load(AliasesParser.java:121)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.Aliases.load(Aliases.java:506)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.Aliases.load(Aliases.java:492)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.Aliases.lambda$loadDirectory$1(Aliases.java:475)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.Aliases$$Lambda/0x00007f4495d1bb98.accept(Unknown Source)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.stream.SortedOps$RefSortingSink$$Lambda/0x00007f44941fd610.accept(Unknown Source)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ArrayList.forEach(ArrayList.java:1596)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.stream.SortedOps$RefSortingSink.end(SortedOps.java:395)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:510)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.Aliases.loadDirectory(Aliases.java:468)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.Aliases.loadInternal(Aliases.java:433)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.aliases.Aliases.load(Aliases.java:389)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         Skript-2.8.7.jar//ch.njol.skript.SkriptCommand.onCommand(SkriptCommand.java:138)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_20_R3.CraftServer.dispatchCommand(CraftServer.java:999)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_20_R3.CraftServer.dispatchServerCommand(CraftServer.java:984)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.handleConsoleInputs(DedicatedServer.java:501)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:448)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1525)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1226)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f4494be7828.run(Unknown Source)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
 [12:14:40] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
 [12:14:40] [Paper Watchdog Thread/ERROR]: ------------------------------
 [12:14:40] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
 [12:14:40] [Paper Watchdog Thread/ERROR]: ------------------------------
 [12:14:43] [Server thread/INFO]: Loaded 232898 aliases in 13536ms
 [12:14:43] [Server thread/INFO]: [Skript] Successfully reloaded the config, aliases and all scripts. (13629ms)
 [12:14:43] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 13589ms or 271 ticks behind
 [18:04:20] [Craft Scheduler Thread - 187 - Vault/INFO]: [Vault] Checking for Updates ... 
 [18:04:20] [Craft Scheduler Thread - 187 - Vault/INFO]: [Vault] No new version available
 [18:16:17] [User Authenticator #0/INFO]: UUID of player techjunky is 0f51daea-3742-4bc6-859c-060c76345fa9
 [18:16:23] [Server thread/INFO]: techjunky joined the game
-[18:16:23] [Server thread/INFO]: techjunky[/86.88.31.56:60928] logged in with entity id 518 at ([spawn]0.2906397079369457, 110.63692307867456, -18.316614149314898)
+[18:16:23] [Server thread/INFO]: techjunky[/MYIP] logged in with entity id 518 at ([spawn]0.2906397079369457, 110.63692307867456, -18.316614149314898)
 [18:16:32] [Server thread/INFO]: techjunky issued server command: /citizens reload
 [18:16:36] [Server thread/INFO]: techjunky issued server command: /citizens reload
 [18:16:36] [Server thread/INFO]: [Citizens] Loaded 0 templates.
 [18:19:31] [Server thread/INFO]: techjunky issued server command: /plugman reload MessageAnnouncer
 [18:19:31] [Server thread/INFO]: [MessageAnnouncer] Disabling MessageAnnouncer v1.12.3
 [18:19:32] [Server thread/INFO]: [MessageAnnouncer] Loading server plugin MessageAnnouncer v1.12.3
 [18:19:32] [Server thread/INFO]: [MessageAnnouncer] Enabling MessageAnnouncer v1.12.3
 [18:19:32] [Server thread/INFO]: [MessageAnnouncer] PlaceholderAPI integration was successful!
 [18:19:35] [Server thread/INFO]: techjunky issued server command: /messageannouncer
 [18:19:36] [Server thread/INFO]: techjunky issued server command: /messageannouncer 231
 [18:19:41] [Server thread/INFO]: techjunky issued server command: /messageannouncer help
 [18:20:15] [Server thread/INFO]: techjunky issued server command: /msa announce secrets
 [18:20:33] [Server thread/INFO]: techjunky issued server command: /msa reload
 [18:20:35] [Server thread/INFO]: techjunky issued server command: /msa announce secrets
 [18:20:47] [Server thread/INFO]: techjunky issued server command: /msa reload
 [18:20:48] [Server thread/INFO]: techjunky issued server command: /msa announce secrets
 [18:21:44] [Server thread/INFO]: [GriefPrevention] techjunky placed a sign @ spawn: x55, z-30;s
 [18:21:56] [Server thread/INFO]: techjunky issued server command: /home sign1
 [18:21:57] [Server thread/INFO]: techjunky issued server command: /home sign2
 [18:21:57] [Server thread/WARN]: techjunky moved too quickly! -51.0,9.0,32.0
 [18:21:59] [Server thread/INFO]: techjunky issued server command: /home sign3
 [18:22:00] [Server thread/INFO]: techjunky issued server command: /home sign4
 [18:22:01] [Server thread/INFO]: techjunky issued server command: /home sign5
 [18:22:02] [Server thread/INFO]: techjunky issued server command: /home sign6
 [18:22:03] [Server thread/INFO]: techjunky issued server command: /home sign7
 [18:22:04] [Server thread/INFO]: techjunky issued server command: /home sign8
 [18:22:04] [Server thread/WARN]: techjunky moved too quickly! 5.0,0.0,-34.0
 [18:22:06] [Server thread/INFO]: techjunky issued server command: /home sign9
 [18:22:06] [Server thread/WARN]: techjunky moved too quickly! 70.0,18.0,14.0
 [18:22:07] [Server thread/INFO]: techjunky issued server command: /home sign10
 [18:22:07] [Server thread/WARN]: techjunky moved too quickly! -81.0,-17.0,74.0
 [18:22:20] [Server thread/INFO]: techjunky issued server command: /i barrier 1
 [18:22:28] [Server thread/INFO]: techjunky issued server command: //cut
 [18:22:42] [Server thread/INFO]: techjunky issued server command: //paste
 [18:22:55] [Server thread/INFO]: [GriefPrevention] techjunky placed a sign @ spawn: x-11, z-45;INFO HERE
 [18:23:16] [Server thread/INFO]: techjunky issued server command: /npc
 [18:23:28] [Server thread/INFO]: techjunky issued server command: /npc control
 [18:23:38] [Server thread/INFO]: techjunky issued server command: /npc copy
 [18:23:42] [Server thread/INFO]: techjunky issued server command: /npc sel
 [18:23:43] [Server thread/INFO]: techjunky issued server command: /npc copy
 [18:23:49] [Server thread/INFO]: techjunky issued server command: /npc sel
 [18:23:55] [Server thread/INFO]: techjunky issued server command: /npc bossbar
 [18:23:57] [Server thread/INFO]: techjunky issued server command: /npc bossbar
 [18:23:58] [Server thread/INFO]: techjunky issued server command: /npc bossbar
 [18:24:07] [Server thread/INFO]: techjunky issued server command: /npc bossbar --visible
 [18:24:08] [Server thread/INFO]: techjunky issued server command: /npc bossbar --visible no
 [18:24:19] [Server thread/INFO]: techjunky issued server command: /npc control
 [18:24:22] [Server thread/INFO]: techjunky issued server command: /rtp
 [18:24:22] [Server thread/INFO]: [BetterRTP] Teleporting... please wait while we find a safe location!
 [18:24:22] [Server thread/INFO]: [BetterRTP] techjunky has been tp'd to x=-441 y=69 z=470
 [18:24:25] [Server thread/INFO]: techjunky issued server command: /back
 [18:24:31] [Server thread/INFO]: techjunky issued server command: /npc control
 [18:24:47] [Server thread/INFO]: techjunky issued server command: /npc hidename
 [18:24:49] [Server thread/INFO]: techjunky issued server command: /npc hidename
 [18:24:50] [Server thread/INFO]: techjunky issued server command: /npc hidename
 [18:24:53] [Server thread/INFO]: techjunky issued server command: /npc hidename
 [18:24:55] [Server thread/INFO]: techjunky issued server command: /npc hidename
 [18:24:56] [Server thread/INFO]: techjunky issued server command: /npc hidename
 [18:25:31] [Server thread/INFO]: techjunky issued server command: /npc name -h
 [18:25:33] [Server thread/INFO]: techjunky issued server command: /npc name -h
 [18:25:35] [Server thread/INFO]: techjunky issued server command: /npc name
 [18:25:38] [Server thread/INFO]: techjunky issued server command: /npc name -h
 [18:25:46] [Server thread/INFO]: techjunky issued server command: /npc name false
 [18:25:49] [Server thread/INFO]: techjunky issued server command: /npc name
 [18:25:51] [Server thread/INFO]: techjunky issued server command: /npc name false
 [18:25:53] [Server thread/INFO]: techjunky issued server command: /npc name -h
 [18:25:56] [Server thread/INFO]: techjunky issued server command: /npc name
 [18:26:14] [Server thread/INFO]: techjunky issued server command: /npc glowing
 [18:26:19] [Server thread/INFO]: techjunky issued server command: /npc glowing --color AQUA
 [18:26:25] [Server thread/INFO]: techjunky issued server command: /npc sel
 [18:26:26] [Server thread/INFO]: techjunky issued server command: /npc glowing --color AQUA
 [18:26:35] [Server thread/INFO]: techjunky issued server command: /npc aggressive
 [18:26:37] [Server thread/INFO]: techjunky issued server command: /npc aggressive true
 [18:26:45] [Server thread/INFO]: techjunky issued server command: /npc aggressive false
 [18:26:48] [Server thread/INFO]: techjunky issued server command: /npc sel
 [18:26:52] [Server thread/INFO]: techjunky issued server command: /npc glowing
 [18:26:58] [Server thread/INFO]: techjunky issued server command: /npc text
 [18:27:03] [Server thread/INFO]: techjunky issued server command: /npc text remove 0
 [18:27:10] [Server thread/INFO]: techjunky issued server command: /npc ai
 [18:27:12] [Server thread/INFO]: techjunky issued server command: /npc ai
 [18:27:13] [Server thread/INFO]: techjunky issued server command: /npc ai
 [18:27:39] [Server thread/INFO]: techjunky issued server command: /npc hurt
 [18:27:41] [Server thread/INFO]: techjunky issued server command: /npc hurt 5
 [18:27:44] [Server thread/INFO]: techjunky issued server command: /npc vulnerable
 [18:27:44] [Server thread/INFO]: techjunky issued server command: /npc hurt 5
 [18:27:44] [Server thread/INFO]: [Essentials] Created a User for your journey! (cac303b8-5ddd-2f1d-b5c3-0998cdd4ec7e) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
 [18:27:52] [Server thread/INFO]: techjunky issued server command: /npc hurt 5
 [18:27:57] [Server thread/INFO]: techjunky issued server command: /npc vulnerable
 [18:28:00] [Server thread/INFO]: techjunky issued server command: /npc vulnerable
 [18:28:01] [Server thread/INFO]: techjunky issued server command: /npc vulnerable
 [18:28:09] [Server thread/INFO]: techjunky issued server command: /npc cmdinfo
 [18:28:12] [Server thread/INFO]: techjunky issued server command: /rtp
 [18:28:20] [Server thread/INFO]: techjunky issued server command: /npc cmdremove
 [18:28:21] [Server thread/INFO]: techjunky issued server command: /npc cmdremove 1
 [18:28:22] [Server thread/INFO]: techjunky issued server command: /npc cmdremove 0
 [18:29:05] [Server thread/INFO]: techjunky issued server command: /rtp
 [18:29:09] [Server thread/INFO]: techjunky issued server command: /npc configgui
 [18:29:27] [Server thread/INFO]: techjunky issued server command: /rtp
 [18:29:33] [Server thread/INFO]: techjunky issued server command: /npc text
 [18:29:35] [Server thread/INFO]: techjunky issued server command: /npc text
 [18:29:38] [Server thread/INFO]: techjunky issued server command: /npc text remove 0
 [18:29:42] [Server thread/INFO]: techjunky issued server command: /npc text
 [18:29:52] [Server thread/INFO]: techjunky issued server command: /npc type ALLAY
 [18:30:00] [Server thread/INFO]: techjunky issued server command: /npc wander
 [18:30:01] [Server thread/INFO]: techjunky issued server command: /npc wander
 [18:30:04] [Server thread/INFO]: techjunky issued server command: /npc wander
 [18:30:05] [Server thread/INFO]: techjunky issued server command: /npc wander
 [18:30:15] [Server thread/INFO]: techjunky issued server command: /npc type VILLAGER
 [18:30:19] [Server thread/INFO]: techjunky issued server command: /rtp
 [18:30:23] [Server thread/INFO]: techjunky issued server command: /npc text
 [18:30:25] [Server thread/INFO]: techjunky issued server command: /npc text remove 0
 [18:30:26] [Server thread/INFO]: techjunky issued server command: /npc text
 [18:30:27] [Server thread/INFO]: techjunky issued server command: /npc text
 [18:30:28] [Server thread/INFO]: techjunky issued server command: /npc text
 [18:30:29] [Server thread/INFO]: techjunky issued server command: /rtp
 [18:30:40] [Server thread/INFO]: techjunky issued server command: /npc sel
 [18:30:48] [Server thread/INFO]: techjunky issued server command: /npc type BAT
 [18:30:51] [Server thread/INFO]: techjunky issued server command: /npc type PLAYER
 [18:30:57] [Server thread/INFO]: techjunky issued server command: /npc type WITHER_SKULL
 [18:30:59] [Server thread/INFO]: techjunky issued server command: /npc type AREA_EFFECT_CLOUD
 [18:31:06] [Server thread/INFO]: techjunky issued server command: /npc type BLOCK_DISPLAY
 [18:31:17] [Server thread/INFO]: techjunky issued server command: /npc type ELDER_GUARDIAN
 [18:31:23] [Server thread/INFO]: techjunky issued server command: /npc type ENDER_SIGNAL
 [18:31:26] [Server thread/INFO]: techjunky issued server command: /npc type PLAYER
 [18:31:32] [Server thread/INFO]: techjunky issued server command: /npc info
 [18:31:34] [Server thread/INFO]: techjunky issued server command: /npc pose
 [18:31:40] [Server thread/INFO]: techjunky issued server command: /npc pose --pitch
 [18:31:49] [Server thread/INFO]: techjunky issued server command: /npc pose --assume
 [18:31:59] [Server thread/INFO]: techjunky issued server command: /npc pose -a a
 [18:32:02] [Server thread/INFO]: techjunky issued server command: /npc pose
 [18:32:13] [Server thread/INFO]: techjunky issued server command: /npc sel
 [18:32:17] [Server thread/INFO]: techjunky issued server command: /npc tphere
 [18:32:22] [Server thread/INFO]: techjunky issued server command: /commandnpc
 [18:32:25] [Server thread/INFO]: techjunky issued server command: /commandnpc help
 [18:32:28] [Server thread/INFO]: techjunky issued server command: /help commandnpc
 [18:32:40] [Server thread/INFO]: techjunky issued server command: /citizens:wp
 [18:32:44] [Server thread/INFO]: techjunky issued server command: /citizens:wp disableteleport
 [18:32:50] [Server thread/INFO]: techjunky issued server command: /citizens:wp disableteleport
 [18:32:55] [Server thread/INFO]: techjunky issued server command: /citizens:wp dt
 [18:32:56] [Server thread/INFO]: techjunky issued server command: /citizens:wp dt
 [18:33:03] [Server thread/INFO]: techjunky issued server command: /citizens help
 [18:33:11] [Server thread/INFO]: techjunky issued server command: /citizens save -a
 [18:33:14] [Server thread/INFO]: techjunky issued server command: /npc del
 [18:33:16] [Server thread/INFO]: techjunky issued server command: /npc rem
 [18:33:18] [Server thread/INFO]: techjunky issued server command: /citizens save -a