Paste #113124: Server Log

Date: 2023/07/30 16:47:14 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[23:33:42] [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:33:45] [ServerMain/WARN]: Found loot table element validation problem in {loot_tables:minecraft:entities/ender_dragon}.pools[0].entries[0]: Unknown loot table called minecraft:entities/reference/extra/ender_dragon
[23:33:45] [ServerMain/INFO]: Loaded 7 recipes
[23:33:45] [Server thread/INFO]: Starting minecraft server version 1.20.1
[23:33:45] [Server thread/INFO]: Loading properties
[23:33:46] [Server thread/INFO]: This server is running Paper version git-Paper-80 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: de3f149)
[23:33:46] [Server thread/INFO]: Server Ping Player Sample Count: 12
[23:33:46] [Server thread/INFO]: Using 4 threads for Netty based IO
[23:33:46] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[23:33:46] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[23:33:46] [Server thread/INFO]: Default game type: SURVIVAL
[23:33:46] [Server thread/INFO]: Generating keypair
[23:33:46] [Server thread/INFO]: Starting Minecraft server on 31.214.166.15:25618
[23:33:46] [Server thread/INFO]: Using epoll channel type
[23:33:46] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[23:33:46] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[23:33:47] [Server thread/WARN]: [FairyChat] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[23:33:48] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_20_R1
[23:33:48] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 370 ms to scan 1 urls, producing 1266 keys and 4001 values
[23:33:48] [Server thread/WARN]: [WolfyUtilities] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[23:33:48] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loading 1 libraries... please wait
[23:33:48] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/minecraft/multicraft/servers/server1961273/default/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[23:33:48] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/minecraft/multicraft/servers/server1961273/default/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[23:33:49] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_20_R1
[23:33:49] [Server thread/INFO]: [HsRails] Loading server plugin HsRails v1.3.0
[23:33:49] [Server thread/INFO]: [MendingEnchant] Loading server plugin MendingEnchant v1.6.2
[23:33:49] [Server thread/INFO]: [VillagerTradeLimiter] Loading server plugin VillagerTradeLimiter v1.6.4
[23:33:49] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.1-SNAPSHOT
[23:33:49] [Server thread/INFO]: [TrollBoss] Loading server plugin TrollBoss v6.5.3
[23:33:49] [Server thread/INFO]: [CreeperHeal2] Loading server plugin CreeperHeal2 v2.0.0
[23:33:49] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0-SNAPSHOT-654
[23:33:49] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.20.1) has not yet been tested! Proceed with caution.
[23:33:50] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.37
[23:33:50] [Server thread/INFO]: [LeashPlayers] Loading server plugin LeashPlayers v1.5
[23:33:50] [Server thread/INFO]: [ImageMaps] Loading server plugin ImageMaps v1.0.10
[23:33:50] [Server thread/INFO]: [nLogin] Loading server plugin nLogin v10.2.7
[23:33:50] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v14.2.12
[23:33:50] [Server thread/INFO]: [MapModCompanion] Loading server plugin MapModCompanion v0.8.1
[23:33:50] [Server thread/INFO]: [BlockProt] Loading server plugin BlockProt v1.1.12
[23:33:50] [Server thread/INFO]: [BlockProt] Registered plugin integration for plugin with id 'worldguard'
[23:33:50] [Server thread/INFO]: [BlockProt] Registered plugin integration for plugin with id 'towny'
[23:33:50] [Server thread/INFO]: [BlockProt] Registered plugin integration for plugin with id 'placeholderapi'
[23:33:50] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[23:33:50] [Server thread/INFO]: [JukeBox] Loading server plugin JukeBox v1.20.8
[23:33:50] [Server thread/INFO]: [WhitelistByTime] Loading server plugin WhitelistByTime v6.2
[23:33:50] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.0.1
[23:33:50] [Server thread/INFO]: [PlayerStats] Loading server plugin PlayerStats v2.0
[23:33:50] [Server thread/INFO]: [BottledExp] Loading server plugin BottledExp v3.2.1.0
[23:33:50] [Server thread/INFO]: [OtherAnimalTeleport] Loading server plugin OtherAnimalTeleport v2.2-b62
[23:33:50] [Server thread/INFO]: [NFCNotes] Loading server plugin NFCNotes v2.4.0
[23:33:50] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.22.2
[23:33:50] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.22.2
[23:33:50] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.22.2
[23:33:50] [Server thread/INFO]: [SCore] Loading server plugin SCore v3.9.94
[23:33:50] [Server thread/INFO]: [Tweakin] Loading server plugin Tweakin v6.0.0
[23:33:50] [Server thread/INFO]: [Tweakin] Found WorldGuard, initializing flags support
[23:33:50] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-better-sign-edit registered successfully
[23:33:50] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-shear-item-frame registered successfully
[23:33:50] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-snowball-knockback registered successfully
[23:33:50] [Server thread/INFO]: [CustomDrops] Loading server plugin CustomDrops v1.12.0
[23:33:50] [Server thread/INFO]: [Shop] Loading server plugin Shop v1.8.4.4
[23:33:50] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.14
[23:33:50] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.6
[23:33:50] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[23:33:50] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.88
[23:33:51] [Server thread/INFO]: [FairyChat] Loading server plugin FairyChat v0.3.7
[23:33:51] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[23:33:51] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.17.3
[23:33:51] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[23:33:51] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.4-SNAPSHOT-500;770bb00
[23:33:52] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@64216e5b]
[23:33:52] [Server thread/INFO]: [AdvancedTeleport] Loading server plugin AdvancedTeleport v5.6.12
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.7.0
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[23:33:52] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[23:33:52] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.1-b834
[23:33:52] [Server thread/INFO]: [NoteBlockMusicPlayer] Loading server plugin NoteBlockMusicPlayer v1.8.2
[23:33:52] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9-beta1+2249-223b80c
[23:33:52] [Server thread/INFO]: [Multiverse-Inventories] Loading server plugin Multiverse-Inventories v4.2.3-b523
[23:33:52] [Server thread/INFO]: [Multiverse-SignPortals] Loading server plugin Multiverse-SignPortals v4.2.1
[23:33:52] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.2-b807
[23:33:52] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.7.0-beta3
[23:33:52] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.3
[23:33:52] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1-dev+13-a116e86
[23:33:52] [Server thread/INFO]: [LocketteX] Loading server plugin LocketteX v1.8.0
[23:33:52] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.32-SNAPSHOT (build 3127)
[23:33:52] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.16.5
[23:33:52] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (293 ms).
[23:33:52] [Server thread/WARN]: [Shopkeepers] Incompatible server version: v1_20_R1 (mappings: bcf3dcb22ad42792794079f9443df2c0)
[23:33:52] [Server thread/WARN]: [Shopkeepers] Shopkeepers is trying to run in 'compatibility mode'.
[23:33:52] [Server thread/INFO]: [Shopkeepers] Check for updates at: https://dev.bukkit.org/projects/shopkeepers/
[23:33:52] [Server thread/INFO]: [Shopkeepers] Loading config.
[23:33:52] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[23:33:52] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[23:33:52] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.16.12.0
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Generate Functional Recipes
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[23:33:52] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[23:33:52] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.1-dev+13-a116e86
[23:33:52] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.1-dev+13-a116e86
[23:33:52] [Server thread/INFO]: [PremiumVanish] Loading server plugin PremiumVanish v2.8.10
[23:33:52] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.8.2
[23:33:52] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.12.0
[23:33:52] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.8.2
[23:33:52] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[23:33:52] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[23:33:52] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[23:33:52] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[23:33:52] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[23:33:52] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[23:33:52] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[23:33:52] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[23:33:53] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[23:33:53] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v0.21_BUILD376
[23:33:53] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.1.0
[23:33:53] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.3.0
[23:33:53] [Server thread/INFO]: [ItemTag] Loading server plugin ItemTag v3.1.0
[23:33:53] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v5.9.94
[23:33:53] [Server thread/INFO]: [ExecutableBlocks] Loading server plugin ExecutableBlocks v4.0.1
[23:33:53] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[23:33:53] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0-SNAPSHOT-654
[23:33:53] [Server thread/INFO]: [nLogin] Enabling nLogin v10.2.7
[23:33:53] [Server thread/INFO]: [nLogin] Successful plugin core start (took 0.68s)
[23:33:53] [Server thread/INFO]:           __             _       
[23:33:53] [Server thread/INFO]:   _ __   / /  ___   __ _(_)_ __  
[23:33:53] [Server thread/INFO]:  | '_ \ / /  / _ \ / _` | | '_ \ 
[23:33:53] [Server thread/INFO]:  | | | / /__| (_) | (_| | | | | |
[23:33:53] [Server thread/INFO]:  |_| |_\____/\___/ \__, |_|_| |_|
[23:33:53] [Server thread/INFO]:                   |___/            
[23:33:53] [Server thread/INFO]:  By: www.nickuc.com - V 10.2.7 DEVELOPMENT
[23:33:53] [Server thread/INFO]:  
[23:33:54] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.88
[23:33:55] [Server thread/INFO]:         __    
[23:33:55] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.88
[23:33:55] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[23:33:55] [Server thread/INFO]: 
[23:33:55] [Server thread/INFO]: [LuckPerms] Loading configuration...
[23:33:55] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[23:33:56] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[23:33:57] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[23:33:57] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2672ms)
[23:33:57] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[23:33:57] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[23:33:57] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[23:33:57] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[23:33:57] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[23:33:57] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.4-SNAPSHOT-500;770bb00
[23:33:57] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[23:33:57] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[23:33:57] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[23:33:57] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[23:33:57] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[23:33:58] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 42 build(s) out of date.
You are running build 500, the latest version is build 542.
Update at https://www.spigotmc.org/resources/13932/
[23:33:58] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.12.0
[23:33:58] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.20.1
[23:33:58] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.12.0
[23:33:58] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[23:33:58] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[23:33:58] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[23:33:58] [Server thread/INFO]: [WolfyUtilities]  - ExecutableItems
[23:33:58] [Server thread/INFO]: [WolfyUtilities]  - ExecutableBlocks
[23:33:58] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[23:33:58] [Server thread/INFO]: [WolfyUtilities] Register API references
[23:33:58] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[23:33:58] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[23:33:59] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[23:33:59] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[23:33:59] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[23:33:59] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[23:33:59] [Server thread/INFO]: Preparing level "world"
[23:33:59] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[23:34:00] [Server thread/INFO]: Time elapsed: 197 ms
[23:34:00] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[23:34:00] [Server thread/INFO]: Time elapsed: 23 ms
[23:34:00] [Server thread/INFO]: [HsRails] Enabling HsRails v1.3.0
[23:34:00] [Server thread/INFO]: [HsRails] Reading config
[23:34:00] [Server thread/INFO]: [HsRails] Setting boost block to 'minecraft:redstone_block'
[23:34:00] [Server thread/INFO]: [HsRails] Setting speed multiplier to 4.0
[23:34:00] [Server thread/INFO]: [HsRails] Setting brake multiplier to 8.0
[23:34:00] [Server thread/INFO]: [HsRails] Registering event listener
[23:34:00] [Server thread/INFO]: [MendingEnchant] Enabling MendingEnchant v1.6.2
[23:34:00] [Server thread/INFO]: [MendingEnchant] is enabled !
[23:34:00] [Server thread/INFO]: [VillagerTradeLimiter] Enabling VillagerTradeLimiter v1.6.4
[23:34:00] [Server thread/INFO]: Connected to database!
[23:34:00] [Server thread/INFO]: [VillagerTradeLimiter] VillagerTradeLimiter is running!
[23:34:00] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.1-SNAPSHOT
[23:34:00] [Server thread/INFO]: [TrollBoss] Enabling TrollBoss v6.5.3
[23:34:00] [Server thread/INFO]: [TrollBoss] Plugin enabled!
[23:34:00] [Server thread/INFO]: [CreeperHeal2] Enabling CreeperHeal2 v2.0.0
[23:34:00] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.37
[23:34:00] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.37-Free.jar
[23:34:00] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_20_R1 (v1_20)
[23:34:00] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1239
[23:34:00] [Server thread/INFO]: [LibsDisguises] Build Date: 25/06/2023 07:08
[23:34:00] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[23:34:00] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[23:34:07] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[23:34:07] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[23:34:07] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[23:34:07] [Server thread/INFO]: [LeashPlayers] Enabling LeashPlayers v1.5
[23:34:07] [Server thread/INFO]: [ImageMaps] Enabling ImageMaps v1.0.10
[23:34:07] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.12
[23:34:07] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_20_R1, using MappingSpigotSkinRefresher.
[23:34:07] [Server thread/INFO]: [SkinsRestorer] [ACF] Enabled Asynchronous Tab Completion Support!
[23:34:07] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[23:34:07] [Server thread/INFO]: [MapModCompanion] Enabling MapModCompanion v0.8.1
[23:34:08] [Server thread/INFO]: [MapModCompanion] world_id handler will not be available (couldn't register incoming plugin channel: world_id)
[23:34:08] [Server thread/INFO]: [BlockProt] Enabling BlockProt v1.1.12
[23:34:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[23:34:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[23:34:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:34:08] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[23:34:08] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[23:34:08] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[23:34:08] [Server thread/INFO]: [JukeBox] Enabling JukeBox v1.20.8
[23:34:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jukebox [1.20.8]
[23:34:08] [Server thread/INFO]: [JukeBox] Placeholders registered
[23:34:08] [Server thread/INFO]: [JukeBox] This JukeBox version requires NoteBlockAPI version 1.5.0 or more. Please ensure you have the right version before using JukeBox (you are using NBAPI ver. 1.6.1-SNAPSHOT)
[23:34:08] [Server thread/INFO]: [JukeBox] Loaded language file en.yml
[23:34:08] [Server thread/INFO]: [JukeBox] 0 songs loadeds. Sorting by name... 
[23:34:08] [Server thread/INFO]: [JukeBox] Songs sorted ! 0 songs. Number of pages : 0
[23:34:08] [Server thread/INFO]: [WhitelistByTime] Enabling WhitelistByTime v6.2
[23:34:08] [Server thread/ERROR]: Cannot load plugins/WhitelistByTime/config.yml
org.bukkit.configuration.InvalidConfigurationException: while parsing a block collection
 in 'reader', line 51, column 5:
        - '#26ed7cYou are not whitelisted!'
        ^
expected <block end>, but found '<scalar>'
 in 'reader', line 52, column 17:
        - 'Contact 'debux' on discord for support!'
                    ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:111) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:309) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.reloadConfig(JavaPlugin.java:174) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at ru.nightmirror.wlbytime.common.utils.ConfigUtils.checkConfig(ConfigUtils.java:15) ~[WhitelistByTime-Spigot-6.2.jar:?]
    at ru.nightmirror.wlbytime.WhitelistByTime.onEnable(WhitelistByTime.java:57) ~[WhitelistByTime-Spigot-6.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.1.jar:git-Paper-80]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:435) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: org.yaml.snakeyaml.parser.ParserException: while parsing a block collection
 in 'reader', line 51, column 5:
        - '#26ed7cYou are not whitelisted!'
        ^
expected <block end>, but found '<scalar>'
 in 'reader', line 52, column 17:
        - 'Contact 'debux' on discord for support!'
                    ^

    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockSequenceEntryKey.produce(ParserImpl.java:550) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:162) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:241) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:205) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:277) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:207) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157) ~[snakeyaml-2.0.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.0.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:104) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    ... 18 more
