Paste #123458: DenizenMetaBot Auto-Repaste Of log From theshinylizard

Date: 2024/06/04 16:47:32 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[23:20:13] [ServerMain/INFO]: Building unoptimized datafixer
[23:20:14] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[23:20:15] [ServerMain/INFO]: Loaded 7 recipes
[23:20:16] [Server thread/INFO]: Starting minecraft server version 1.19.3
[23:20:16] [Server thread/INFO]: Loading properties
[23:20:16] [Server thread/INFO]: This server is running Paper version git-Paper-376 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 1719345)
[23:20:16] [Server thread/INFO]: Server Ping Player Sample Count: 12
[23:20:16] [Server thread/INFO]: Using 4 threads for Netty based IO
[23:20:16] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 6 worker threads, and gen parallelism of 6 threads
[23:20:16] [Server thread/INFO]: Default game type: SURVIVAL
[23:20:16] [Server thread/INFO]: Generating keypair
[23:20:16] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:2238
[23:20:16] [Server thread/INFO]: Using epoll channel type
[23:20:16] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[23:20:16] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[23:20:17] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[23:20:20] [Server thread/WARN]: Legacy plugin WDLCompanion v1.2.0 does not specify an api-version.
[23:20:20] [Server thread/WARN]: Legacy plugin PlayTime v2.2-1.13 does not specify an api-version.
[23:20:20] [Server thread/WARN]: Legacy plugin PetBlocks v8.33.0 does not specify an api-version.
[23:20:20] [Server thread/WARN]: Legacy plugin BroadcastXS v3.4.3 does not specify an api-version.
[23:20:20] [Server thread/WARN]: Legacy plugin ActionUtil v1.3 does not specify an api-version.
[23:20:20] [Server thread/WARN]: Legacy plugin NoCheatPlus v3.16.0-RC-sMD5NET-b1134 does not specify an api-version.
[23:20:20] [Server thread/WARN]: Legacy plugin AntiDisconnectSpam v1.0 does not specify an api-version.
[23:20:20] [Server thread/WARN]: Legacy plugin SuperbVote v0.5.2-1.12 does not specify an api-version.
[23:20:21] [Server thread/INFO]: [CrazyEnchantments] Loading 1 libraries... please wait
[23:20:21] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.6.21/kotlin-stdlib-1.6.21.jar
[23:20:21] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.6.21/kotlin-stdlib-common-1.6.21.jar
[23:20:21] [Server thread/INFO]: [CrazyEnchantments] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[23:20:21] [Server thread/WARN]: Legacy plugin Multiverse-Core v2.5-b719 does not specify an api-version.
[23:20:21] [Server thread/INFO]: [helper] Initialized helper v5.6.13
[23:20:21] [Server thread/WARN]: Legacy plugin PlayerSkillsReborn v1.7.12 does not specify an api-version.
[23:20:21] [Server thread/WARN]: Legacy plugin ServerTutorialPlus v1.23.3 does not specify an api-version.
[23:20:21] [Server thread/INFO]: [WDLCompanion] Loading WDLCompanion v1.2.0
[23:20:21] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.3-DEV-160
[23:20:21] [Server thread/INFO]: [UltimateAutoRestart] Loading UltimateAutoRestart vBuild 52c
[23:20:21] [Server thread/INFO]: [PlayTime] Loading PlayTime v2.2-1.13
[23:20:21] [Server thread/INFO]: [ChatReaction] Loading ChatReaction v1.8.0
[23:20:21] [Server thread/INFO]: [Shop] Loading Shop v1.5.3
[23:20:21] [Server thread/INFO]: [PetBlocks] Loading PetBlocks v8.33.0
[23:20:21] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.10.2
[23:20:21] [Server thread/INFO]: [ViaVersion] ViaVersion 4.10.2 is now loaded. Registering protocol transformers and injecting...
[23:20:21] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[23:20:21] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[23:20:21] [Server thread/INFO]: [ViaRewind] Registering protocols...
[23:20:21] [Server thread/ERROR]: [org.bukkit.craftbukkit.v1_19_R2.CraftServer] com.viaversion.viabackwards.api.data.BackwardsMappings: method 'void <init>(java.lang.String, java.lang.String)' not found initializing ViaVersion v4.10.2 (Is it up to date?)
java.lang.NoSuchMethodError: com.viaversion.viabackwards.api.data.BackwardsMappings: method 'void <init>(java.lang.String, java.lang.String)' not found
    at com.viaversion.viarewind.api.data.RewindMappings.<init>(RewindMappings.java:29) ~[ViaRewind-3.1.2 (1).jar:?]
    at com.viaversion.viarewind.protocol.protocol1_7_6_10to1_8.Protocol1_7_6_10To1_8.<clinit>(Protocol1_7_6_10To1_8.java:49) ~[ViaRewind-3.1.2 (1).jar:?]
    at com.viaversion.viarewind.api.ViaRewindPlatform.init(ViaRewindPlatform.java:55) ~[ViaRewind-3.1.2 (1).jar:?]
    at com.viaversion.viarewind.BukkitPlugin.lambda$new$0(BukkitPlugin.java:29) ~[ViaRewind-3.1.2 (1).jar:?]
    at com.viaversion.viaversion.ViaManagerImpl.init(ViaManagerImpl.java:114) ~[ViaVersion-4.10.2 (1).jar:?]
    at com.viaversion.viaversion.ViaVersionPlugin.onLoad(ViaVersionPlugin.java:85) ~[ViaVersion-4.10.2 (1).jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:442) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-376]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:20:21] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.5.2-SNAPSHOT
[23:20:21] [Server thread/ERROR]: [org.bukkit.craftbukkit.v1_19_R2.CraftServer] 'void com.viaversion.viaversion.util.Config.reloadConfig()' initializing ViaBackwards v4.5.2-SNAPSHOT (Is it up to date?)
java.lang.NoSuchMethodError: 'void com.viaversion.viaversion.util.Config.reloadConfig()'
    at com.viaversion.viabackwards.ViaBackwardsConfig.reloadConfig(ViaBackwardsConfig.java:46) ~[ViaBackwards-4.5.2-SNAPSHOT (1).jar:?]
    at com.viaversion.viabackwards.api.ViaBackwardsPlatform.init(ViaBackwardsPlatform.java:71) ~[ViaBackwards-4.5.2-SNAPSHOT (1).jar:?]
    at com.viaversion.viabackwards.BukkitPlugin.init(BukkitPlugin.java:48) ~[ViaBackwards-4.5.2-SNAPSHOT (1).jar:?]
    at com.viaversion.viabackwards.BukkitPlugin.onLoad(BukkitPlugin.java:36) ~[ViaBackwards-4.5.2-SNAPSHOT (1).jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:442) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-376]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:20:21] [Server thread/INFO]: [EZColors] Loading EZColors v2.2.1