[23:34:08] [Server thread/INFO]: [WhitelistByTime] Enabled
[23:34:08] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.0.1
[23:34:09] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.1 - paper
[23:34:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.4.0.1]
[23:34:10] [Server thread/INFO]: PlaceholderAPI hooked.
[23:34:10] [Server thread/INFO]: Updated (EN) language file. Took 27ms
[23:34:10] [Server thread/INFO]: [PlayerStats] Enabling PlayerStats v2.0
[23:34:10] [pool-22-thread-1/INFO]: [PlayerStats] Loaded 0 excluded players from file (1ms)
[23:34:10] [pool-22-thread-1/INFO]: [PlayerStats] Loaded 18 offline players (13ms)
[23:34:10] [Server thread/INFO]: [PlayerStats] Enabled PlayerStats!
[23:34:10] [Server thread/INFO]: [BottledExp] Enabling BottledExp v3.2.1.0
[23:34:10] [Server thread/INFO]: [BottledExp] Version 3.2.1.0 has been enabled
[23:34:10] [Server thread/INFO]: [BottledExp] Using LuckPerms via Vault.
[23:34:10] [Server thread/INFO]: [OtherAnimalTeleport] Enabling OtherAnimalTeleport v2.2-b62
[23:34:10] [Server thread/INFO]: [NFCNotes] Enabling NFCNotes v2.4.0
[23:34:10] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.22.2
[23:34:10] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.22.2
[23:34:10] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.22.2
[23:34:10] [Server thread/INFO]: [SCore] Enabling SCore v3.9.94
[23:34:10] [Server thread/INFO]: ================ SCore ================
[23:34:10] [Server thread/INFO]: SCore Version of the server git-Paper-80 (MC: 1.20.1) !
[23:34:10] [Server thread/INFO]: SCore ExecutableItems hooked !  (5.9.94) Load After
[23:34:10] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (4.0.1) Load After
[23:34:10] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.3)  Load Before
[23:34:10] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.9-beta1+2249-223b80c) Load After
[23:34:10] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[23:34:10] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861) Load After
[23:34:10] [Server thread/INFO]: SCore CoreProtect hooked !  (21.3) Load After
[23:34:10] [Server thread/INFO]: SCore ProtocolLib hooked !
[23:34:10] [Server thread/INFO]: SCore Locale setup: EN
[23:34:10] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.17.3) Load After
[23:34:10] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.3) Load After
[23:34:10] [Server thread/INFO]: SCore Language of the editor setup on EN
[23:34:10] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[23:34:10] [Server thread/INFO]: SCore Connection to the db...
[23:34:10] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[23:34:10] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[23:34:10] [Server thread/INFO]: SCore Creating table Commands if not exists...
[23:34:10] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[23:34:10] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[23:34:10] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[23:34:10] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[23:34:10] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[23:34:10] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[23:34:10] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[23:34:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore [1.0.0]
[23:34:10] [Server thread/INFO]: ================ SCore ================
[23:34:10] [Server thread/INFO]: [Tweakin] Enabling Tweakin v6.0.0
[23:34:10] [Server thread/INFO]: [Tweakin] Running papermc..
[23:34:10] [Server thread/INFO]: [Tweakin] Running 1.20.1 minecraft version...
[23:34:10] [Server thread/INFO]: [Tweakin] [ACF] Enabled Asynchronous Tab Completion Support!
[23:34:10] [Server thread/INFO]: [Tweakin] Loading tweakin...
[23:34:10] [Server thread/INFO]: [Tweakin] Generating Head Map, this might take a while...
[23:34:10] [Server thread/INFO]: [Tweakin] Generated 176 mob heads..
[23:34:11] [Server thread/INFO]: [Tweakin] Using 0,16,0 as color for reach-around, due to other color channels being removed after 1.17
[23:34:11] [Server thread/INFO]: [Tweakin] Registered 11 tweaks successfully
[23:34:11] [Server thread/INFO]: [Tweakin] Registering permissions
[23:34:11] [Server thread/INFO]: [Tweakin] Registered 61 permissions
[23:34:11] [Server thread/INFO]: [Tweakin] Enabling bstats...
[23:34:11] [Server thread/INFO]: [Tweakin] Tweakin loaded successfully
[23:34:11] [Server thread/INFO]: [CustomDrops] Enabling CustomDrops v1.12.0
[23:34:11] [Server thread/INFO]: [Shop] Enabling Shop v1.8.4.4
[23:34:12] [Server thread/INFO]: [Shop] Vault dependency found. Using the Vault economy (Dollar(s)) for currency on the server.
[23:34:12] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.14
[23:34:12] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[23:34:12] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[23:34:12] [Server thread/INFO]: [PlayerVaults] Loaded! Took 274ms
[23:34:12] [Server thread/INFO]: [GSit] Enabling GSit v1.4.6
[23:34:12] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[23:34:12] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[23:34:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.4.6]
[23:34:12] [Server thread/INFO]: [GSit] New version available: 1.4.10!
[GSit] You are currently running version: 1.4.6!
[GSit] Download the latest version at:
[GSit] https://www.spigotmc.org/resources/62325
[23:34:12] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[23:34:12] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[23:34:12] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[23:34:12] [Server thread/INFO]: --------------------
[23:34:12] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[23:34:12] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[23:34:12] [Server thread/INFO]: --------------------
[23:34:12] [Server thread/INFO]: [FairyChat] Enabling FairyChat v0.3.7
[23:34:13] [Server thread/WARN]: [com.zaxxer.hikari.HikariConfig] FairyChat - idleTimeout has been set but has no effect because the pool is operating as a fixed size pool.
[23:34:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FairyChat - Starting...
[23:34:13] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] FairyChat - Added connection org.sqlite.jdbc4.JDBC4Connection@2e1c756b
[23:34:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FairyChat - Start completed.
[23:34:13] [Server thread/INFO]: [de.rexlmanu.fairychat.plugin.integration.IntegrationRegistry] Enabled integration PlaceholderAPI.
[23:34:13] [Server thread/INFO]: [de.rexlmanu.fairychat.plugin.integration.IntegrationRegistry] Enabled integration BuiltInPlaceholders.
[23:34:13] [Server thread/INFO]: [FairyChat] Checking for updates...
[23:34:13] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.3
[23:34:13] [ForkJoinPool.commonPool-worker-2/WARN]: [FairyChat] A new version of FairyChat is available. You can download it at https://github.com/rexlManu/FairyChat/releases/tag/v0.3.8
[23:34:13] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[23:34:13] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[23:34:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.3]
[23:34:13] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[23:34:13] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[23:34:13] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[23:34:14] [Server thread/INFO]: Preparing start region for dimension minecraft:flatland
[23:34:14] [Server thread/INFO]: Time elapsed: 837 ms
[23:34:15] [Server thread/INFO]: Preparing start region for dimension minecraft:lobby
[23:34:15] [Server thread/INFO]: Time elapsed: 135 ms
[23:34:15] [Server thread/INFO]: Preparing start region for dimension minecraft:kwadratowamasakra
[23:34:16] [Server thread/INFO]: Time elapsed: 191 ms
[23:34:16] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[23:34:16] [Server thread/INFO]: Time elapsed: 91 ms
[23:34:16] [Server thread/INFO]: Preparing start region for dimension minecraft:dolina2
[23:34:17] [Server thread/INFO]: Time elapsed: 361 ms
[23:34:17] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[23:34:17] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[23:34:17] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[23:34:17] [Server thread/INFO]: [AdvancedTeleport] Enabling AdvancedTeleport v5.6.12
[23:34:17] [Server thread/INFO]: [AdvancedTeleport] Advanced Teleport is now enabling...
[23:34:17] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.7.0
[23:34:17] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[23:34:18] [Server thread/INFO]: [ajLeaderboards] Loaded 0 boards
[23:34:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.7.0]
[23:34:18] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[23:34:18] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.7.0 by ajgeiss0702 enabled!
[23:34:18] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
[23:34:18] [Server thread/INFO]: [Multiverse-Portals] 5 - Portals(s) loaded
[23:34:18] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[23:34:18] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
[23:34:18] [Server thread/INFO]: [NoteBlockMusicPlayer] Enabling NoteBlockMusicPlayer v1.8.2
[23:34:18] [Server thread/ERROR]: [NoteBlockMusicPlayer] *** HolographicDisplays plugin is not installed or enabled. ***
[23:34:18] [Server thread/ERROR]: [NoteBlockMusicPlayer] *** Holograms feature is disabled. ***
[23:34:18] [Server thread/ERROR]: Song nyan_cat has not been found.
[23:34:18] [Server thread/ERROR]: Song nyan_cat has not been found.
[23:34:18] [Server thread/ERROR]: [NoteBlockMusicPlayer] Position radio 'test_radio' is disabled, because it has no songs in playlist.
[23:34:18] [Server thread/ERROR]: [NoteBlockMusicPlayer] Server radio 'server_radio' is disabled, because it has no songs in playlist.
[23:34:18] [Server thread/ERROR]: [NoteBlockMusicPlayer] World radio 'world_radio' is disabled, because it has no songs in playlist.
[23:34:18] [Server thread/INFO]: Plugin NoteBlockMusicPlayer (v1.8.2) is now enable.
[23:34:18] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9-beta1+2249-223b80c
[23:34:18] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[23:34:18] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[23:34:18] [Server thread/INFO]: [WorldGuard] (flatland) TNT ignition is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (flatland) Lighters are PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (flatland) Lava fire is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (flatland) Fire spread is UNRESTRICTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flatland'
[23:34:18] [Server thread/INFO]: [WorldGuard] (lobby) TNT ignition is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (lobby) Lighters are PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (lobby) Lava fire is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (lobby) Fire spread is UNRESTRICTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby'
[23:34:18] [Server thread/INFO]: [WorldGuard] (kwadratowamasakra) TNT ignition is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (kwadratowamasakra) Lighters are PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (kwadratowamasakra) Lava fire is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (kwadratowamasakra) Fire spread is UNRESTRICTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'kwadratowamasakra'
[23:34:18] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[23:34:18] [Server thread/INFO]: [WorldGuard] (dolina2) TNT ignition is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (dolina2) Lighters are PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (dolina2) Lava fire is PERMITTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] (dolina2) Fire spread is UNRESTRICTED.
[23:34:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'dolina2'
[23:34:18] [Server thread/INFO]: [WorldGuard] Loading region data...
[23:34:18] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.3-b523
[23:34:19] [Server thread/INFO]: [Multiverse-Inventories 4.2.3-b523] enabled.
[23:34:19] [Server thread/INFO]: [Multiverse-SignPortals] Enabling Multiverse-SignPortals v4.2.1
[23:34:19] [Server thread/INFO]: [Multiverse-SignPortals 4.2.1]  Enabled - By Rigby and fernferret
[23:34:19] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.2-b807
[23:34:19] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.2-b807]  Enabled - By Rigby and fernferret
[23:34:19] [Server thread/INFO]: [Skript] Enabling Skript v2.7.0-beta3
[23:34:19] [Server thread/INFO]: [Skript]     Missing lang enum constant for 'damage causes.KILL'
[23:34:19] [Server thread/INFO]: [Skript]     Missing lang enum constant for 'damage causes.WORLD_BORDER'
[23:34:19] [Server thread/INFO]: [Skript]     Missing lang enum constant for 'damage causes.KILL'
[23:34:19] [Server thread/INFO]: [Skript]     Missing lang enum constant for 'damage causes.WORLD_BORDER'
[23:34:19] [Server thread/INFO]: [Skript]     Missing lang enum constant for 'damage causes.KILL'
[23:34:19] [Server thread/INFO]: [Skript]     Missing lang enum constant for 'damage causes.WORLD_BORDER'
[23:34:19] [ForkJoinPool.commonPool-worker-3/INFO]: [Skript] You're currently running the latest stable version of Skript.
[23:34:22] [Server thread/INFO]: [Skript] Loaded 150750 aliases in 3475ms
[23:34:23] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[23:34:23] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.3
[23:34:23] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[23:34:23] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1-dev+13-a116e86
[23:34:23] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[23:34:23] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[23:34:23] [Server thread/INFO]: [Essentials] No kits found to migrate.
[23:34:23] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[23:34:23] [Server thread/INFO]: [Essentials] Using locale en_US
[23:34:23] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[23:34:23] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[23:34:23] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[23:34:23] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[23:34:23] [Server thread/INFO]: [LocketteX] Enabling LocketteX v1.8.0
[23:34:23] [Server thread/INFO]: ▆ ▆ ▆▆ ▆▆▆▆ ▆▆▆▆▆▆▆▆▆▆▆▆ ▆▆▆▆ ▆▆ ▆ ▆

[23:34:23] [Server thread/INFO]: ➤  LocketteX v1.8.0 Enabled ✔
[23:34:23] [Server thread/INFO]: ➤  Protect your valuables!
[23:34:23] [Server thread/INFO]: ➤  Made with ❤  by Valentina_pro

[23:34:23] [Server thread/INFO]: ▆ ▆ ▆▆ ▆▆▆▆ ▆▆▆▆▆▆▆▆▆▆▆▆ ▆▆▆▆ ▆▆ ▆ ▆
[23:34:23] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3127)
[23:34:23] [Server thread/INFO]: [Citizens] Loading external libraries
[23:34:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[23:34:24] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[23:34:24] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.5
[23:34:24] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[23:34:24] [Server thread/INFO]: [Shopkeepers] Loading the data of 2 shopkeepers ...
[23:34:24] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.1-dev+13-a116e86
[23:34:24] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[23:34:24] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1-dev+13-a116e86
[23:34:24] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[23:34:24] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.8.10
[23:34:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.8.10]
[23:34:24] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[23:34:24] [Server thread/INFO]: [PremiumVanish] Hooked into Essentials
[23:34:24] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[23:34:24] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.8.2
[23:34:24] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[23:34:24] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.1.0 translated by WolfyScript
[23:34:24] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[23:34:24] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[23:34:24] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[23:34:24] [Server thread/INFO]: [CustomCrafting]     Version      | v4.16.8.2
[23:34:24] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.16.12.0
[23:34:24] [Server thread/INFO]: [CustomCrafting]     Bukkit       | git-Paper-80 (MC: 1.20.1)(API: 1.20.1-R0.1-SNAPSHOT)
[23:34:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[23:34:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[23:34:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:34:24] [Server thread/INFO]: [CustomCrafting] 
[23:34:24] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[23:34:24] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Junye Zhou, PwassonDoDouce, Mithran, Teddy
[23:34:24] [Server thread/INFO]: [CustomCrafting] 霜神CreamGod, Invictus_Vulpes , JorshStark, lonemmart, ccp920, Luuk Musch
[23:34:24] [Server thread/INFO]: [CustomCrafting] Esteban, WizardOfWit
[23:34:24] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[23:34:24] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[23:34:24] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[23:34:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: customcrafting [4.16.8.2]
[23:34:24] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[23:34:24] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[23:34:24] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[23:34:25] [Server thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[23:34:25] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[23:34:25] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.21_BUILD376
[23:34:25] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[23:34:25] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_20_R1.
[23:34:25] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.022s)!
[23:34:25] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[23:34:25] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[23:34:25] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[23:34:25] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[23:34:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.21_BUILD376]
[23:34:25] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[23:34:26] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.1.0
[23:34:26] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[23:34:26] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[23:34:26] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[23:34:26] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[23:34:26] [Server thread/INFO]: [ItemEdit] placeholders:
[23:34:26] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[23:34:26] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[23:34:26] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[23:34:26] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[23:34:26] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[23:34:26] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[23:34:26] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[23:34:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[23:34:26] [Server thread/INFO]: [ItemEdit] # Enabled (took 54 ms)
[23:34:26] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.3.0
[23:34:26] [Server thread/INFO]: Hooked to PlaceholderAPI
[23:34:26] [Server thread/INFO]: Hooked to GSit
[23:34:26] [Server thread/INFO]: Hooked to Essentials
[23:34:26] [Server thread/INFO]: [sleep-most] Hooked to GSit!
[23:34:26] [Server thread/INFO]: [sleep-most] Hooked to PAPI!
[23:34:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: sleepmost [5.3.0]
[23:34:26] [Server thread/INFO]: [ItemTag] Enabling ItemTag v3.1.0
[23:34:26] [Server thread/INFO]: [ItemTag] Hooking into PlaceholderApi
[23:34:26] [Server thread/INFO]: [ItemTag] Hooked into PlaceHolderAPI:
[23:34:26] [Server thread/INFO]: [ItemTag] placeholders:
[23:34:26] [Server thread/INFO]: [ItemTag]   %itemtag_cooldown_<timeunit>_[cooldownid]%
[23:34:26] [Server thread/INFO]: [ItemTag]     shows how much cooldown has selected cooldownid for player
[23:34:26] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[23:34:26] [Server thread/INFO]: [ItemTag]     [cooldownid] for cooldown type, by default default
[23:34:26] [Server thread/INFO]: [ItemTag]     example: %itemtag_cooldown_s_anid%
[23:34:26] [Server thread/INFO]: [ItemTag]   %itemtag_handcooldown_<timeunit>%
[23:34:26] [Server thread/INFO]: [ItemTag]     shows how much cooldown has player on the item in his hand
[23:34:26] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[23:34:26] [Server thread/INFO]: [ItemTag]     example: %itemtag_handcooldown_s%
[23:34:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemtag [1.0]
[23:34:26] [Server thread/INFO]: [ItemTag] # Enabled (took 42 ms)
[23:34:26] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v5.9.94
[23:34:26] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[23:34:26] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
[23:34:26] [Server thread/INFO]: ExecutableItems HeadDatabase hooked !
[23:34:26] [Server thread/INFO]: ExecutableItems CustomCrafting hooked !
[23:34:26] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[23:34:26] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[23:34:28] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[23:34:28] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v4.0.1
[23:34:28] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[23:34:28] [Server thread/INFO]: ExecutableBlocks WorldEdit hooked !
[23:34:28] [Server thread/ERROR]: &cERROR, Couldn't load the Option value of option from config, value: NULL &7&o(Block: Free_Test) &6>> Options available: https://docs.ssomar.com/
[23:34:28] [Server thread/ERROR]: &cERROR, Couldn't load the Option value of option from config, value: NULL &7&o(Block: Free_Test2) &6>> Options available: https://docs.ssomar.com/
[23:34:28] [Server thread/ERROR]: &cERROR, Couldn't load the Option value of option from config, value: NULL &7&o(Block: Prem_Target) &6>> Options available: https://docs.ssomar.com/
[23:34:28] [Server thread/INFO]: ExecutableBlocks There are: 35 ExecutableBlock placed configs to load.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 0/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 3/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 6/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 9/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 12/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 15/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 18/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 21/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 24/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 27/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 30/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 33/35 blocks loaded.
[23:34:28] [Server thread/INFO]: ExecutableBlocks 35 ExecutableBlock(s)Placed loaded !
[23:34:28] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[23:34:28] [Server thread/ERROR]: Could not pass event PluginEnableEvent to WolfyUtilities v4.16.12.0
java.lang.NoClassDefFoundError: com/ssomar/executableblocks/executableblocks/manager/ExecutableBlocksManager
    at com.ssomar.score.api.executableblocks.ExecutableBlocksAPI.getExecutableBlocksManager(ExecutableBlocksAPI.java:18) ~[SCore-3.9.94.jar:?]
    at me.wolfyscript.utilities.compatibility.plugins.executableblocks.ExecutableBlocksImpl.init(ExecutableBlocksImpl.java:30) ~[wolfyutils-spigot-4.16.12.0.jar:?]
    at me.wolfyscript.utilities.compatibility.PluginsBukkit.createOrInitPluginIntegration(PluginsBukkit.java:115) ~[wolfyutils-spigot-4.16.12.0.jar:?]
    at me.wolfyscript.utilities.compatibility.PluginsBukkit.onPluginEnable(PluginsBukkit.java:158) ~[wolfyutils-spigot-4.16.12.0.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:git-Paper-80]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.1.jar:git-Paper-80]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:200) ~[paper-1.20.1.jar:git-Paper-80]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:435) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.ssomar.executableblocks.executableblocks.manager.ExecutableBlocksManager
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 21 more
[23:34:29] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[23:34:29] [Server thread/INFO]: Running delayed init tasks
[23:34:29] [Craft Scheduler Thread - 18 - Essentials/INFO]: [Essentials] Fetching version information...
[23:34:29] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:34:29] [Craft Scheduler Thread - 11 - BlockProt/INFO]: [BlockProt] BlockProt is up to date. (1.1.12)
[23:34:29] [Craft Scheduler Thread - 21 - AdvancedTeleport/INFO]: [AdvancedTeleport] Preparing random teleportation locations. If your server performance or memory suffers, please set `use-rapid-response` to false in the config.yml file.
[23:34:29] [Craft Scheduler Thread - 15 - CMILib/INFO]: New version of CMILib was detected. Please update it
[23:34:29] [Craft Scheduler Thread - 29 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[23:34:29] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loaded 17 holograms!
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     |  Standalone Mode |
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 14.2.12
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[23:34:29] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[23:34:29] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[23:34:29] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[23:34:29] [Craft Scheduler Thread - 21 - AdvancedTeleport/INFO]: [AdvancedTeleport] Plugin is up to date!
[23:34:29] [Craft Scheduler Thread - 18 - Essentials/WARN]: [Essentials] You're 24 EssentialsX dev build(s) out of date!
[23:34:29] [Craft Scheduler Thread - 18 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[23:34:29] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[23:34:29] [Netty Epoll Server IO #1/WARN]: [PremiumVanish] The spigot-sided serverlist features are not supported by ProtocolLib on your server. Please make sure you are using the latest ProtocolLib dev build. (Unable to construct new instance using public net.minecraft.network.protocol.status.ServerPing$ServerPingPlayerSample(int,int,java.util.List))

[23:34:29] [Server thread/INFO]: [Skript]     'portal.sk' is empty
[23:34:30] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[23:34:30] [Server thread/INFO]: [Skript] Loaded 8 scripts with a total of 11 structures in 0.61 seconds
[23:34:30] [Server thread/INFO]: [Skript] Finished loading.
[23:34:30] [Server thread/INFO]: [Multiverse-Core] World 'world_the_end' was unloaded from Multiverse.
[23:34:30] [Craft Scheduler Thread - 17 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 54454 heads!
[23:34:30] [Craft Scheduler Thread - 17 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[23:34:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[23:34:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[23:34:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[23:34:31] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 10 entity chunks, 0 poi chunks in world 'world_the_end' in 0.00s
[23:34:31] [Server thread/INFO]: [Multiverse-Core] World 'world_the_end' was unloaded from Bukkit.
[23:34:31] [Server thread/INFO]: CONSOLE: Unloaded world 'world_the_end'!
[23:34:31] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[23:34:31] [Server thread/WARN]: [SCore] Task #130 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #131 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #132 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #133 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #134 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #135 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #136 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #137 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #138 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #139 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #140 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #141 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #142 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #143 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #144 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #145 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #146 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #147 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #148 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #149 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #150 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #151 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #152 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #153 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #154 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #155 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #156 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #157 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #158 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #159 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #160 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #161 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #162 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #163 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [SCore] Task #164 for SCore v3.9.94 generated an exception
java.lang.NoSuchMethodError: 'com.ssomar.score.utils.placeholders.StringPlaceholder com.ssomar.score.utils.placeholders.StringPlaceholder.setOwnerPlcHldr(java.util.UUID)'
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlockPlaced.getPlaceholders(ExecutableBlockPlaced.java:194) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at com.ssomar.executableblocks.executableblocks.placedblocks.ExecutableBlocksPlacedManager$2.run(ExecutableBlocksPlacedManager.java:74) ~[ExecutableBlocks_Prem-4.0.1.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-80]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-80]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-80]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:34:31] [Server thread/WARN]: [OtherAnimalTeleport:2.2-b62] Unrecognized world name specified (world2)! Skipping...
[23:34:31] [Server thread/WARN]: [OtherAnimalTeleport:2.2-b62] Unrecognized world name specified (world2_nether)! Skipping...
[23:34:31] [Server thread/INFO]: [OtherAnimalTeleport:2.2-b62] AnimalTeleport has been enabled!
[23:34:31] [Server thread/INFO]: [Multiverse-Inventories] First run!
[23:34:31] [Server thread/INFO]: Protect ➤ [✔] Using WorldGuard as Claim Provider.
[23:34:31] [Server thread/INFO]: [Citizens] Loaded 2 NPCs.
[23:34:31] [Server thread/INFO]: [PremiumVanish] Your current version of PremiumVanish is outdated - New version: '2.8.11'; Currently: '2.8.10'
[23:34:31] [Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests.
[23:34:31] [Server thread/INFO]: [Skript] Loading variables...
[23:34:31] [Server thread/INFO]: [Skript] Loaded 9 variables in 0.0 seconds
[23:34:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: math [2.0.2]
[23:34:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[23:34:31] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion randomizer due to a missing plugin: Randomizer
[23:34:31] [Server thread/INFO]: 2 placeholder hook(s) registered!
[23:34:31] [Server thread/INFO]: Done (45.419s)! For help, type "help"
[23:34:31] [Server thread/INFO]: Timings Reset
[23:34:31] [Craft Scheduler Thread - 17 - Vault/INFO]: [Vault] Checking for Updates ... 
[23:34:31] [Craft Scheduler Thread - 16 - OtherAnimalTeleport/WARN]: [OtherAnimalTeleport:2.2-b62] Hooray! You're running the latest version!
[23:34:31] [Craft Scheduler Thread - 17 - Vault/INFO]: [Vault] No new version available
[23:34:31] [Server thread/INFO]: [BeautyQuests] 7 quests loaded (0.066s)!
[23:34:31] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 356
[23:34:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[23:34:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[23:34:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:34:39] [Craft Scheduler Thread - 25 - NoteBlockAPI/INFO]: [NoteBlockAPI] New update available!
[23:34:41] [User Authenticator #0/INFO]: UUID of player PolskiWitcher is ddb20141-0e7c-3d1d-97a5-654d3f11589b
[23:34:42] [Server thread/INFO]: PolskiWitcher[/          ip          ] logged in with entity id 1190 at ([flatland]-16.491534298107457, 111.0, -124.0927915294752)
[23:34:42] [Craft Scheduler Thread - 16 - ajLeaderboards/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:34:47] [Server thread/INFO]: PolskiWitcher lost connection: You entered the incorrect password.
[23:34:51] [User Authenticator #0/INFO]: UUID of player PolskiWitcher is ddb20141-0e7c-3d1d-97a5-654d3f11589b
[23:34:52] [Server thread/INFO]: PolskiWitcher[/          ip          ] logged in with entity id 1225 at ([flatland]-16.491534298107457, 111.0, -124.0927915294752)
[23:34:52] [Craft Scheduler Thread - 9 - ajLeaderboards/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:34:57] [Craft Scheduler Thread - 25 - nLogin/INFO]: [nLogin] The user PolskiWitcher has successfully logged in.
[23:35:00] [User Authenticator #0/INFO]: UUID of player Debux is c5846d1e-94fb-364e-9f95-e4ea3ccd4019
[23:35:00] [Server thread/INFO]: Debux[/          ip          ] logged in with entity id 1245 at ([world]-442.7246883339613, 62.073264324665075, -2000.0604222089887)
[23:35:00] [Craft Scheduler Thread - 7 - ajLeaderboards/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:35:06] [Craft Scheduler Thread - 16 - nLogin/INFO]: [nLogin] The user Debux has successfully logged in.
[23:35:39] [AJLBFETCH-2-6/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:35:39] [AJLBFETCH-2-5/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:36:32] [Server thread/INFO]: PolskiWitcher issued server command: /warp lobby-b
[23:36:39] [AJLBFETCH-2-9/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:36:39] [AJLBFETCH-2-10/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:36:41] [Server thread/INFO]: PolskiWitcher issued server command: /thru
[23:36:45] [Server thread/INFO]: [Essentials] Created a User for Herobrine (cfa71689-f287-27ca-a709-522d0193e9b1) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[23:37:34] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[23:37:34] [Server thread/INFO]: There are 1/1 out of maximum 30 players online.
[23:37:34] [Server thread/INFO]: Admins: [HIDDEN]PolskiWitcher
[23:37:34] [Server thread/INFO]: debuxlock: Debux
[23:37:39] [AJLBFETCH-2-12/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:37:39] [AJLBFETCH-2-13/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:38:39] [AJLBFETCH-2-16/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:38:39] [AJLBFETCH-2-15/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:39:39] [AJLBFETCH-2-20/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:39:39] [AJLBFETCH-2-19/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:40:37] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[23:40:37] [Server thread/INFO]: There are 1/1 out of maximum 30 players online.
[23:40:37] [Server thread/INFO]: Admins: [HIDDEN]PolskiWitcher
[23:40:37] [Server thread/INFO]: debuxlock: Debux
[23:40:39] [AJLBFETCH-2-24/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:40:39] [AJLBFETCH-2-23/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:41:39] [AJLBFETCH-2-28/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:41:39] [AJLBFETCH-2-27/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:42:39] [AJLBFETCH-2-32/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:42:39] [AJLBFETCH-2-31/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:43:39] [AJLBFETCH-2-36/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:43:39] [AJLBFETCH-2-35/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:43:39] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[23:43:39] [Server thread/INFO]: There are 1/1 out of maximum 30 players online.
[23:43:39] [Server thread/INFO]: Admins: [HIDDEN]PolskiWitcher
[23:43:39] [Server thread/INFO]: debuxlock: Debux
[23:44:39] [AJLBFETCH-2-39/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:44:39] [AJLBFETCH-2-40/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.
[23:45:39] [AJLBFETCH-2-43/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for Debux) Skipping.
[23:45:39] [AJLBFETCH-2-44/WARN]: [ajLeaderboards] Extra statistic_player_kills returned itself! (for PolskiWitcher) Skipping.