[23:20:21] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.3.3
[23:20:21] [Server thread/INFO]: [BroadcastXS] Loading BroadcastXS v3.4.3
[23:20:21] [Server thread/INFO]: [AnimatedScoreboard] Loading AnimatedScoreboard v0.2.7
[23:20:21] [Server thread/INFO]: [ActionUtil] Loading ActionUtil v1.3
[23:20:21] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[23:20:21] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0
[23:20:22] [Server thread/INFO]: [NoCheatPlus] Loading NoCheatPlus v3.16.0-RC-sMD5NET-b1134
[23:20:22] [Server thread/INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[23:20:22] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[23:20:22] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.19.3
[23:20:22] [Server thread/INFO]: [InteractiveBooks] Loading InteractiveBooks v1.6.3
[23:20:22] [Server thread/INFO]: [InfiniteVouchers] Loading InfiniteVouchers v2.4.1
[23:20:22] [Server thread/INFO]: [AntiDisconnectSpam] Loading AntiDisconnectSpam v1.0
[23:20:22] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[23:20:22] [Server thread/INFO]: [ViaRewind] Loading ViaRewind v3.1.2
[23:20:22] [Server thread/INFO]: [RankGrant+] Loading RankGrantPlus v3.6.2
[23:20:22] [Server thread/INFO]: [LPC] Loading LPC v3.3.0
[23:20:22] [Server thread/INFO]: [PlayerKits] Loading PlayerKits v2.25.1
[23:20:22] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.9
[23:20:22] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.0-dev+38-b323860
[23:20:22] [Server thread/INFO]: [AdvancedBan] Loading AdvancedBan v2.3.0
[23:20:22] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.5.1-SNAPSHOT-339;bb0e201
[23:20:23] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2fc18a4]
[23:20:23] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.6-DEV-134
[23:20:23] [Server thread/INFO]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[23:20:23] [Server thread/INFO]: [SuperbVote] Loading SuperbVote v0.5.2-1.12
[23:20:23] [Server thread/INFO]: [TAB] Loading TAB v4.0.1
[23:20:23] [Server thread/INFO]: [ServerListPlus] Loading ServerListPlus v3.5.0-SNAPSHOT
[23:20:23] [Server thread/INFO]: [CrazyCrates] Loading CrazyCrates v1.11.13
[23:20:23] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v7.3.1-Premium
[23:20:23] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[23:20:23] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.0-dev+38-b323860
[23:20:23] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.3
[23:20:23] [Server thread/INFO]: [CrazyEnchantments] Loading CrazyEnchantments v1.9.2-SNAPSHOT
[23:20:23] [Server thread/INFO]: [TempFly] Loading TempFly v3.1.7
[23:20:23] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v2.5-b719
[23:20:23] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2794)
[23:20:23] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.5.3
[23:20:23] [Server thread/INFO]: [ItemJoin] Loading ItemJoin v5.2.5-SNAPSHOT-b842
[23:20:23] [Server thread/INFO]: [MineResetLite] Loading MineResetLite v4.21.2
[23:20:23] [Server thread/INFO]: [BlockParticles] Loading BlockParticles v1.11.1-RELEASE
[23:20:23] [Server thread/INFO]: [AdvancedRegionMarket] Loading AdvancedRegionMarket v3.3.4
[23:20:23] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v4.4.4
[23:20:23] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[23:20:23] [Server thread/INFO]: [CrazyEnvoy] Loading CrazyEnvoy v1.3.10-RELEASE
[23:20:23] [Server thread/INFO]: [BlockRegen] Loading BlockRegen v3.10.4
[23:20:23] [Server thread/INFO]: [helper] Loading helper v5.6.13
[23:20:23] [Server thread/INFO]: [helper] helper (me.lucko.helper) bound to plugin helper - me.lucko.helper.internal.StandalonePlugin
[23:20:23] [Server thread/INFO]: [X-Prison] Loading X-Prison v1.12.9
[23:20:23] [Server thread/INFO]: [CitizensCMD] Loading CitizensCMD v2.7.1
[23:20:23] [Server thread/INFO]: [AuctionMaster] Loading AuctionMaster v2.5
[23:20:23] [Server thread/INFO]: [PlayerSkillsReborn] Loading PlayerSkillsReborn v1.7.12
[23:20:23] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.2.1-fd1d0777
[23:20:23] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[23:20:23] [Server thread/INFO]: [Quests] Loading Quests v4.6.1-b373
[23:20:23] [Server thread/INFO]: [Server Tutorial Plus] Loading ServerTutorialPlus v1.23.3
[23:20:23] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[23:20:23] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.3.3
[23:20:24] [Server thread/INFO]:         __    
[23:20:24] [Server thread/INFO]:   |    |__)   LuckPerms v5.3.3
[23:20:24] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[23:20:24] [Server thread/INFO]: 
[23:20:24] [Server thread/INFO]: [LuckPerms] Loading configuration...
[23:20:24] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[23:20:24] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[23:20:25] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[23:20:25] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1601ms)
[23:20:25] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0
[23:20:25] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[23:20:25] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.20.0-dev+38-b323860 which is not a depend or softdepend of this plugin.
[23:20:25] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[23:20:25] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[23:20:25] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[23:20:25] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[23:20:25] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v3.1.2
[23:20:25] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.5.1-SNAPSHOT-339;bb0e201
[23:20:25] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[23:20:25] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[23:20:25] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[23:20:25] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[23:20:25] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightFaweAdapter as the Bukkit adapter
[23:20:26] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 451 build(s) out of date.
You are running build 339, the latest version is build 790.
Update at https://www.spigotmc.org/resources/13932/
[23:20:26] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.3.1-Premium
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: en
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[23:20:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[23:20:26] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.plotsquared.core.queue.QueueCoordinator from PlotSquared v7.3.1-Premium which is not a depend or softdepend of this plugin.
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 431783
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: -505589255
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[23:20:27] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using EssentialsX as a complementary UUID service
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using Paper as a complementary UUID service
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 8 UUIDs will be cached
[23:20:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plotsquared [3]
[23:20:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[23:20:27] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v5.2.5-SNAPSHOT-b842
[23:20:27] [Server thread/INFO]: [helper] Enabling helper v5.6.13
[23:20:27] [Server thread/INFO]: Preparing level "world"
[23:20:27] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[23:20:27] [Server thread/INFO]: Time elapsed: 81 ms
[23:20:27] [Server thread/INFO]: [WDLCompanion] Enabling WDLCompanion v1.2.0*
[23:20:27] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3-DEV-160
[23:20:28] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[23:20:28] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 52c
[23:20:28] [Server thread/INFO]: [UltimateAutoRestart] Build 52c, a free resource by Norska - Thanks for downloading!
[23:20:28] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[23:20:28] [Server thread/INFO]: [PlayTime] Enabling PlayTime v2.2-1.13*
[23:20:28] [Server thread/INFO]: [ChatReaction] Enabling ChatReaction v1.8.0
[23:20:28] [Server thread/INFO]: [ChatReaction] You are using Spigot! Tooltips in reaction start messages are enabled!
[23:20:28] [Server thread/INFO]: [ChatReaction] 0 words loaded!
[23:20:28] [Server thread/INFO]: [ChatReaction] Reaction stats are disabled!!
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[23:20:28] [Server thread/WARN]: Nag author(s): '[extended_clip]' of 'ChatReaction' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT] Could not connect to spigotmc.org
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT] to check for updates! 
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT] You are running 1.8.0
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT] The latest version
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT] of ChatReaction!
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[23:20:28] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[23:20:28] [Server thread/WARN]: [ChatReaction] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[23:20:28] [Server thread/INFO]: [Shop] Enabling Shop v1.5.3
[23:20:28] [Server thread/INFO]: [Shop] Registered amount pattern: 1-64
[23:20:28] [Server thread/INFO]: [Shop] Registered shop: farming
[23:20:28] [Server thread/INFO]: [Shop] Registered shop: wood
[23:20:28] [Server thread/INFO]: [Shop] Registered shop: weapons
[23:20:28] [Server thread/INFO]: [Shop] Registered shop: MISCELLANEOUS
[23:20:29] [Server thread/INFO]: [Shop] Registered shop: blocks
[23:20:29] [Server thread/INFO]: [Shop] Registered shop: food
[23:20:29] [Server thread/WARN]: [Shop] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[23:20:29] [Server thread/INFO]: [PetBlocks] Enabling PetBlocks v8.33.0*
[23:20:29] [Server thread/INFO]: [PetBlocks] Loading PetBlocks ...
[23:20:29] [Server thread/INFO]: [com.github.shynixn.petblocks.lib.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:20:29] [Server thread/INFO]: [com.github.shynixn.petblocks.lib.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:20:29] [Server thread/INFO]: [PetBlocks] Connected to jdbc:sqlite:/home/container/plugins/PetBlocks/PetBlocks.db
[23:20:29] [Server thread/INFO]: [PetBlocks] found dependency [PlaceholderAPI].
[23:20:29] [Server thread/INFO]: [PetBlocks] successfully loaded dependency [PlaceholderAPI] 2.11.3-DEV-160.
[23:20:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: petblocks [8.33.0]
[23:20:29] [Server thread/INFO]: [PetBlocks] Using NMS Connector v1_19_R2.
[23:20:29] [Server thread/INFO]: [PetBlocks] Enabled PetBlocks 8.33.0 by Shynixn
[23:20:29] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.10.2
[23:20:29] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[23:20:29] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.5.2-SNAPSHOT
[23:20:29] [Server thread/INFO]: [EZColors] Enabling EZColors v2.2.1
[23:20:30] [Server thread/INFO]: EZColors »  Successfully downloaded 12 languages from the cloud!
[23:20:30] [Server thread/INFO]: EZColors »  Loading EZColors v2.2.1!
[23:20:30] [Server thread/INFO]: EZColors »  Found a compatible version. Hooking into V1_19_R2!
[23:20:30] [Server thread/INFO]: EZColors »  Using HIGHEST as the Chat Listener.
[23:20:30] [Server thread/INFO]: EZColors »  Found PlaceholderAPI. Loading hook!
[23:20:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ezcolors [1.0.0]
[23:20:30] [Server thread/INFO]: EZColors »  Successfully Loaded EZColors v2.2.1 in 947ms!
[23:20:30] [Server thread/INFO]: [BroadcastXS] Enabling BroadcastXS v3.4.3*
[23:20:30] [Server thread/INFO]: [BroadcastXS] [##########[BroadcastXS]##########]
[23:20:30] [Server thread/INFO]: [BroadcastXS] Internals: [v1_19_R2]
[23:20:30] [Server thread/INFO]: [BroadcastXS] Paper API: [true]
[23:20:30] [Server thread/INFO]: [BroadcastXS] Economy: [false]
[23:20:30] [Server thread/INFO]: [BroadcastXS] Permissions: [false]
[23:20:30] [Server thread/INFO]: [BroadcastXS] Metrics: [https://bstats.org/plugin/bukkit/BroadcastXS]
[23:20:30] [Server thread/INFO]: [BroadcastXS] SpigotMC ID: [19765]
[23:20:30] [Server thread/INFO]: [BroadcastXS] [###############################]
[23:20:30] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.2.7
[23:20:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: animatedscoreboard [0.0.1]
[23:20:30] [Server thread/INFO]: [ActionUtil] Enabling ActionUtil v1.3*
[23:20:30] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[23:20:30] [Server thread/INFO]: [Votifier] Loaded token for website: default
[23:20:30] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[23:20:31] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.16.0-RC-sMD5NET-b1134*
[23:20:31] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8192.
[23:20:31] [Server thread/WARN]: [NoCheatPlus] Running in Bukkit-API-only mode (git-Paper-376 (MC: 1.19.3)). If this is not intended, please check for updates and consider to request support.
[23:20:31] [Server thread/WARN]: [NoCheatPlus]  Check for updates and support at BukkitDev: https://dev.bukkit.org/server-mods/nocheatplus/
[23:20:31] [Server thread/WARN]: [NoCheatPlus]  Development builds (unsupported by the Bukkit Staff, use at your own risk): https://ci.md-5.net/job/NoCheatPlus/changes
[23:20:31] [Server thread/WARN]: [NoCheatPlus] Bukkit-API-only mode: Some features will likely not function properly, performance might suffer.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.4.6-1.11.2|? / Bukkit-API
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.6.1 blocks.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.7.2 blocks.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.8 blocks.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.9 blocks.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.10 blocks.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.11 blocks.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.12 blocks.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Update block-info: WATER_LILY block shape patch for multi client protocol support around 1.7.x - 1.11.x.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[23:20:31] [Server thread/WARN]: [NoCheatPlus] Packet level access via ProtocolLib not available, supported configurations:  | ProtocolLib 4.3.0 or later for Minecraft 1.12.x | ProtocolLib 4.2.0 or later for Minecraft 1.11.x | ProtocolLib 4.1 or later for Minecraft 1.8.x to 1.10.x | ProtocolLib 3.7.0 for Minecraft 1.7.x and earlier | ProtocolLib 3.6.6 for PaperSpigot 1.8.x
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Force disable FastHeal on Minecraft 1.9 and later.
[23:20:31] [Server thread/INFO]: [NoCheatPlus] Version 3.16.0-RC-sMD5NET-b1134 is enabled.
[23:20:31] [Server thread/INFO]: [InteractiveBooks] Enabling InteractiveBooks v1.6.3
[23:20:31] [Server thread/INFO]: [InteractiveBooks] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[23:20:31] [Server thread/WARN]: [InteractiveBooks] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0-SNAPSHOT) located at net.leonardo_dgs.interactivebooks.lib.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[23:20:31] [Server thread/INFO]: [InteractiveBooks] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:20:31] [Server thread/INFO]: [InteractiveBooks] [ACF] Enabled Asynchronous Tab Completion Support!
[23:20:31] [Server thread/INFO]: [InfiniteVouchers] Enabling InfiniteVouchers v2.4.1
[23:20:31] [Server thread/INFO]:  
[23:20:31] [Server thread/INFO]: ====================================
[23:20:31] [Server thread/INFO]: Plugin name: InfiniteVouchers
[23:20:31] [Server thread/INFO]: Version: 2.4.1
[23:20:31] [Server thread/INFO]: Core version: 0.7.25
[23:20:31] [Server thread/INFO]: ====================================
[23:20:31] [Server thread/INFO]:  
[23:20:31] [Server thread/INFO]: [InfiniteVouchers] Loaded locale "en_US"
[23:20:31] [Server thread/INFO]: [AntiDisconnectSpam] Enabling AntiDisconnectSpam v1.0*
[23:20:31] [Server thread/INFO]: [AntiDisconnectSpam] [STDOUT] [AntiDisconnectSpam] Starting...
[23:20:31] [Server thread/WARN]: Nag author(s): '[BlueFireOLY]' of 'AntiDisconnectSpam' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[23:20:31] [Server thread/INFO]: [AntiDisconnectSpam] [STDOUT] [AntiDisconnectSpam] Started!
[23:20:31] [Server thread/INFO]: [RankGrant+] Enabling RankGrantPlus v3.6.2
[23:20:31] [Server thread/INFO]: [RankGrant+] Beginning to enable RankGrant+...

__________                __     ________                     __               
\______   \_____    ____ |  | __/  _____/___________    _____/  |_     .__     
 |       _/\__  \  /    \|  |/ /   \  __\_  __ \__  \  /    \   __\  __|  |___ 
 |    |   \ / __ \|   |  \    <\    \_\  \  | \// __ \|   |  \  |   /__    __/ 
 |____|_  /(____  /___|  /__|_ \\______  /__|  (____  /___|  /__|      |__|    
        \/      \/     \/     \/       \/           \/     \/                  


[23:20:31] [Server thread/INFO]: [RankGrant+] Loading files...
[23:20:31] [Server thread/INFO]: [RankGrant+] Registering commands...
[23:20:31] [Server thread/INFO]: [RankGrant+] Registering listeners...
[23:20:31] [Server thread/INFO]: [RankGrant+] Hooking into Vault...
[23:20:31] [Server thread/INFO]: [RankGrant+] Starting tasks...
[23:20:31] [Server thread/INFO]: [RankGrant+] Loading metrics...
[23:20:31] [Server thread/INFO]: [RankGrant+] Checking for updates...
[23:20:31] [Server thread/INFO]: [RankGrant+] !-----------------------------------------------------!
[23:20:31] [Server thread/INFO]: [RankGrant+] A newer version of RankGrantPlus is available!
[23:20:31] [Server thread/INFO]: [RankGrant+] Current version: 3.6.2
[23:20:31] [Server thread/INFO]: [RankGrant+] Latest version: 4.1.7
[23:20:31] [Server thread/INFO]: [RankGrant+] Get the update: https://spigotmc.org/resources/63403
[23:20:31] [Server thread/INFO]: [RankGrant+] !-----------------------------------------------------!
[23:20:31] [Server thread/INFO]: [RankGrant+] RankGrant+ v3.6.2 by Demeng7215 has been successfully enabled in 71ms.
[23:20:31] [Server thread/INFO]: [LPC] Enabling LPC v3.3.0
[23:20:31] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.25.1
[23:20:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.25.1]
[23:20:31] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.25.1
[23:20:31] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[23:20:31] [Server thread/INFO]: There is a new version available. (2.27.1)
[23:20:31] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/75185/
[23:20:31] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.9
[23:20:31] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[23:20:31] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+38-b323860
[23:20:31] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[23:20:31] [Server thread/INFO]: [Essentials] No kits found to migrate.
[23:20:32] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[23:20:32] [Server thread/INFO]: [Essentials] Using locale en_US
[23:20:32] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[23:20:32] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[23:20:32] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[23:20:32] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[23:20:32] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[23:20:32] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:20:32] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[23:20:32] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:20:32] [Server thread/INFO]: 
 
[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]
 
[23:20:32] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-DEV-134
[23:20:32] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[23:20:32] [Server thread/WARN]: [DeluxeMenus] javascript requirement at path: open_requirement.requirements.aaddad does not contain an expression: entry
[23:20:32] [Server thread/INFO]: [DeluxeMenus] 31 GUI menus loaded!
[23:20:32] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[23:20:32] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[23:20:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.6-DEV-134]
[23:20:32] [Server thread/INFO]: [SuperbVote] Enabling SuperbVote v0.5.2-1.12*
[23:20:32] [Server thread/INFO]: [SuperbVote] Using clip's PlaceholderAPI to provide extra placeholders.
[23:20:32] [Server thread/INFO]: [TAB] Enabling TAB v4.0.1
[23:20:32] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[23:20:32] [Server thread/INFO]: [TAB] Loaded NMS hook in 23ms
[23:20:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [4.0.1]
[23:20:32] [Server thread/INFO]: [TAB] Enabled in 83ms
[23:20:32] [Server thread/INFO]: [ServerListPlus] Enabling ServerListPlus v3.5.0-SNAPSHOT
[23:20:32] [Server thread/INFO]: [ServerListPlus] [Core] Reloading configuration...
[23:20:32] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: PluginConf
[23:20:32] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: ServerStatusConf
[23:20:32] [Server thread/WARN]: [ServerListPlus] [Core] Could not load all configurations from the configuration file. Please make sure the syntax is correct. Type '/slp save' if you want to add the missing parts.
[23:20:32] [Server thread/INFO]: [ServerListPlus] ProtocolLib is no longer required (and used) by default when using Paper. If this causes compatibility issues with other plugins, try setting ProtocolLib: ENABLE
[23:20:32] [Server thread/INFO]: [ServerListPlus] [Core] Reloading saved player identities...
[23:20:32] [Server thread/INFO]: [ServerListPlus] Successfully loaded!
[23:20:32] [Server thread/INFO]: [ServerListPlus] ServerListPlus v3.5.0-SNAPSHOT enabled.
[23:20:32] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.11.13
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[23:20:32] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loading the events.log
[23:20:32] [Server thread/INFO]: [CrazyCrates] Successfully loaded events.log
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loading the messages.yml
[23:20:32] [Server thread/INFO]: [CrazyCrates] Successfully loaded messages.yml
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loading the locations.yml
[23:20:32] [Server thread/INFO]: [CrazyCrates] Successfully loaded locations.yml
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[23:20:32] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Necromencer.yml.
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Common.yml.
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Kings.yml.
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/OverLord.yml.
[23:20:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Mythic.yml.
[23:20:32] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[23:20:33] [Server thread/INFO]: [CrazyCrates] DecentHolograms support has been enabled.
[23:20:33] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[23:20:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[23:20:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[23:20:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:20:33] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[23:20:33] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[23:20:33] [Server thread/INFO]: [CrazyCrates] All physical crate locations have been loaded.
[23:20:33] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[23:20:33] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[23:20:33] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[23:20:33] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[23:20:33] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[23:20:33] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[23:20:33] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[23:20:33] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[23:20:33] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[23:20:33] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[23:20:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazycrates [1.11.13]
[23:20:33] [Thread-16/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.badbones69.crazycrates.plugin.lib.de.tr7zw.changeme.nbtapi' seems to be outdated!
[23:20:33] [Thread-16/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.12.4'
[23:20:33] [Thread-16/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[23:20:33] [Server thread/INFO]: [CrazyCrates] HOLOGRAPHIC_DISPLAYS NOT FOUND
[23:20:33] [Server thread/INFO]: [CrazyCrates] DECENT_HOLOGRAMS FOUND
[23:20:33] [Server thread/INFO]: [CrazyCrates] CMI NOT FOUND
[23:20:33] [Server thread/INFO]: [CrazyCrates] PLACEHOLDERAPI FOUND
[23:20:33] [Server thread/INFO]: [CrazyCrates] ITEMS_ADDER NOT FOUND
[23:20:33] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[23:20:33] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[23:20:33] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[23:20:33] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[23:20:33] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[23:20:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[23:20:33] [Server thread/INFO]: [WorldGuard] Loading region data...
[23:20:33] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+38-b323860
[23:20:33] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[23:20:33] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.3
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[23:20:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Enabling CrazyEnchantments v1.9.2-SNAPSHOT
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Loading the config.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded config.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Loading the BlockList.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded BlockList.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Data.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Data.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantments.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantments.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Loading the GKitz.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded GKitz.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Messages.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Messages.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantment-Types.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantment-Types.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Signs.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Signs.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Tinker.yml
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Tinker.yml
[23:20:33] [Server thread/INFO]: The sound ANVIL_USE is not a sound found in this minecraft version.
[23:20:33] [Server thread/INFO]: The sound ANVIL_USE is not a sound found in this minecraft version.
[23:20:33] [Server thread/INFO]: The sound ANVIL_USE is not a sound found in this minecraft version.
[23:20:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[23:20:33] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0) located at com.badbones69.crazyenchantments.plugin.lib.de.tr7zw.changeme.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[23:20:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:20:33] [Server thread/INFO]: Active CrazyEnchantment Hooks:
[23:20:33] [Server thread/INFO]:  PLOTSQUARED : ENABLED
[23:20:33] [Server thread/INFO]:  VAULT : ENABLED
[23:20:33] [Server thread/INFO]:  WORLDGUARD : ENABLED
[23:20:33] [Server thread/INFO]:  WORLDEDIT : ENABLED
[23:20:33] [Thread-18/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.badbones69.crazyenchantments.plugin.lib.de.tr7zw.changeme.nbtapi' seems to be outdated!
[23:20:33] [Thread-18/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.12.4'
[23:20:33] [Thread-18/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[23:20:33] [Server thread/INFO]: [CrazyEnchantments] Gkitz support is now enabled.
[23:20:33] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[23:20:33] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[23:20:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tempfly [3.1.7]
[23:20:33] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.5-b719*
[23:20:33] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v2.5-b719" 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 [Rigby, fernferret, lithium3141, main--].
[23:20:33] [Server thread/INFO]: Preparing start region for dimension minecraft:mines
[23:20:34] [Server thread/INFO]: Time elapsed: 884 ms
[23:20:34] [Server thread/INFO]: [WorldGuard] (mines) TNT ignition is PERMITTED.
[23:20:34] [Server thread/INFO]: [WorldGuard] (mines) Lighters are PERMITTED.
[23:20:34] [Server thread/INFO]: [WorldGuard] (mines) Lava fire is blocked.
[23:20:34] [Server thread/INFO]: [WorldGuard] (mines) Fire spread is UNRESTRICTED.
[23:20:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mines'
[23:20:34] [Worker-Main-1/INFO]: [PlotSquared/PlotSquared] Detected world load for 'Plots'
[23:20:34] [Worker-Main-1/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[23:20:34] [Worker-Main-1/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[23:20:34] [Worker-Main-1/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[23:20:34] [Worker-Main-1/INFO]:  Plots</bold> ► Loading flags for area: Plots
[23:20:34] [Worker-Main-1/INFO]:  Plots</bold> ► Area flags: []
[23:20:34] [Worker-Main-1/INFO]:  Plots</bold> ► Road flags: []
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name Plots
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 17
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 60
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 56
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 56
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 64
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 64
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = stone
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = air
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = air
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = lime_wool
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = sandstone
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = false
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 42
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 35
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[23:20:35] [Worker-Main-1/INFO]: [PlotSquared/HybridPlotWorld] -- size = 77
[23:20:35] [Server thread/INFO]: Preparing start region for dimension minecraft:plots
[23:20:35] [Server thread/INFO]: Time elapsed: 48 ms
[23:20:35] [Server thread/INFO]: [WorldGuard] (Plots) TNT ignition is PERMITTED.
[23:20:35] [Server thread/INFO]: [WorldGuard] (Plots) Lighters are PERMITTED.
[23:20:35] [Server thread/INFO]: [WorldGuard] (Plots) Lava fire is blocked.
[23:20:35] [Server thread/INFO]: [WorldGuard] (Plots) Fire spread is UNRESTRICTED.
[23:20:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Plots'
[23:20:35] [Server thread/INFO]: Preparing start region for dimension minecraft:free
[23:20:35] [Server thread/INFO]: Time elapsed: 25 ms
[23:20:35] [Server thread/INFO]: [WorldGuard] (Free) TNT ignition is PERMITTED.
[23:20:35] [Server thread/INFO]: [WorldGuard] (Free) Lighters are PERMITTED.
[23:20:35] [Server thread/INFO]: [WorldGuard] (Free) Lava fire is blocked.
[23:20:35] [Server thread/INFO]: [WorldGuard] (Free) Fire spread is UNRESTRICTED.
[23:20:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Free'
[23:20:35] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[23:20:35] [Server thread/INFO]: [Multiverse-Core] Version 2.5-b719 (API v20) Enabled - By Rigby, fernferret, lithium3141 and main--
[23:20:35] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2794)
[23:20:35] [Server thread/INFO]: [Citizens] Loading external libraries
[23:20:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[23:20:36] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[23:20:36] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.5.3
[23:20:36] [Server thread/INFO]:  
[23:20:36] [Server thread/INFO]: __________________________________________________________
[23:20:36] [Server thread/INFO]:  
[23:20:36] [Server thread/INFO]:                        TradeSystem [2.5.3]
[23:20:36] [Server thread/INFO]:  
[23:20:36] [Server thread/INFO]: Status:
[23:20:36] [Server thread/INFO]:  
[23:20:36] [Server thread/INFO]: MC-Version: 1.19.3 (R0.1-SNAPSHOT, Paper)
[23:20:36] [Server thread/INFO]:  
[23:20:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[23:20:36] [Server thread/INFO]:   > Loading sounds
[23:20:36] [Server thread/INFO]:   > Loading blacklist
[23:20:36] [Server thread/INFO]:     ...got 3 blocked item(s)
[23:20:36] [Server thread/INFO]:   > Loading layouts
[23:20:36] [Server thread/INFO]:     ...got 4 layout(s)
[23:20:36] [Server thread/INFO]:   > Queuing database initializing task
[23:20:36] [Server thread/INFO]:  
[23:20:36] [Server thread/INFO]: Finished (342ms)
[23:20:36] [Server thread/INFO]:  
[23:20:36] [Server thread/INFO]: __________________________________________________________
[23:20:36] [Server thread/INFO]:  
[23:20:36] [Server thread/INFO]: [MineResetLite] Enabling MineResetLite v4.21.2
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'I.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'B.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'H.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'K.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'W.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Z.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Q.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'P.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'C.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'U.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'J.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'V.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'O.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'D.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'L.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'PvP.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'M.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'G.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'Y.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'N.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'T.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'X.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'R.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'A.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'S.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'E.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Loading mine from file 'F.mine.yml'...
[23:20:36] [Server thread/INFO]: [MineResetLite] Registering BlockEventListener
[23:20:36] [Server thread/INFO]: [MineResetLite] TokenEnchant was not found... skipping.
[23:20:36] [Server thread/INFO]: [MineResetLite] Registering PlayerEventListener
[23:20:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mineresetlite [${project.version}]
[23:20:36] [Server thread/INFO]: [MineResetLite] Registered PAPI expansion
[23:20:36] [Server thread/INFO]: [MineResetLite] MineResetLite version 4.21.2 enabled!
[23:20:36] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.11.1-RELEASE
[23:20:36] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Loading the config.yml
[23:20:36] [Server thread/WARN]: Nag author(s): '[BadBones69, Felux]' of 'BlockParticles' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[23:20:36] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Successfully loaded config.yml
[23:20:36] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Loading the data.yml
[23:20:36] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Successfully loaded data.yml
[23:20:36] [Server thread/INFO]: [AdvancedRegionMarket] Enabling AdvancedRegionMarket v3.3.4
[23:20:36] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldGuard7 adapter
[23:20:36] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldEdit7 adapter
[23:20:36] [Server thread/INFO]: [AdvancedRegionMarket] Using MC 1.14 sign adapter
[23:20:36] [Server thread/INFO]: [AdvancedRegionMarket] Regions loaded!
[23:20:37] [Server thread/INFO]: [AdvancedRegionMarket] Programmed by Alex9849
[23:20:37] [Server thread/INFO]: [AdvancedRegionMarket] I'm always searching for better translations of AdvancedRegionMarket. If you've translated the plugin it would be very nice if you would send me your translation via spigot private message! :)
[23:20:37] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[23:20:37] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin was found. PlotSquared support enabled.
[23:20:37] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] Enabling CrazyEnvoy v1.3.10-RELEASE
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Loading the Config.yml
[23:20:37] [Server thread/WARN]: Nag author(s): '[BadBones69]' of 'CrazyEnvoy' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Successfully loaded Config.yml
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Loading the Messages.yml
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Successfully loaded Messages.yml
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Loading the Data.yml
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Successfully loaded Data.yml
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Loading custom files.
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Loaded new custom file: /Tiers/Lucky.yml.
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Loaded new custom file: /Tiers/Titan.yml.
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Loaded new custom file: /Tiers/Basic.yml.
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] Finished loading custom files.
[23:20:37] [Server thread/INFO]: [CrazyEnvoy] [STDOUT] [CrazyEnvoy] No supported hologram plugin was found.
[23:20:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazyenvoy [1.3.10-RELEASE]
[23:20:37] [Server thread/INFO]: [BlockRegen] Enabling BlockRegen v3.10.4
[23:20:37] [Server thread/INFO]: INFO: Loaded file Settings.yml
[23:20:37] [Server thread/INFO]: INFO: Loaded file Messages.yml
[23:20:37] [Server thread/INFO]: INFO: Loaded file Blocklist.yml
[23:20:37] [Server thread/INFO]: INFO: Loaded file Regions.yml
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Running on version 1.19
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: WorldEdit found! Enabling regions.
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: WorldGuard found! Supporting it's Region protection.
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Checking dependencies...
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Vault & economy plugin found! Enabling economy functions.
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Found PlaceholderAPI! Using it for placeholders.
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Loaded 2 block preset(s)...
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Added 0 event(s)...
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Loaded file Regions.yml
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Loaded 1 region(s)...
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: You are using version 3.10.4
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Report bugs or suggestions to discord only please. ( /blockregen discord )
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: Always backup if you are not sure about things.
[23:20:37] [Server thread/INFO]: [BlockRegen] INFO: MetricsLite enabled
[23:20:37] [Server thread/INFO]: [X-Prison] Enabling X-Prison v1.12.9
[23:20:37] [Server thread/INFO]: [X-Prison]  __  __     ____  ____  ___ ____   ___  _   _ 
 \ \/ /    |  _ \|  _ \|_ _/ ___| / _ \| \ | |
  \  /_____| |_) | |_) || |\___ \| | | |  \| |
  /  \_____|  __/|  _ < | | ___) | |_| | |\  |
 /_/\_\    |_|   |_| \_\___|____/ \___/|_| \_|
                                              

[23:20:37] [Server thread/INFO]: [X-Prison] 1.12.9
[23:20:37] [Server thread/INFO]: [X-Prison] By: [Drawethree]
[23:20:37] [Server thread/INFO]: [X-Prison] Website: www.drawethree.dev
[23:20:37] [ForkJoinPool.commonPool-worker-1/INFO]: [BlockRegen] INFO: Loaded 0 regeneration process(es)...
[23:20:37] [Server thread/INFO]: [X-Prison] NMSProvider loaded:  NMSProvider_v1_19_R2
[23:20:37] [Server thread/INFO]: [X-Prison] Using SQLite (local) database.
[23:20:37] [Server thread/ERROR]: [X-Prison] [STDERR] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[23:20:37] [Server thread/WARN]: Nag author(s): '[Drawethree]' of 'X-Prison' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[23:20:37] [Server thread/ERROR]: [X-Prison] [STDERR] SLF4J: Defaulting to no-operation (NOP) logger implementation
[23:20:37] [Server thread/ERROR]: [X-Prison] [STDERR] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[23:20:37] [Server thread/WARN]: [X-Prison] Loaded class me.leoko.advancedban.shaded.org.hsqldb.jdbc.JDBCDriver from AdvancedBan v2.3.0 which is not a depend or softdepend of this plugin.
[23:20:37] [Server thread/INFO]: [X-Prison] Economy provider for Vault found - EssentialsX Economy
[23:20:37] [Server thread/INFO]: [X-Prison] Added support for pickaxe: DIAMOND_PICKAXE
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded 1 Block Rewards!
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Tokens loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Gems loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] Using Money currency for Ranks.
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded 26 ranks!
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Ranks loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] Using Money currency for Prestiges.
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded 1,000,000 prestiges.
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Prestiges loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded Global Sell Multiplier 0.00x
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded Global Token Multiplier 0.00x
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Multipliers loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-a'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-b'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-c'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-d'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-e'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-f'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-g'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-h'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-i'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-j'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-k'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-l'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-m'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-n'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-o'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-p'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-q'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-r'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-s'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-t'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-u'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-v'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-w'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-x'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-y'
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-z'
[23:20:37] [Server thread/WARN]: [X-Prison] There is no such WorldGuard region named pvpmine in world world
[23:20:37] [Server thread/WARN]: [X-Prison] There is no such WorldGuard region named miningzone in world world
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded auto-sell region named 'mine-pvp'
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Auto Sell loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Efficiency created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Unbreaking created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Fortune created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Haste created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Speed created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Jump Boost created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Night Vision created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Lucky Booster created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Explosive created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Layer created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Charity created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Salary created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Blessing created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Tokenator created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Key Finder created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Prestige Finder created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Block Booster created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Keyalls created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Autosell created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Voucher Finder created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Nuke created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Gem Finder created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] Successfully registered enchant Gang Value Finder created by Drawethree
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Enchants loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] AutoMiner region 'automine' loaded successfully!
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Auto Miner loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Gangs loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] Loaded 2 Pickaxe Levels.
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module Pickaxe Levels loaded.
[23:20:37] [Server thread/INFO]: [X-Prison] X-Prison - Module History loaded.
[23:20:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: xprison [1.12.9]
[23:20:37] [Server thread/INFO]: [CitizensCMD] Enabling CitizensCMD v2.7.1
[23:20:37] [pool-26-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[23:20:37] [pool-26-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached 100.0% of UUIDs
[23:20:37] [pool-26-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[23:20:37] [Server thread/INFO]: [CitizensCMD] CitizensCMD 2.7.1
[23:20:37] [Server thread/INFO]: [CitizensCMD] by Mateus Moreira @LichtHund & Maintained by HexedHero
[23:20:37] [Server thread/INFO]: [CitizensCMD] Using English messages!
[23:20:37] [Server thread/INFO]: [CitizensCMD] Using PlaceholderAPI!
[23:20:37] [Server thread/INFO]: [CitizensCMD] Using Vault!
[23:20:37] [Server thread/INFO]: [AuctionMaster] Enabling AuctionMaster v2.5
[23:20:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionmaster [1.0.0]
[23:20:37] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Deliveries SQL.
[23:20:37] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Auctions Database SQL.
[23:20:37] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Auctions Player List SQL.
[23:20:37] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Preview Data SQL.
[23:20:37] [Server thread/INFO]: [PlayerSkillsReborn] Enabling PlayerSkillsReborn v1.7.12*
[23:20:37] [Server thread/INFO]: [PlayerSkillsReborn] Successfully hooked into Citizens.
[23:20:37] [Server thread/INFO]: [PlayerSkillsReborn] HolographicDisplays not found. Holograms will not be available.
[23:20:37] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[23:20:38] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
[23:20:38] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[23:20:38] [Server thread/INFO]: [MythicMobs] MythicMobs NoCheatPlus Support has been enabled!
[23:20:38] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[23:20:38] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[23:20:38] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[23:20:38] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[23:20:38] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[23:20:38] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[23:20:38] [Server thread/INFO]: [MythicMobs] LOADED
[23:20:38] [Server thread/INFO]: [MythicMobs] Loading Packs...
[23:20:38] [Server thread/INFO]: [MythicMobs] Loading Items...
[23:20:38] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[23:20:38] [Server thread/INFO]: [MythicMobs] Loading Skills...
[23:20:38] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[23:20:38] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[23:20:38] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[23:20:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 12 mobs.
[23:20:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[23:20:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[23:20:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 6 skills.
[23:20:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[23:20:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 51 mythic items.
[23:20:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 7 drop tables.
[23:20:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[23:20:38] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[23:20:38] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[23:20:38] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[23:20:38] [Server thread/INFO]: [Quests] Enabling Quests v4.6.1-b373
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[23:20:38] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[23:20:38] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.30-SNAPSHOT (build 2794)
[23:20:38] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[23:20:39] [Server thread/INFO]: [Server Tutorial Plus] Enabling ServerTutorialPlus v1.23.3*
[23:20:39] [Server thread/INFO]: [Server Tutorial Plus] Enabling server tutorial...
[23:20:39] [Server thread/INFO]: [Server Tutorial Plus] Using FlatFile as datasource...
[23:20:39] [Server thread/INFO]: [Server Tutorial Plus] Using protocol: nl.martenm.servertutorialplus.reflection.v1_14.Protocol_1_14_V1
[23:20:39] [Server thread/INFO]: [Server Tutorial Plus] PlaceholderAPI has been found!
[23:20:39] [Server thread/INFO]: [Server Tutorial Plus] Servertutorial enabled successfully!
[23:20:39] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[23:20:39] [Server thread/INFO]: Running delayed init tasks
[23:20:39] [Craft Scheduler Thread - 4 - ItemJoin/INFO]: [ItemJoin] Hooked into { Multiverse-Core, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens, Vault }
[23:20:39] [Craft Scheduler Thread - 4 - ItemJoin/INFO]: [ItemJoin] 2 Custom item(s) loaded!
[23:20:39] [Craft Scheduler Thread - 9 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[23:20:39] [Craft Scheduler Thread - 11 - NoCheatPlus/INFO]: [NoCheatPlus] Could not register an instance for: fr.neatmonster.nocheatplus.components.entity.IEntityAccessLastPositionAndLook
[23:20:39] [Craft Scheduler Thread - 11 - NoCheatPlus/INFO]: [NoCheatPlus] Added hook: AllViolations(NCP) [1.0].
[23:20:39] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:20:39] [Craft Scheduler Thread - 14 - Essentials/INFO]: [Essentials] Fetching version information...
[23:20:39] [ForkJoinPool.commonPool-worker-6/WARN]: [PlaceholderAPI] Loaded class net.ess3.api.IEssentials from Essentials v2.20.0-dev+38-b323860 which is not a depend or softdepend of this plugin.
[23:20:39] [Craft Scheduler Thread - 2 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] There appears to be a PlotSquared update available!
[23:20:39] [Craft Scheduler Thread - 2 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] You are running version 7.3.1-Premium, the latest version is 7.3.8
[23:20:39] [Craft Scheduler Thread - 2 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] https://www.spigotmc.org/resources/77506/updates
[23:20:39] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[23:20:39] [Craft Scheduler Thread - 5 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[23:20:39] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[23:20:39] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[23:20:39] [Craft Scheduler Thread - 19 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[23:20:39] [Craft Scheduler Thread - 21 - Vault/INFO]: [Vault] Checking for Updates ... 
[23:20:39] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loaded 17 holograms!
[23:20:39] [ForkJoinPool.commonPool-worker-5/WARN]: [PlaceholderAPI] Loaded class me.blackvein.quests.quests.IQuest from Quests v4.6.1-b373 which is not a depend or softdepend of this plugin.
[23:20:39] [Server thread/ERROR]: [com.fastasyncworldedit.bukkit.FaweBukkit] Incompatible version of PlotSquared found. Please use PlotSquared v6.
[23:20:39] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] https://www.spigotmc.org/resources/77506/
[23:20:39] [Craft Scheduler Thread - 8 - PetBlocks/INFO]: [PetBlocks] ================================================
[23:20:39] [Craft Scheduler Thread - 8 - PetBlocks/INFO]: [PetBlocks] PetBlocks is outdated
[23:20:39] [Craft Scheduler Thread - 8 - PetBlocks/INFO]: [PetBlocks] Please download the latest version from github
[23:20:39] [Craft Scheduler Thread - 8 - PetBlocks/INFO]: [PetBlocks] ================================================
[23:20:39] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[23:20:39] [Craft Scheduler Thread - 5 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] You are 7 versions behind! Get AnimatedScoreboard(v0.3.4) at:
[23:20:39] [Craft Scheduler Thread - 5 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] https://www.spigotmc.org/resources/20848
[23:20:39] [Craft Scheduler Thread - 2 - CrazyCrates/INFO]: [CrazyCrates] Plugin is up to date! - v2.0.5
[23:20:39] [Craft Scheduler Thread - 17 - Quests/INFO]: [Quests] Update to 5.0.2: https://github.com/PikaMug/Quests
[23:20:39] [Craft Scheduler Thread - 21 - Vault/INFO]: [Vault] No new version available
[23:20:39] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] Your current version: v5.2.5-SNAPSHOT
[23:20:39] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] This SNAPSHOT is outdated and a release version is now available.
[23:20:39] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] A new version is available: v6.0.7-RELEASE
[23:20:39] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] Get it from: https://github.com/RockinChaos/itemjoin/releases/latest
[23:20:39] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] If you wish to auto update, please type /ItemJoin Upgrade
[23:20:39] [Server thread/INFO]: [NoCheatPlus] Post-enable running...
[23:20:39] [Craft Scheduler Thread - 14 - Essentials/WARN]: [Essentials] You're 169 EssentialsX dev build(s) out of date!
[23:20:39] [Craft Scheduler Thread - 14 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[23:20:39] [ForkJoinPool.commonPool-worker-10/WARN]: [PlaceholderAPI] Loaded class de.tr7zw.annotations.FAUtil from X-Prison v1.12.9 which is not a depend or softdepend of this plugin.
[23:20:40] [Craft Scheduler Thread - 10 - BroadcastXS/INFO]: [BroadcastXS] The plugin is up to date.
[23:20:40] [Server thread/INFO]: [NoCheatPlus] Post-enable finished.
[23:20:40] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[23:20:40] [Server thread/INFO]: [Citizens] Loaded 17 NPCs.
[23:20:40] [Server thread/INFO]: [BlockRegen] INFO: Checking dependencies...
[23:20:40] [Server thread/INFO]: [BlockRegen] INFO: Starting auto-save.. with an interval of 600 seconds.
[23:20:40] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.6) is available at:
[23:20:40] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[23:20:40] [Server thread/INFO]: Done (24.661s)! For help, type "help"
[23:20:40] [Server thread/INFO]: Timings Reset
[23:20:41] [Server thread/INFO]: [Quests] Loaded 85 Quest(s), 7 Action(s), 1 Condition(s) and 833 Phrase(s)
[23:20:41] [ForkJoinPool.commonPool-worker-2/WARN]: [PlaceholderAPI] Loaded class org.checkerframework.checker.calledmethods.qual.EnsuresCalledMethodsVarArgs from MythicMobs v5.2.1-fd1d0777 which is not a depend or softdepend of this plugin.
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.0]
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: math [1.3.1]
[23:20:41] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.3.3 which is not a depend or softdepend of this plugin.
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[23:20:41] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 4 scripts loaded!
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: javascript [2.1.0]
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests [1.6]
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.1]
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: progress [2.1]
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.0]
[23:20:41] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: checkitem [2.6.3]
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playtime [1.0]
[23:20:41] [Server thread/WARN]: [PlaceholderAPI] Loaded class io.minimum.minecraft.superbvote.SuperbVote from SuperbVote v0.5.2-1.12 which is not a depend or softdepend of this plugin.
[23:20:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superbvote [1.3.1]
[23:20:41] [Server thread/INFO]: 12 placeholder hook(s) registered! 8 placeholder hook(s) have an update available.
[23:20:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 52c]
[23:20:42] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[23:20:42] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[23:20:44] [Server thread/INFO]:  
[23:20:44] [Server thread/INFO]:  [UltimateAutoRestart] New update available!
[23:20:44] [Server thread/INFO]:  Current version: Build 52c with latest being 2024.03!
[23:20:44] [Server thread/INFO]:  
[23:20:44] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/uar/
[23:20:44] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/uar/
[23:20:44] [Server thread/INFO]:  
[23:20:45] [User Authenticator #0/INFO]: UUID of player FlameDuder is 6b4b51a5-0699-4a63-9eba-aeff7bbb6d9f
[23:20:45] [TAB Processing Thread/INFO]: [TAB] ViaVersion returned unknown protocol version 765 for player FlameDuder. This may result in plugin not working correctly for them.
[23:20:45] [Server thread/INFO]: [PetBlocks] Loading pet of player [FlameDuder]...
[23:20:45] [Server thread/INFO]: FlameDuder[/172.56.160.48:58780] logged in with entity id 302 at ([world]2026.1181030216162, 33.0, -888.3790854979899)
[23:20:46] [Server thread/INFO]: [+] FlameDuder
[23:20:46] [Craft Scheduler Thread - 11 - CrazyCrates/INFO]: [CrazyCrates] Plugin is up to date! - v2.0.5
[23:20:51] [Server thread/INFO]: [PetBlocks] Loaded pet of player [FlameDuder].
[23:20:53] [Netty Epoll Server IO #2/ERROR]: Packet encoding of packet ID 78 threw (skippable? false)
java.lang.NullPointerException: Cannot invoke "java.util.List.iterator()" because "trackedValues" is null
    at net.minecraft.network.protocol.game.ClientboundSetEntityDataPacket.pack(ClientboundSetEntityDataPacket.java:17) ~[?:?]
    at net.minecraft.network.protocol.game.ClientboundSetEntityDataPacket.write(ClientboundSetEntityDataPacket.java:38) ~[?:?]
    at net.minecraft.network.PacketEncoder.encode(PacketEncoder.java:41) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.network.PacketEncoder.encode(PacketEncoder.java:14) ~[paper-1.19.3.jar:git-Paper-376]
    at io.netty.handler.codec.MessageToByteEncoder.write(MessageToByteEncoder.java:107) ~[netty-codec-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:717) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:709) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:792) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:702) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.handler.codec.MessageToByteEncoder.write(MessageToByteEncoder.java:120) ~[netty-codec-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:717) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:709) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:792) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:702) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.ChannelDuplexHandler.write(ChannelDuplexHandler.java:115) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at me.neznamy.tab.shared.features.injection.NettyPipelineInjector$TabChannelDuplexHandler.write(NettyPipelineInjector.java:112) ~[TAB.v4.0.1.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:717) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:709) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:792) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:702) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.ChannelDuplexHandler.write(ChannelDuplexHandler.java:115) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at de.codingair.tradesystem.lib.codingapi.player.data.PacketReader$1.write(PacketReader.java:77) ~[TradeSystem_v2.5.3.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:717) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:709) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:792) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:702) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.ChannelDuplexHandler.write(ChannelDuplexHandler.java:115) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at de.codingair.tradesystem.lib.codingapi.player.data.PacketReader$1.write(PacketReader.java:77) ~[TradeSystem_v2.5.3.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:717) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:764) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:790) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:758) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:1020) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:311) ~[netty-transport-4.1.82.Final.jar:4.1.82.Final]
    at com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:227) ~[ProtocolLib (7).jar:?]
    at com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233) ~[ProtocolLib (7).jar:?]
    at net.minecraft.network.Connection.doSendPacket(Connection.java:459) ~[?:?]
    at net.minecraft.network.Connection.lambda$sendPacket$11(Connection.java:433) ~[?:?]
    at com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.lambda$proxyRunnable$2(NettyEventLoopProxy.java:48) ~[ProtocolLib (7).jar:?]
    at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) ~[netty-common-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) ~[netty-common-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) ~[netty-common-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:403) ~[netty-transport-classes-epoll-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.82.Final.jar:4.1.82.Final]
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.82.Final.jar:4.1.82.Final]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:20:53] [Server thread/INFO]: FlameDuder lost connection: Internal Exception: io.netty.handler.codec.EncoderException: java.lang.NullPointerException: Cannot invoke "java.util.List.iterator()" because "trackedValues" is null
[23:20:53] [Server thread/WARN]: [MythicMobs] Loaded class fr.neatmonster.nocheatplus.hooks.NCPExemptionManager from NoCheatPlus v3.16.0-RC-sMD5NET-b1134 which is not a depend or softdepend of this plugin.
[23:20:53] [Server thread/INFO]: [-] FlameDuder
[23:21:00] [User Authenticator #0/INFO]: UUID of player FlameDuder is 6b4b51a5-0699-4a63-9eba-aeff7bbb6d9f
[23:21:00] [TAB Processing Thread/INFO]: [TAB] ViaVersion returned unknown protocol version 765 for player FlameDuder. This may result in plugin not working correctly for them.
[23:21:00] [Server thread/INFO]: [PetBlocks] Loading pet of player [FlameDuder]...
[23:21:00] [Server thread/INFO]: FlameDuder[/172.56.160.48:48875] logged in with entity id 305 at ([world]2026.0565673015826, 33.0, -887.130693002596)
[23:21:00] [Server thread/INFO]: [+] FlameDuder
[23:21:00] [Craft Scheduler Thread - 14 - CrazyCrates/INFO]: [CrazyCrates] Plugin is up to date! - v2.0.5
[23:21:06] [Server thread/INFO]: [PetBlocks] Loaded pet of player [FlameDuder].
[23:24:48] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[23:24:48] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0) located at dev.drawethree.xprison.libs.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[23:24:48] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:24:48] [Thread-27/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package dev.drawethree.xprison.libs.nbtapi' seems to be outdated!
[23:24:48] [Thread-27/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.12.4'
[23:24:48] [Thread-27/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[23:24:49] [Server thread/INFO]: Warzone There is an envoy event happening in 30m, 0s.
[23:24:49] [Server thread/INFO]: FlameDuder issued server command: /dm open mines
[23:24:52] [Server thread/INFO]: FlameDuder issued server command: /dm open help
[23:24:59] [Server thread/INFO]: FlameDuder issued server command: /dm open help
[23:25:01] [Server thread/INFO]: FlameDuder issued server command: /kit
[23:27:20] [Server thread/INFO]: FlameDuder issued server command: /bank
[23:39:49] [Server thread/INFO]: Warzone There is an envoy event happening in 15m, 0s.
[23:44:49] [Server thread/INFO]: Warzone There is an envoy event happening in 10m, 0s.