Paste #130156: latest log

Date: 2025/01/20 08:25:23 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[15:47:50] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.4+7-LTS; Eclipse Adoptium Temurin-21.0.4+7) on Linux 6.1.0-26-amd64 (amd64)
[15:47:50] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.4-2379-HEAD@1b5ab0c (2025-01-19T01:49:31Z) for Minecraft 1.21.4
[15:47:50] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[15:47:51] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/MMOItems-6.10.1-20250104.111158-2.jar'...
[15:47:52] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MMOItems-6.10.1-20250104.111158-2.jar' in 657ms.
[15:47:52] [ServerMain/INFO]: [PluginInitializerManager] Initialized 58 plugins
[15:47:52] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - BKCommonLib (1.21.4-v1-SNAPSHOT), EconomyShopGUI-Premium (5.20.1)
[15:47:52] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (56):
 - AdvancedAchievements (9.1), AdvancedCrates (4.1.7), AdvancedPets (2.15.8), AntiWorldDownloader (2.7.1.2), AuraMobs (2.1.0), AuraSkills (2.2.7), Aurora (2.1.1), AuroraLevels (1.6.1), AxAFKZone (1.4.2), BankPlus (6.3), CMI (9.7.9.2), CMILib (1.5.2.8), Chunky (1.4.10), Citizens (2.0.37-SNAPSHOT (build 3693)), CommandWhitelist (2.8.2), CreativeManager (1.35.13), DeluxeMenus (1.14.1-DEV-184), FastAsyncWorldEdit (2.12.4-SNAPSHOT-1011;7160792), FasterFurnaces (1.2.2), GSit (1.13.0), Geyser-Spigot (2.6.0-SNAPSHOT), GravesX (4.9.7.3), HeadBlocks (2.6.15), HeadDB (5.0.0-rc.15), InteractionVisualizer (1.18.13.0), InteractiveChat (4.2.16.0), ItsMyConfig (4.0.0), Jobs (5.2.4.5), Join-Leave (2.4.3), JukeBoxPlus (3.8.0), Lands (7.11.6), LoneLibs (1.0.63), LuckPerms (5.4.137), MMOItems (6.10.1-SNAPSHOT), My_Worlds (1.21-v1-SNAPSHOT), MythicLib (1.7.1-SNAPSHOT), Orebfuscator (5.5.2), Perks (2.6.2), PlaceholderAPI (2.11.6), PlayerAuctions (1.30.2), PlaytimeRewardsPlus (1.0.9), ProtocolLib (5.4.0-SNAPSHOT-738), PyroFishingPro (4.9.23), PyroLib (1.4.3), Quests (3.15.2-d09ef1d), T2C-Alias (1.5), T2CodeLib (16.6), TAB (5.0.3), UltraCosmetics (3.10.1-RELEASE), Vault (1.7.3-CMI), ViaBackwards (5.2.0), ViaVersion (5.0.5), VoidTeleport (2.4.5), WorldGuard (7.0.13-beta-2+5c4848b), floodgate (2.2.3-SNAPSHOT (b114-83fbd6e)), nightcore (2.7.3)
[15:47:56] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:47:59] [ServerMain/INFO]: Loaded 1370 recipes
[15:47:59] [ServerMain/INFO]: Loaded 1754 advancements
[15:47:59] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[15:47:59] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 259.5ms
[15:47:59] [Server thread/INFO]: Starting minecraft server version 1.21.4
[15:47:59] [Server thread/INFO]: Loading properties
[15:47:59] [Server thread/INFO]: This server is running Purpur version 1.21.4-2379-HEAD@1b5ab0c (2025-01-19T01:49:31Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[15:47:59] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[15:47:59] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:47:59] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:48:00] [Server thread/INFO]: [MoonriseCommon] Paper is using 2 worker threads, 1 I/O threads
[15:48:00] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[15:48:00] [Server thread/INFO]: Default game type: SURVIVAL
[15:48:00] [Server thread/INFO]: Generating keypair
[15:48:00] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25566
[15:48:00] [Server thread/INFO]: Using epoll channel type
[15:48:00] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[15:48:00] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /AMP/Minecraft/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loading 5 libraries... please wait
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/redisson/redisson/3.26.0/redisson-3.26.0.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/netty/netty-common/4.1.104.Final/netty-common-4.1.104.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/netty/netty-codec/4.1.104.Final/netty-codec-4.1.104.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/netty/netty-buffer/4.1.104.Final/netty-buffer-4.1.104.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/netty/netty-transport/4.1.104.Final/netty-transport-4.1.104.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/netty/netty-resolver/4.1.104.Final/netty-resolver-4.1.104.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/netty/netty-resolver-dns/4.1.104.Final/netty-resolver-dns-4.1.104.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/netty/netty-codec-dns/4.1.104.Final/netty-codec-dns-4.1.104.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/netty/netty-handler/4.1.104.Final/netty-handler-4.1.104.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/netty/netty-transport-native-unix-common/4.1.104.Final/netty-transport-native-unix-common-4.1.104.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/projectreactor/reactor-core/3.6.0/reactor-core-3.6.0.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/io/reactivex/rxjava3/rxjava/3.1.6/rxjava-3.1.6.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/jboss/marshalling/jboss-marshalling/2.0.11.Final/jboss-marshalling-2.0.11.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/jboss/marshalling/jboss-marshalling-river/2.0.11.Final/jboss-marshalling-river-2.0.11.Final.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/com/esotericsoftware/kryo/5.6.0/kryo-5.6.0.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/com/esotericsoftware/reflectasm/1.11.9/reflectasm-1.11.9.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/objenesis/objenesis/3.3/objenesis-3.3.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/com/esotericsoftware/minlog/1.3.1/minlog-1.3.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/com/fasterxml/jackson/core/jackson-annotations/2.16.1/jackson-annotations-2.16.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.16.1/jackson-dataformat-yaml-2.16.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/com/fasterxml/jackson/core/jackson-core/2.16.1/jackson-core-2.16.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/com/fasterxml/jackson/core/jackson-databind/2.16.1/jackson-databind-2.16.1.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/net/bytebuddy/byte-buddy/1.14.5/byte-buddy-1.14.5.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/jodd/jodd-bean/5.1.6/jodd-bean-5.1.6.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/jodd/jodd-core/5.1.6/jodd-core-5.1.6.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/slf4j/slf4j-jdk14/1.7.32/slf4j-jdk14-1.7.32.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /AMP/Minecraft/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDB] Loading 1 libraries... please wait
[15:48:01] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDB] Loaded library /AMP/Minecraft/libraries/org/xerial/sqlite-jdbc/3.47.0.0/sqlite-jdbc-3.47.0.0.jar
[15:48:02] [Server thread/INFO]: [JukeBoxPlus] Hooked into WorldGuard 7.0.13-beta-2+5c4848b
[15:48:02] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: JukeBoxPlus
[15:48:02] [Server thread/INFO]: [JukeBoxPlus] Hooked into Lands 7.11.6
[15:48:02] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[15:48:08] [Server thread/WARN]: Legacy plugin Perks v2.6.2 does not specify an api-version.
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /AMP/Minecraft/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[15:48:08] [Server thread/WARN]: Legacy plugin AntiWorldDownloader v2.7.1.2 does not specify an api-version.
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loading 2 libraries... please wait
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /AMP/Minecraft/libraries/com/github/cryptomorin/XSeries/12.1.0/XSeries-12.1.0.jar
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /AMP/Minecraft/libraries/com/zaxxer/HikariCP/6.2.1/HikariCP-6.2.1.jar
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /AMP/Minecraft/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /AMP/Minecraft/libraries/com/zaxxer/HikariCP/6.0.0/HikariCP-6.0.0.jar
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /AMP/Minecraft/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[15:48:08] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /AMP/Minecraft/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[15:48:08] [Server thread/INFO]: [nightcore] Server version detected as Purpur 1.21.4.
[15:48:08] [Server thread/INFO]: [nightcore] [Core Components] ENTITY_ID_GENERATOR: Loaded
[15:48:08] [Server thread/INFO]: [nightcore] [Core Components] ITEM_NBT_COMPRESSOR: Loaded
[15:48:09] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.0.5
[15:48:09] [Server thread/INFO]: [ViaVersion] ViaVersion 5.0.5 is now loaded. Registering protocol transformers and injecting...
[15:48:09] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[15:48:09] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[15:48:09] [Server thread/ERROR]: [ViaBackwards] ================================
[15:48:09] [Server thread/ERROR]: [ViaBackwards] YOUR VIAVERSION IS OUTDATED (you are running 5.0.5)
[15:48:09] [Server thread/ERROR]: [ViaBackwards] PLEASE USE VIAVERSION 5.2.0 OR NEWER
[15:48:09] [Server thread/ERROR]: [ViaBackwards] LINK: https://ci.viaversion.com/
[15:48:09] [Server thread/ERROR]: [ViaBackwards] VIABACKWARDS WILL NOW DISABLE
[15:48:09] [Server thread/ERROR]: [ViaBackwards] ================================
[15:48:09] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.137
[15:48:09] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[15:48:09] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-738
[15:48:09] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
[15:48:10] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.4-SNAPSHOT-1011;7160792
[15:48:11] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7b1a2366]
[15:48:11] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[15:48:11] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.21.4-v1-SNAPSHOT
[15:48:15] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13-beta-2+5c4848b
[15:48:15] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.21-v1-SNAPSHOT
[15:48:15] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.2.8
[15:48:15] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.7.1-SNAPSHOT
[15:48:15] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.7.1-20250109.001220-6.jar'
[15:48:15] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_21_R3
[15:48:15] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[15:48:15] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.7
[15:48:15] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[15:48:15] [Server thread/INFO]: [floodgate] Took 472ms to boot Floodgate
[15:48:15] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.9.2
[15:48:15] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.10.1-SNAPSHOT
[15:48:15] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.10.1-20250104.111158-2.jar'
[15:48:15] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[15:48:15] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:48:16] [Server thread/INFO]: [MMOItems Template Modifiers] Preloading template modifiers, please wait..
[15:48:16] [Server thread/INFO]: [MMOItems Item Templates] Preloading item templates, please wait..
[15:48:16] [Server thread/INFO]: [PyroLib] Loading server plugin PyroLib v1.4.3
[15:48:16] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.6.0-SNAPSHOT
[15:48:16] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[15:48:16] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[15:48:16] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3693)
[15:48:16] [Server thread/INFO]: [Lands] Loading server plugin Lands v7.11.6
[15:48:16] [Server thread/INFO]: [Lands] Using default item currency for economy. You can edit the currency item for each locale in the corresponding GUI language files. Strict mode: false
[15:48:17] [Server thread/INFO]: [Lands] Using SQLite: /AMP/Minecraft/plugins/Lands/Data
[15:48:17] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Starting...
[15:48:17] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Start completed.
[15:48:17] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[15:48:17] [Server thread/INFO]: [Lands] Setting up tables...
[15:48:17] [Server thread/INFO]: [Lands] Your SQL DBMS version: 3.47.0 (SQLite) Wiki: https://wiki.incredibleplugins.com/lands/configuration/database
[15:48:17] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[15:48:17] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[15:48:17] [Server thread/INFO]: [Aurora] Loading server plugin Aurora v2.1.1
[15:48:17] [Server thread/INFO]: [PyroFishingPro] Loading server plugin PyroFishingPro v4.9.23
[15:48:17] [Server thread/INFO]: [T2CodeLib] Loading server plugin T2CodeLib v16.6
[15:48:17] [Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.30.2
[15:48:17] [Server thread/INFO]: [GravesX] Loading server plugin GravesX v4.9.7.3
[15:48:17] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.16.0
[15:48:17] [Server thread/INFO]: [HeadDB] Loading server plugin HeadDB v5.0.0-rc.15
[15:48:17] [Server thread/INFO]: [AdvancedPets] Loading server plugin AdvancedPets v2.15.8
[15:48:17] [Server thread/INFO]: [AuraMobs] Loading server plugin AuraMobs v2.1.0
[15:48:17] [Server thread/INFO]: [AxAFKZone] Loading server plugin AxAFKZone v1.4.2
[15:48:17] [Server thread/INFO]: [AxAFKZone] Loading library commons-math3
[15:48:17] [Server thread/INFO]: [AxAFKZone] Loading library caffeine
[15:48:17] [Server thread/INFO]: [AxAFKZone] Loading library commons-math3
[15:48:17] [Server thread/INFO]: [FasterFurnaces] Loading server plugin FasterFurnaces v1.2.2
[15:48:17] [Server thread/INFO]: [FasterFurnaces] Using SQLite: /AMP/Minecraft/plugins/FasterFurnaces/Data
[15:48:17] [Server thread/INFO]: [FasterFurnaces] Successfully connected to SQL database.
[15:48:17] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-184
[15:48:17] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[15:48:17] [Server thread/INFO]: [InteractionVisualizer] Loading server plugin InteractionVisualizer v1.18.13.0
[15:48:17] [Server thread/INFO]: [JukeBoxPlus] Loading server plugin JukeBoxPlus v3.8.0
[15:48:17] [Server thread/INFO]: [ItsMyConfig] Loading server plugin ItsMyConfig v4.0.0
[15:48:17] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v4.1.7
[15:48:17] [Server thread/INFO]: [AuroraLevels] Loading server plugin AuroraLevels v1.6.1
[15:48:17] [Server thread/INFO]: AuroraLevels | Registered WorldGuard flag aurora-levels-min-level-entry
[15:48:17] [Server thread/INFO]: AuroraLevels | Registered WorldGuard flag aurora-levels-max-level-entry
[15:48:17] [Server thread/INFO]: [VoidTeleport] Loading server plugin VoidTeleport v2.4.5
[15:48:17] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.5
[15:48:17] [Server thread/INFO]: [Perks] Loading server plugin Perks v2.6.2
[15:48:17] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.5.2
[15:48:17] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15.2-d09ef1d
[15:48:17] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.13.0
[15:48:17] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.0
[15:48:17] [Server thread/INFO]: [Join-Leave] Loading server plugin Join-Leave v2.4.3
[15:48:17] [Server thread/INFO]: Join-Leave Essentials is not installed. Essentials functions Disabled.
[15:48:17] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.63
[15:48:17] [Server thread/INFO]: [BankPlus] Loading server plugin BankPlus v6.3
[15:48:17] [Server thread/INFO]: [CommandWhitelist] Loading server plugin CommandWhitelist v2.8.2
[15:48:17] [Server thread/INFO]: [PlaytimeRewardsPlus] Loading server plugin PlaytimeRewardsPlus v1.0.9
[15:48:17] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.20.1
[15:48:17] [Server thread/INFO]: [HeadBlocks] Loading server plugin HeadBlocks v2.6.15
[15:48:17] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.3
[15:48:17] [Server thread/INFO]: [AdvancedAchievements] Loading server plugin AdvancedAchievements v9.1
[15:48:17] [Server thread/INFO]: [AntiWorldDownloader] Loading server plugin AntiWorldDownloader v2.7.1.2
[15:48:17] [Server thread/INFO]: [CreativeManager] Loading server plugin CreativeManager v1.35.13
[15:48:17] [Server thread/INFO]: [T2Code-Alias] Loading server plugin T2C-Alias v1.5
[15:48:17] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.10
[15:48:17] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.10.1-RELEASE
[15:48:18] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.3
[15:48:18] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:48:18] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.137
[15:48:19] [Server thread/INFO]:         __    
[15:48:19] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.137
[15:48:19] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[15:48:19] [Server thread/INFO]: 
[15:48:19] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:48:19] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[15:48:20] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:48:20] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:48:20] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2764ms)
[15:48:20] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[15:48:20] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[15:48:20] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:48:21] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[15:48:21] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:48:21] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-738
[15:48:21] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.4-SNAPSHOT-1011;7160792
[15:48:21] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[15:48:21] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[15:48:21] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:48:21] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:48:21] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightFaweAdapter as the Bukkit adapter
[15:48:21] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.21.4-v1-SNAPSHOT
[15:48:21] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Purpur (Paper) (Spigot) (1.21.4-2379-1b5ab0c | mojmap) : (Unknown) (Minecraft 1.21.4)
[15:48:21] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[15:48:22] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[15:48:23] [Server thread/INFO]: [BKCommonLib] Package versioning is what brought BKCommonLib and CraftBukkit closer together!
[15:48:23] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.21.4-v1-SNAPSHOT (build: 1832) enabled! (1.362s)
[15:48:23] [Server thread/INFO]: [T2CodeLib] Enabling T2CodeLib v16.6
[15:48:23] [Server thread/INFO]: [T2CodeLib]   _______ ___   _____ 
[15:48:23] [Server thread/INFO]: [T2CodeLib]  |__   __|__ \ / ____|
[15:48:23] [Server thread/INFO]: [T2CodeLib]     | |     ) | |     
[15:48:23] [Server thread/INFO]: [T2CodeLib]     | |    / /| |     
[15:48:23] [Server thread/INFO]: [T2CodeLib]     | |   / /_| |____ 
[15:48:23] [Server thread/INFO]: [T2CodeLib]     |_|  |____|\_____|
[15:48:23] [Server thread/INFO]: [T2CodeLib]     ╔══════════════════════════
[15:48:23] [Server thread/INFO]: [T2CodeLib]     ║ Autor: JaTiTV
[15:48:23] [Server thread/INFO]: [T2CodeLib]     ║ Version: 16.6
[15:48:23] [Server thread/INFO]: [T2CodeLib]     ║ Spigot: https://www.spigotmc.org/resources/96388
[15:48:23] [Server thread/INFO]: [T2CodeLib]     ║ Discord: http://dc.t2code.net
[15:48:23] [Server thread/INFO]: [T2CodeLib]     ╚══════════════════════════
[15:48:23] [Server thread/INFO]: [T2CodeLib] Vault / Economy successfully connected! - 0ms
[15:48:23] [Server thread/WARN]: [T2CodeLib] 
[15:48:23] [Server thread/INFO]: [T2CodeLib] DEBUG-MSG: not_support
[15:48:23] [Server thread/WARN]: [T2CodeLib] 
[15:48:23] [Server thread/INFO]: [T2CodeLib] DEBUG-MSG: mcVersion: 1.21.4-2379-1b5ab0c (MC: 1.21.4)
[15:48:23] [Server thread/WARN]: [T2CodeLib] 
[15:48:23] [Server thread/INFO]: [T2CodeLib] DEBUG-MSG: bukkitVersion: 1.21.4-R0.1-SNAPSHOT
[15:48:23] [Server thread/WARN]: [T2CodeLib] 
[15:48:23] [Server thread/INFO]: [T2CodeLib] DEBUG-MSG: nms: not_support
[15:48:23] [Server thread/INFO]: [T2CodeLib] !!!!!!!!!!!!!!!!!!!!
[15:48:23] [Server thread/INFO]: [T2CodeLib]
[15:48:23] [Server thread/WARN]: [T2CodeLib] The 1.21.4-2379-1b5ab0c (MC: 1.21.4) is a very fresh / new version.
[15:48:23] [Server thread/WARN]: [T2CodeLib] The plugin may not yet be supported on this server! If there are any bugs in our plugins, please report them to us via our Discord: http://dc.t2code.net
[15:48:23] [Server thread/INFO]: [T2CodeLib]
[15:48:23] [Server thread/INFO]: [T2CodeLib] !!!!!!!!!!!!!!!!!!!!
[15:48:28] [Server thread/INFO]: [T2CodeLib] !!!!!!!!!!!!!!!!!!!!
[15:48:28] [Server thread/INFO]: [T2CodeLib]
[15:48:28] [Server thread/WARN]: [T2CodeLib] The 1.21 is a very fresh / new version. If there are any bugs in our plugins, please report them to us via our Discord: http://dc.t2code.net
[15:48:28] [Server thread/INFO]: [T2CodeLib]
[15:48:28] [Server thread/INFO]: [T2CodeLib] !!!!!!!!!!!!!!!!!!!!
[15:48:33] [Server thread/INFO]: [T2CodeLib] -------------------------------
[15:48:33] [Server thread/INFO]: [T2CodeLib] Server run on:
[15:48:33] [Server thread/INFO]: [T2CodeLib] mcVersion: 1.21.4-2379-1b5ab0c (MC: 1.21.4)
[15:48:33] [Server thread/INFO]: [T2CodeLib] bukkitVersion: 1.21.4-R0.1-SNAPSHOT
[15:48:33] [Server thread/INFO]: [T2CodeLib] nms: not_support
[15:48:33] [Server thread/INFO]: [T2CodeLib] -------------------------------
[15:48:33] [Server thread/INFO]: [T2CodeLib] Economy: CMIEconomy - 9.7.9.2 - 10140ms
[15:48:33] [Server thread/INFO]: [T2CodeLib] Permission plugin: LuckPerms - 5.4.137 - 10143ms
[15:48:33] [Server thread/INFO]: [T2CodeLib] PlaceholderAPI: connected - 10145ms
[15:48:33] [Server thread/INFO]: [T2CodeLib] Kyori MiniMessage Support: load - 10146ms
[15:48:33] [Server thread/INFO]: [T2CodeLib] config.yml were successfully created / updated. - 2ms
[15:48:33] [Server thread/INFO]: [T2CodeLib] Language files were successfully created / updated. - 2ms
[15:48:33] [Server thread/INFO]: [T2CodeLib] Language successfully selected to: german - 0ms
[15:48:33] [Server thread/INFO]: [T2CodeLib] -------------------------------
[15:48:33] [Server thread/INFO]: [T2CodeLib] Plugin loaded successfully. - 10170ms
[15:48:33] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.63
[15:48:33] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.3
[15:48:33] [Server thread/WARN]: [nightcore] Locale file for 'de' language not found. Using default 'en' locale.
[15:48:33] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[15:48:33] [Server thread/INFO]: [nightcore] Found economy provider: CMIEconomy
[15:48:33] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[15:48:33] [Server thread/INFO]: [nightcore] [DEBUG] Inject post-loading code...
[15:48:33] [Server thread/INFO]: [nightcore] Plugin loaded in 83 ms!
[15:48:33] [Server thread/INFO]: Preparing level "world"
[15:48:34] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:48:34] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:34] [Server thread/INFO]: Preparing spawn area: 2%
[15:48:34] [Server thread/INFO]: Time elapsed: 527 ms
[15:48:35] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[15:48:35] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:35] [Server thread/INFO]: Time elapsed: 94 ms
[15:48:35] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:48:35] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:35] [Server thread/INFO]: Time elapsed: 58 ms
[15:48:35] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.0.5
[15:48:35] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: Unknown (769) (769)
[15:48:35] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[15:48:35] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[15:48:35] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[15:48:35] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://viaversion.com/setup
[15:48:35] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[15:48:35] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[15:48:35] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[15:48:35] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[15:48:35] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13-beta-2+5c4848b
[15:48:35] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[15:48:35] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[15:48:35] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[15:48:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[15:48:35] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:48:35] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.21-v1-SNAPSHOT
[15:48:35] [Server thread/INFO]: [My_Worlds] Loading world 'Kleinstadt'
[15:48:36] [Server thread/INFO]: Preparing start region for dimension minecraft:kleinstadt
[15:48:36] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:36] [Server thread/INFO]: Time elapsed: 290 ms
[15:48:36] [Server thread/INFO]: [WorldGuard] (Kleinstadt) TNT ignition is PERMITTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] (Kleinstadt) Lighters are PERMITTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] (Kleinstadt) Lava fire is PERMITTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] (Kleinstadt) Fire spread is UNRESTRICTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Kleinstadt'
[15:48:36] [Server thread/INFO]: [My_Worlds] Loading world 'spawn'
[15:48:36] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[15:48:36] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:36] [Server thread/INFO]: Time elapsed: 85 ms
[15:48:36] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[15:48:36] [Server thread/INFO]: [My_Worlds] Loading world 'Plot'
[15:48:36] [Server thread/INFO]: Preparing start region for dimension minecraft:plot
[15:48:36] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:36] [Server thread/INFO]: Time elapsed: 117 ms
[15:48:36] [Server thread/INFO]: [WorldGuard] (Plot) TNT ignition is PERMITTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] (Plot) Lighters are PERMITTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] (Plot) Lava fire is PERMITTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] (Plot) Fire spread is UNRESTRICTED.
[15:48:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Plot'
[15:48:36] [Server thread/INFO]: [My_Worlds] Loading world 'Farmwelt'
[15:48:37] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt
[15:48:37] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:37] [Server thread/INFO]: Time elapsed: 84 ms
[15:48:37] [Server thread/INFO]: [WorldGuard] (Farmwelt) TNT ignition is PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lighters are PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lava fire is PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (Farmwelt) Fire spread is UNRESTRICTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farmwelt'
[15:48:37] [Server thread/INFO]: [My_Worlds] Loading world 'skyspawn2'
[15:48:37] [Server thread/INFO]: Preparing start region for dimension minecraft:skyspawn2
[15:48:37] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:37] [Server thread/INFO]: Time elapsed: 104 ms
[15:48:37] [Server thread/INFO]: [WorldGuard] (skyspawn2) TNT ignition is PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (skyspawn2) Lighters are PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (skyspawn2) Lava fire is PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (skyspawn2) Fire spread is UNRESTRICTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'skyspawn2'
[15:48:37] [Server thread/INFO]: [My_Worlds] Loading world 'Event'
[15:48:37] [Server thread/INFO]: Preparing start region for dimension minecraft:event
[15:48:37] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:37] [Server thread/INFO]: Time elapsed: 145 ms
[15:48:37] [Server thread/INFO]: [WorldGuard] (Event) TNT ignition is PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (Event) Lighters are PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (Event) Lava fire is PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (Event) Fire spread is UNRESTRICTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Event'
[15:48:37] [Server thread/INFO]: [My_Worlds] Loading world 'Sichere Zone'
[15:48:37] [Server thread/INFO]: Preparing start region for dimension minecraft:sichere_zone
[15:48:37] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:37] [Server thread/INFO]: Time elapsed: 78 ms
[15:48:37] [Server thread/INFO]: [WorldGuard] (Sichere Zone) TNT ignition is PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (Sichere Zone) Lighters are PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (Sichere Zone) Lava fire is PERMITTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] (Sichere Zone) Fire spread is UNRESTRICTED.
[15:48:37] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Sichere Zone'
[15:48:37] [Server thread/INFO]: [My_Worlds] Loading world 'Spawn_Barto'
[15:48:38] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn_barto
[15:48:38] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:38] [Server thread/INFO]: Time elapsed: 90 ms
[15:48:38] [Server thread/INFO]: [WorldGuard] (Spawn_Barto) TNT ignition is PERMITTED.
[15:48:38] [Server thread/INFO]: [WorldGuard] (Spawn_Barto) Lighters are PERMITTED.
[15:48:38] [Server thread/INFO]: [WorldGuard] (Spawn_Barto) Lava fire is PERMITTED.
[15:48:38] [Server thread/INFO]: [WorldGuard] (Spawn_Barto) Fire spread is UNRESTRICTED.
[15:48:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn_Barto'
[15:48:38] [Server thread/INFO]: [My_Worlds] Loading world 'Fernelande'
[15:48:38] [Server thread/INFO]: Preparing start region for dimension minecraft:fernelande
[15:48:38] [Server thread/INFO]: Preparing spawn area: 0%
[15:48:38] [Server thread/INFO]: Time elapsed: 93 ms
[15:48:38] [Server thread/INFO]: [WorldGuard] (Fernelande) TNT ignition is PERMITTED.
[15:48:38] [Server thread/INFO]: [WorldGuard] (Fernelande) Lighters are PERMITTED.
[15:48:38] [Server thread/INFO]: [WorldGuard] (Fernelande) Lava fire is PERMITTED.
[15:48:38] [Server thread/INFO]: [WorldGuard] (Fernelande) Fire spread is UNRESTRICTED.
[15:48:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Fernelande'
[15:48:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.21-v1-SNAPSHOT]
[15:48:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.21-v1-SNAPSHOT]
[15:48:38] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[15:48:38] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.21-v1-SNAPSHOT (build: 306) enabled! (2.7s)
[15:48:38] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.2.8
[15:48:39] [Server thread/INFO]: Server version: v1_21_R3 - 1.21.4 - purpur  1.21.4-2379-1b5ab0c (MC: 1.21.4)
[15:48:39] [Server thread/INFO]: CMI hooked.
[15:48:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.2.8]
[15:48:39] [Server thread/INFO]: PlaceholderAPI hooked.
[15:48:39] [Server thread/INFO]: Updated (EN) language file. Took 31ms
[15:48:39] [Server thread/INFO]: Updated (DE) language file. Took 15ms
[15:48:39] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.7.1-SNAPSHOT
[15:48:39] [Server thread/INFO]: [MythicLib] Hooked onto TextDisplays (holograms)
[15:48:39] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[15:48:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.7.1-SNAPSHOT]
[15:48:39] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[15:48:39] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.7
[15:48:40] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[15:48:40] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[15:48:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.7]
[15:48:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.7]
[15:48:40] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[15:48:40] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[15:48:40] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[15:48:40] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[15:48:40] [Server thread/INFO]: [AuraSkills] Loaded 151 config options in 32 ms
[15:48:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[15:48:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[15:48:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[15:48:40] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[15:48:40] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[15:48:41] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[15:48:41] [Server thread/INFO]: [CMI] Enabling CMI v9.7.9.2
[15:48:41] [Server thread/INFO]: _______________________________________________________
[15:48:41] [Server thread/INFO]:  
[15:48:41] [Server thread/INFO]:  ██████╗███╗   ███╗██╗
[15:48:41] [Server thread/INFO]: ██╔════╝████╗ ████║██║
[15:48:41] [Server thread/INFO]: ██║     ██╔████╔██║██║
[15:48:41] [Server thread/INFO]: ██║     ██║╚██╔╝██║██║
[15:48:41] [Server thread/INFO]: ╚██████╗██║ ╚═╝ ██║██║
[15:48:41] [Server thread/INFO]:  ╚═════╝╚═╝     ╚═╝╚═╝
[15:48:41] [Server thread/INFO]: _______________________________________________________
[15:48:41] [Server thread/INFO]: Integrating PaperSpigot async methods
[15:48:41] [Server thread/INFO]: Vault found. (Loaded: true)
[15:48:41] [Server thread/INFO]: Citizens found. (Loaded: false)
[15:48:41] [Server thread/INFO]: AuraSkills found. (Loaded: true)
[15:48:41] [Server thread/INFO]: Loaded (67) 65 Enabled and 2 Disabled modules into memory. Took 61ms
[15:48:41] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[15:48:41] [Server thread/INFO]: Initialized Cipher256 AES
[15:48:42] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 32ms
[15:48:42] [Server thread/INFO]: Loaded (1) custom text's into memory. Took 2ms
[15:48:42] [Server thread/INFO]: Random teleport location is out of minimal (-50.0 -> -1000.0) world border X coordinate bounds for world world. Please update values.
[15:48:42] [Server thread/INFO]: Random teleport location is out of maximal (50.0 -> 1000.0) world border X coordinate bounds for world world. Please update values.
[15:48:42] [Server thread/INFO]: Random teleport location is out of minimal (-50.0 -> -1000.0) world border Z coordinate bounds for world world. Please update values.
[15:48:42] [Server thread/INFO]: Random teleport location is out of maximal (50.0 -> 1000.0) world border Z coordinate bounds for world world. Please update values.
[15:48:42] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Canabium) name
[15:48:42] [Server thread/INFO]: Random teleport location is out of minimal (194.46685791015625 -> -1000.0) world border X coordinate bounds for Kleinstadt world. Please update values.
[15:48:42] [Server thread/INFO]: Random teleport location is out of maximal (994.4668579101562 -> 1000.0) world border X coordinate bounds for Kleinstadt world. Please update values.
[15:48:42] [Server thread/INFO]: Random teleport location is out of minimal (-361.4987144470215 -> -1000.0) world border Z coordinate bounds for Kleinstadt world. Please update values.
[15:48:42] [Server thread/INFO]: Random teleport location is out of maximal (438.5012855529785 -> 1000.0) world border Z coordinate bounds for Kleinstadt world. Please update values.
[15:48:42] [Server thread/INFO]: 3.47.0 data base type detected
[15:48:42] [Server thread/INFO]: Loaded (-) SqLite into memory. Took 126ms
[15:48:42] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: CMIEconomy
[15:48:42] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 1ms
[15:48:42] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[15:48:42] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 0ms
[15:48:42] [Server thread/INFO]: Loaded (147) custom mob heads into memory. Took 10ms
[15:48:42] [Server thread/INFO]: Loaded (4) warmups into memory. Took 1ms
[15:48:42] [Server thread/INFO]: Initializing BungeeCord
[15:48:42] [Server thread/INFO]: Loaded (5) kits into memory. Took 16ms
[15:48:42] [Server thread/INFO]: Loaded (7) ranks into memory. Took 12ms
[15:48:42] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 2ms
[15:48:42] [Server thread/INFO]: Loaded (91) player data into memory. Took 36ms
[15:48:42] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 0ms
[15:48:42] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[15:48:42] [Server thread/INFO]: Loaded (2) custom alias into memory. Took 1ms
[15:48:43] [Server thread/INFO]: Loaded (-) Registered events into memory. Took 100ms
[15:48:43] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 2ms
[15:48:43] [Server thread/INFO]: Loaded (EN) language file into memory. Took 92ms
[15:48:43] [Server thread/INFO]: Loaded (DE) language file into memory. Took 88ms
[15:48:43] [Server thread/INFO]: Loaded (245) worth values into memory. Took 48ms
[15:48:43] [Server thread/INFO]: Loaded (8) warps into memory. Took 6ms
[15:48:43] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[15:48:43] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[15:48:43] [Server thread/INFO]: Jobs found. (Loaded: false)
[15:48:43] [Server thread/INFO]: Loaded (4) schedules into memory. Took 6ms
[15:48:43] [Server thread/INFO]: Loaded (16) holograms into memory. Took 28ms
[15:48:43] [Server thread/INFO]: Loaded (2) skin cache entries into memory. Took 1ms
[15:48:43] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 0ms
[15:48:43] [Server thread/INFO]: Version 9.7.9.2 has been enabled
[15:48:43] [Server thread/INFO]: _______________________________________________________
[15:48:43] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[15:48:43] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.10.1-SNAPSHOT
[15:48:43] [Server thread/INFO]: [MMOItems] Hooked onto AuraSkills
[15:48:43] [Server thread/INFO]: [MMOItems LONG_SWORD DUAL_LONGSWORD] Could not load base item data 'item-particles': Particle is missing type or selected particle.
[15:48:43] [Server thread/INFO]: [MMOItems THRUSTING_SWORD SKILLED_SWORD] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[15:48:43] [Server thread/INFO]: [MMOItems SWORD YANISDARK_SWORD] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[15:48:43] [Server thread/INFO]: [MMOItems SWORD SCHWERTKAMPF] Could not load base item data 'ability': Missing ability type
[15:48:43] [Server thread/INFO]: [MMOItems SWORD SCHWERTKAMPF] Could not load base item data 'item-particles': Particle is missing type or selected particle.
[15:48:43] [Server thread/INFO]: [MMOItems OFF_CATALYST QUICKCASTER_CATALYST] Could not load base item data 'mana-regeneration': Could not find stat with ID 'MANA_REGENERATION'
[15:48:43] [Server thread/INFO]: [MMOItems OFF_CATALYST CHARM_OF_LEVITATION] Could not load base item data 'max-stellium': Could not find stat with ID 'MAX_STELLIUM'
[15:48:43] [Server thread/INFO]: [MMOItems TOOL DIAMANTSPITZHACKE1] Could not load base item data 'required-strength': Could not find stat with ID 'REQUIRED_STRENGTH'
[15:48:43] [Server thread/INFO]: [MMOItems TOOL SPITZHACKE2] Could not load base item data 'required-strength': Could not find stat with ID 'REQUIRED_STRENGTH'
[15:48:43] [Server thread/INFO]: [MMOItems KATANA MASTER_KATANA] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[15:48:43] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[15:48:43] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience-enchanting': Could not find stat with ID 'ADDITIONAL_EXPERIENCE_ENCHANTING'
[15:48:43] [Server thread/INFO]: [MMOItems HAMMER THOR_HAMMER] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[15:48:43] [Server thread/INFO]: [MMOItems Template Modifiers] Loading template modifiers, please wait..
[15:48:43] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[15:48:43] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[15:48:43] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[15:48:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.10.1-SNAPSHOT]
[15:48:43] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[15:48:43] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[15:48:44] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.4.3
[15:48:44] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.6.0-SNAPSHOT
[15:48:44] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3693)
[15:48:44] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[15:48:44] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[15:48:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[15:48:44] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[15:48:44] [Server thread/INFO]: [Lands] Enabling Lands v7.11.6
[15:48:44] [Server thread/INFO]: [Lands]  _                        _      
[15:48:44] [Server thread/INFO]: [Lands] | |                      | |     
[15:48:44] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[15:48:44] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[15:48:44] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[15:48:44] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[15:48:44] [Server thread/INFO]: [Lands] Version: 7.11.6 Previous: 7.11.6
[15:48:44] [Server thread/INFO]: [Lands] Server: 1.21.4 running Paper
[15:48:44] [Server thread/INFO]: [Lands] Licensed to: 369190
[15:48:44] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[15:48:44] [Server thread/INFO]: [Lands] Discord: https://discord.incredibleplugins.com
[15:48:44] [Server thread/INFO]: [Lands] Wiki: https://wiki.incredibleplugins.com/lands
[15:48:44] [Server thread/INFO]: [Lands]  
[15:48:44] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated CMI as hologram manager.
[15:48:44] [Server thread/INFO]: [Lands] [Integrations] Added support for the vanish feature of the plugin CMI.
[15:48:44] [Server thread/INFO]: [Lands] Performing initial data load.
[15:48:45] [Server thread/INFO]: [Lands] There are currently 5 created land(s).
[15:48:45] [Server thread/INFO]: [Lands] Initial data load took 87 ms.
[15:48:45] [Server thread/INFO]: [Aurora] Enabling Aurora v2.1.1
[15:48:45] [Server thread/INFO]: [Aurora] [ACF] Enabled Asynchronous Tab Completion Support!
[15:48:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aurora [1.0]
[15:48:45] [Server thread/INFO]: Aurora | Loaded 2 economy providers. Vault, CMI
[15:48:45] [Server thread/INFO]: Aurora | Using CMI as the default economy provider.
[15:48:45] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Starting...
[15:48:45] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.pool.HikariPool] aurora-leaderboard-pool - Added connection org.sqlite.jdbc4.JDBC4Connection@487496fb
[15:48:45] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Start completed.
[15:48:45] [Server thread/INFO]: [WorldGuard] Registering session handler gg.auroramc.aurora.expansions.worldguard.WorldGuardEntryAndLeaveHandler
[15:48:45] [Server thread/INFO]: [PyroFishingPro] Enabling PyroFishingPro v4.9.23
[15:48:45] [Server thread/INFO]: ==================================================================================
[15:48:45] [Server thread/INFO]: 
[15:48:45] [Server thread/INFO]: __________                     ___________.__       .__    .__                
[15:48:45] [Server thread/INFO]: \______   \___.__._______  ____\_   _____/|__| _____|  |__ |__| ____    ____  
[15:48:45] [Server thread/INFO]:  |     ___<   |  |\_  __ \/  _ \|    __)  |  |/  ___/  |  \|  |/    \  / ___\ 
[15:48:45] [Server thread/INFO]:  |    |    \___  | |  | \(  <_> )     \   |  |\___ \|   Y  \  |   |  \/ /_/  >
[15:48:45] [Server thread/INFO]:  |____|    / ____| |__|   \____/\___  /   |__/____  >___|  /__|___|  /\___  / 
[15:48:45] [Server thread/INFO]:            \/                       \/            \/     \/        \//_____/  
[15:48:45] [Server thread/INFO]: 
[15:48:45] [Server thread/INFO]: - Loading v4.9.23...
[15:48:45] [Server thread/INFO]: 
[15:48:46] [Server thread/INFO]: - Registered to: 369190
[15:48:46] [Server thread/INFO]: - Successfully hooked into WorldGuard.
[15:48:46] [Server thread/INFO]: - Loaded (126) Custom Fish successfully.
[15:48:46] [Server thread/INFO]: - Loaded (0) fishing baits.
[15:48:46] [Server thread/INFO]: - Successfully hooked into PlaceholderAPI.
[15:48:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PyroFishingPro [4.9.23]
[15:48:46] [Server thread/INFO]: 
[15:48:46] [Server thread/INFO]: ==================================================================================
[15:48:46] [Server thread/INFO]: 
[15:48:46] [Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.30.2
[15:48:46] [Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[15:48:46] [pool-24-thread-1/WARN]: [floodgate] 
**********************************
* You specified an empty prefix in your Floodgate config for Bedrock players!
* Should a Java player join and a Bedrock player join with the same username, unwanted results and conflicts will happen!
* We strongly recommend using . as the prefix, but other alternatives that will not conflict include: +, - and *
**********************************
[15:48:47] [Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Economy plugin found! (CMIEconomy)
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Found Item Currency integrating support...
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Found XP Currency integrating support...
[15:48:49] [Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[15:48:49] [Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[15:48:49] [Server thread/INFO]: [GravesX] Enabling GravesX v4.9.7.3
[15:48:49] [Server thread/INFO]: [GravesX] Loading Libraries for GravesX
[15:48:49] [Server thread/INFO]: [GravesX] Loading library com.zaxxer.HikariCP version 6.0.0.
[15:48:49] [Server thread/INFO]: [GravesX] Loading library com.zaxxer:HikariCP:6.0.0
[15:48:49] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[15:48:49] [Server thread/INFO]: [GravesX] Loading library org.javassist:javassist:3.29.2-GA
[15:48:49] [Server thread/INFO]: [GravesX] Loading library io.micrometer:micrometer-core:1.5.10
[15:48:49] [Server thread/INFO]: [GravesX] Loading library org.hdrhistogram:HdrHistogram:2.1.12
[15:48:49] [Server thread/INFO]: [GravesX] Loading library org.latencyutils:LatencyUtils:2.0.3
[15:48:49] [Server thread/INFO]: [GravesX] Loaded library com.zaxxer.HikariCP version 6.0.0 and shaded successfully.
[15:48:49] [Server thread/INFO]: [GravesX] Loading library org.xerial.sqlite-jdbc version 3.47.0.0.
[15:48:49] [Server thread/INFO]: [GravesX] Loading library org.xerial:sqlite-jdbc:3.47.0.0
[15:48:49] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[15:48:49] [Server thread/INFO]: [GravesX] Loaded library org.xerial.sqlite-jdbc version 3.47.0.0 successfully.
[15:48:49] [Server thread/INFO]: [GravesX] Loading library com.github.oshi.oshi-core version 6.6.5.
[15:48:49] [Server thread/INFO]: [GravesX] Loading library com.github.oshi:oshi-core:6.6.5
[15:48:49] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna:5.15.0
[15:48:49] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna-platform:5.15.0
[15:48:49] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:2.0.16
[15:48:49] [Server thread/INFO]: [GravesX] Loaded library com.github.oshi.oshi-core version 6.6.5 successfully.
[15:48:49] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-api version 4.17.0.
[15:48:49] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[15:48:49] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[15:48:49] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[15:48:49] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[15:48:49] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[15:48:49] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-api version 4.17.0 and shaded successfully.
[15:48:49] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-minimessage version 4.17.0.
[15:48:49] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-minimessage:4.17.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[15:48:50] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-minimessage version 4.17.0 and shaded successfully.
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-serializer-gson version 4.17.0.
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.17.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-json:4.17.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:option:1.0.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.google.code.gson:gson:2.8.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.google.auto.service:auto-service-annotations:1.1.1
[15:48:50] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-serializer-gson version 4.17.0 and shaded successfully.
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-platform-bukkit version 4.3.3.
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-bukkit:4.3.3
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-api:4.3.3
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.13.1
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.13.1
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-bungeecord:4.3.3
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-legacy:4.13.1
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-nbt:4.13.1
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.0.1
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.13.1
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson-legacy-impl:4.13.1
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-facet:4.3.3
[15:48:50] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-viaversion:4.3.3
[15:48:50] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-platform-bukkit version 4.3.3 and shaded successfully.
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.github.puregero.multilib version 1.2.4.
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib:1.2.4
[15:48:50] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:22.0.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-common:1.2.4
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-bukkit:1.2.4
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-multipaper:1.2.4
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-common:1.2.4
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-bukkit:1.2.4
[15:48:50] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-paper:1.2.4
[15:48:50] [Server thread/INFO]: [GravesX] Loaded library com.github.puregero.multilib version 1.2.4 and shaded successfully.
[15:48:50] [Server thread/INFO]: [GravesX] Loading library org.apache.commons.commons-text version 1.12.0.
[15:48:50] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-text:1.12.0
[15:48:50] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-lang3:3.14.0
[15:48:50] [Server thread/INFO]: [GravesX] Loaded library org.apache.commons.commons-text version 1.12.0 and shaded successfully.
[15:48:50] [Server thread/INFO]: [GravesX] Finished Loading Libraries for GravesX.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-CMI. Economy is enabled.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-CMI's permissions provider.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into ProtocolLib 5.4.0-SNAPSHOT-738.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into FastAsyncWorldEdit 2.12.4-SNAPSHOT-1011;7160792.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into MiniMessage.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into Minedown Adventure.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into Citizens 2.0.37-SNAPSHOT (build 3693).
[15:48:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gravesx [4.9.7.3]
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into PlaceholderAPI 2.11.6.
[15:48:50] [Server thread/WARN]: [GravesX] Compatibility: World "world" has keepInventory set to true, Graves will not be created here unless a player has the "graves.keepinventory.bypass" permission.
[15:48:50] [Server thread/WARN]: [GravesX] Compatibility: World "Kleinstadt" has keepInventory set to true, Graves will not be created here unless a player has the "graves.keepinventory.bypass" permission.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into LuckPerms 5.4.137.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into Geyser-Spigot 2.6.0-SNAPSHOT.
[15:48:50] [Server thread/INFO]: [GravesX] Integration: Hooked into floodgate 2.2.3-SNAPSHOT (b114-83fbd6e).
[15:48:50] [Server thread/WARN]: [GravesX] Database Option SQLITE is set for removal in a future release. Use H2 Database option instead for better reliance.
[15:48:50] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves SQLite - Starting...
[15:48:50] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.pool.HikariPool] Graves SQLite - Added connection org.sqlite.jdbc4.JDBC4Connection@2075147a
[15:48:50] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves SQLite - Start completed.
[15:48:51] [Server thread/INFO]: [GravesX] Metrics has been enabled. All metrics will be sent to https://bstats.org/plugin/bukkit/Graves/12849 and https://bstats.org/plugin/bukkit/GravesX/23069.
[15:48:51] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.16.0
[15:48:51] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[15:48:51] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into CMI!
[15:48:51] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[15:48:51] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[15:48:51] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Floodgate!
[15:48:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.16.0]
[15:48:51] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[15:48:51] [Server thread/INFO]: [HeadDB] Enabling HeadDB v5.0.0-rc.15
[15:48:51] [Server thread/INFO]: [tsp.headdb.HeadDB] Loaded 1 languages!
[15:48:51] [Server thread/INFO]: [AdvancedPets] Enabling AdvancedPets v2.15.8
[15:48:52] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: AdvancedPets
[15:48:52] [Server thread/INFO]: [AdvancedPets] Loaded 24,661 custom heads
[15:48:52] [Server thread/INFO]: [AdvancedPets] Bear.amob model wasn't loaded - it requires ModelEngine: https://mobs.advancedplugins.net/supported-plugins/modelengine 
[15:48:52] [Server thread/INFO]: [AdvancedPets] Reindeer.amob model wasn't loaded - it requires ModelEngine: https://mobs.advancedplugins.net/supported-plugins/modelengine 
[15:48:52] [Server thread/INFO]: [AdvancedPets] Mammoth.amob model wasn't loaded - it requires ModelEngine: https://mobs.advancedplugins.net/supported-plugins/modelengine 
[15:48:52] [Server thread/INFO]: [AdvancedPets] Loaded 15 mob configurations.
[15:48:52] [Server thread/INFO]: [AdvancedPets] Loaded 6 pet abilities.
[15:48:52] [Server thread/INFO]: [AdvancedPets] Loaded 6 Skin Packs.
[15:48:52] [Server thread/INFO]: [AuraMobs] Enabling AuraMobs v2.1.0
[15:48:52] [Server thread/INFO]: [AuraMobs] Loaded 4 message files
[15:48:52] [Server thread/INFO]: [AuraMobs] [ACF] Enabled Asynchronous Tab Completion Support!
[15:48:52] [Server thread/INFO]: [AxAFKZone] Enabling AxAFKZone v1.4.2
[15:48:53] [Server thread/INFO]: ╠ Loaded zone AFK-Zone!
[15:48:53] [Server thread/INFO]: [FasterFurnaces] Enabling FasterFurnaces v1.2.2
[15:48:53] [Server thread/INFO]: [FasterFurnaces] Version: 1.2.2 Previous: 1.2.2
[15:48:53] [Server thread/INFO]: [FasterFurnaces] Server: 1.21.4 running Paper
[15:48:53] [Server thread/INFO]: [FasterFurnaces] Licensed to: 1123047
[15:48:53] [Server thread/INFO]: [FasterFurnaces] Experiencing issues or having questions? Join our Discord!
[15:48:53] [Server thread/INFO]: [FasterFurnaces] Discord: https://discord.gg/B4MAJVk
[15:48:53] [Server thread/INFO]: [FasterFurnaces] Wiki: https://github.com/Angeschossen/FasterFurnaces/wiki
[15:48:53] [Server thread/INFO]: [FasterFurnaces]  
[15:48:53] [Server thread/INFO]: [FasterFurnaces] [Integrations] Added support for the vanish feature of the plugin CMI.
[15:48:53] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-184
[15:48:53] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[15:48:53] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[15:48:53] [Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: kits_menu is not valid!
Skipping item: grass
[15:48:53] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'example' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:48:53] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplecd' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:48:53] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplenoperm' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:48:53] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'glass14' in menu 'warps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:48:53] [Server thread/INFO]: [DeluxeMenus] 4 GUI menus loaded!
[15:48:54] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[15:48:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-184]
[15:48:54] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.13.0
[15:48:57] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[15:48:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[15:48:57] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[15:48:57] [Server thread/INFO]: [JukeBoxPlus] Enabling JukeBoxPlus v3.8.0
[15:48:58] [Server thread/INFO]: [JukeBoxPlus] [ACF] Enabled Asynchronous Tab Completion Support!
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Enabling ItsMyConfig v4.0.0
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loading ItsMyConfig...
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-text-serializer-bungeecord
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-api
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-key
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loading library examination-api
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loading library examination-string
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loading library annotations
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-text-serializer-legacy
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-text-serializer-gson
[15:48:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: imc [4.0.0]
[15:48:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itsmyconfig [4.0.0]
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Loaded all 20 Placeholders in 28ms
[15:48:58] [Server thread/INFO]: [ItsMyConfig] Registering Kick Listener
[15:48:58] [Server thread/INFO]: [ItsMyConfig] ItsMyConfig loaded in 486ms
[15:48:58] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v4.1.7
[15:48:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[15:48:58] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(1.21.4-R0.1-SNAPSHOT) is not supported by this NBT-API Version(2.13.2) located in AdvancedCrates. The NBT-API will try to work as good as it can! Some functions may not work!
[15:48:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AdvancedCrates' to create a bStats instance!
[15:48:58] [Server thread/WARN]: java.lang.ClassNotFoundException: me.PM2.HologramPackets.UNKNOWN.NMSHandler
[15:48:58] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[15:48:58] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[15:48:58] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[15:48:58] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[15:48:58] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:534)
[15:48:58] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:513)
[15:48:58] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68)
[15:48:58] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source)
[15:48:58] [Server thread/WARN]:     at AdvancedCrates-4.1.7.jar//me.PM2.HologramPackets.Main.NameTagAPI.initModules(NameTagAPI.java:128)
[15:48:58] [Server thread/WARN]:     at AdvancedCrates-4.1.7.jar//me.PM2.AdvancedCrates.MonthlyCrate.onEnable(MonthlyCrate.java:155)
[15:48:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:284)
[15:48:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:48:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:48:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:48:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:670)
[15:48:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:619)
[15:48:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:746)
[15:48:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:491)
[15:48:58] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:365)
[15:48:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1178)
[15:48:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:313)
[15:48:58] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[15:48:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedcrates [4.1.7]
[15:48:59] [Server thread/ERROR]: Error occurred while enabling AdvancedCrates v4.1.7 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at AdvancedCrates-4.1.7.jar/de.tr7zw.advancedcrates.nbtapi.NBTItem.convertNBTtoItem(NBTItem.java:361) ~[AdvancedCrates-4.1.7.jar:?]
    at AdvancedCrates-4.1.7.jar/de.tr7zw.advancedcrates.nbtapi.NBT.itemStackFromNBT(NBT.java:458) ~[AdvancedCrates-4.1.7.jar:?]
    at AdvancedCrates-4.1.7.jar/me.PM2.AdvancedCrates.rewards.SaveableItemBuilder.loadItem(SaveableItemBuilder.java:302) ~[AdvancedCrates-4.1.7.jar:?]
    at AdvancedCrates-4.1.7.jar/me.PM2.AdvancedCrates.rewards.SaveableItemBuilder.loadItem(SaveableItemBuilder.java:248) ~[AdvancedCrates-4.1.7.jar:?]
    at AdvancedCrates-4.1.7.jar/me.PM2.AdvancedCrates.cratesHandler.Crate.<init>(Crate.java:178) ~[AdvancedCrates-4.1.7.jar:?]
    at AdvancedCrates-4.1.7.jar/me.PM2.AdvancedCrates.MonthlyCrate.registerCrateInfo(MonthlyCrate.java:950) ~[AdvancedCrates-4.1.7.jar:?]
    at AdvancedCrates-4.1.7.jar/me.PM2.AdvancedCrates.MonthlyCrate.onEnable(MonthlyCrate.java:212) ~[AdvancedCrates-4.1.7.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:284) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:670) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:619) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:746) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:491) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:365) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1178) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:313) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "Object.hashCode()" because "pk" is null
    at java.base/java.util.ImmutableCollections$MapN.probe(ImmutableCollections.java:1328) ~[?:?]
    at java.base/java.util.ImmutableCollections$MapN.get(ImmutableCollections.java:1242) ~[?:?]
    at java.base/java.util.ImmutableCollections$AbstractImmutableMap.getOrDefault(ImmutableCollections.java:1097) ~[?:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflection.mapDeclaredFieldName(PaperReflection.java:79) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at AdvancedCrates-4.1.7.jar/de.tr7zw.advancedcrates.nbtapi.NBTReflectionUtil.<clinit>(NBTReflectionUtil.java:63) ~[AdvancedCrates-4.1.7.jar:?]
    ... 19 more
[15:48:59] [Server thread/INFO]: [AdvancedCrates] Disabling AdvancedCrates v4.1.7
[15:48:59] [Server thread/INFO]: [AuroraLevels] Enabling AuroraLevels v1.6.1
[15:48:59] [Server thread/INFO]: [AuroraLevels] [ACF] Enabled Asynchronous Tab Completion Support!
[15:48:59] [Server thread/INFO]: [WorldGuard] Registering session handler gg.auroramc.levels.hooks.worldguard.EntryHandler
[15:48:59] [Server thread/INFO]: AuroraLevels | Hooked into WorldGuard for region entry tracking.
[15:48:59] [Server thread/INFO]: AuroraLevels | Hooked into MythicLib (MMOLib) for stat rewards with reward type: 'mmo_stat'. Auto reward corrector for stats is registered.
[15:48:59] [Server thread/INFO]: AuroraLevels | Hooked into AuraSkills for stat rewards with reward type: 'auraskills_stat' and 'auraskills_xp'. Auto reward corrector for stats is registered.
[15:48:59] [Server thread/INFO]: AuroraLevels | Hooked into LuckPerms for permission rewards with reward type: 'permission'. Auto reward corrector for permissions is registered.
[15:48:59] [Server thread/INFO]: [VoidTeleport] Enabling VoidTeleport v2.4.5
[15:48:59] [Server thread/INFO]: 
[15:48:59] [Server thread/INFO]: 
[15:48:59] [Server thread/INFO]:                 ===================================================
[15:48:59] [Server thread/INFO]:                                     VoidTeleport
[15:48:59] [Server thread/INFO]:                 ===================================================
[15:48:59] [Server thread/INFO]: 
[15:48:59] [Server thread/INFO]:                               Current version: 2.4.5
[15:48:59] [Server thread/INFO]:                         You are running the latest version!
[15:48:59] [Server thread/INFO]: 
[15:48:59] [Server thread/INFO]:                 ===================================================
[15:48:59] [Server thread/INFO]: [VoidTeleport] Developed by EndlessGames.
[15:48:59] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.5
[15:48:59] [Server thread/INFO]: ------------- Jobs -------------
[15:48:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.5]
[15:48:59] [Server thread/INFO]: PlaceholderAPI hooked.
[15:48:59] [Server thread/INFO]: Connected to database (SqLite)
[15:48:59] [Server thread/INFO]: Loaded 8 titles
[15:48:59] [Server thread/INFO]: Loaded 2 restricted areas!
[15:48:59] [Server thread/INFO]: Loaded 69 protected blocks timers
[15:48:59] [Server thread/INFO]: Loaded 1403 custom item names
[15:48:59] [Server thread/INFO]: Loaded 81 custom entity names
[15:48:59] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[15:48:59] [Server thread/INFO]: Loaded 38 custom enchant names
[15:48:59] [Server thread/INFO]: Loaded 43 custom enchant names
[15:48:59] [Server thread/INFO]: Loaded 16 custom color names
[15:48:59] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[15:48:59] [Server thread/INFO]: Loaded 4 shop items
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Verzaubern
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Bergarbeit
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Ausgrabung
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Alchemie
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Baukunst
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Schmieden
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Entdecker
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Fischen
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Jagen
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Tischlern
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Holzfällen
[15:48:59] [Server thread/INFO]: Loaded 1 quests for Farmen
[15:48:59] [Server thread/INFO]: Loaded 12 jobs
[15:48:59] [Server thread/INFO]: Loaded 0 boosted items
[15:48:59] [Server thread/INFO]: Loaded 11 furnace for reassigning.
[15:48:59] [Server thread/INFO]: Loaded 6 brewing for reassigning.
[15:48:59] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[15:48:59] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[15:48:59] [Server thread/INFO]: Preloaded 87 players data in 0.02
[15:48:59] [Server thread/INFO]: Registering listeners...
[15:48:59] [Server thread/INFO]: Listeners registered successfully
[15:49:00] [Server thread/INFO]: Plugin has been enabled successfully.
[15:49:00] [Server thread/INFO]: ------------------------------------
[15:49:00] [Server thread/INFO]: [Perks] Enabling Perks v2.6.2*
[15:49:00] [Server thread/INFO]: [Perks] [PERKS] Server Version: 1.21.4 erkannt
[15:49:00] [Server thread/INFO]: [Perks] [PERKS] PlotSquared nicht gefunden! Sollte dies ein Fehler sein, bitte den Pluginersteller melden.
[15:49:00] [Server thread/INFO]: [Perks] [PERKS] Perk Plugin v2.6.2 von xZaruk wurde aktiviert! 1
[15:49:00] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.5.2
[15:49:00] [Server thread/INFO]: [Quests] Enabling Quests v3.15.2-d09ef1d
[15:49:00] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[15:49:00] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[15:49:00] [Server thread/INFO]: [Quests] Your server is running version 1.21
[15:49:00] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[15:49:00] [Server thread/INFO]: [GSit] Enabling GSit v1.13.0
[15:49:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.13.0]
[15:49:00] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[15:49:00] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[15:49:00] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[15:49:00] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.0
[15:49:00] [Server thread/ERROR]: Error occurred while enabling ViaBackwards v5.2.0 (Is it up to date?)
java.lang.NoSuchFieldError: Class com.viaversion.viaversion.api.protocol.version.ProtocolVersion does not have member field 'com.viaversion.viaversion.api.protocol.version.ProtocolVersion v1_21_2'
    at ViaBackwards-5.2.0.jar/com.viaversion.viabackwards.api.ViaBackwardsPlatform.enable(ViaBackwardsPlatform.java:153) ~[ViaBackwards-5.2.0.jar:?]
    at ViaBackwards-5.2.0.jar/com.viaversion.viabackwards.BukkitPlugin.enable(BukkitPlugin.java:53) ~[ViaBackwards-5.2.0.jar:?]
    at ViaBackwards-5.2.0.jar/com.viaversion.viabackwards.BukkitPlugin.onEnable(BukkitPlugin.java:47) ~[ViaBackwards-5.2.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:284) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:670) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:619) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:746) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:491) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:365) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1178) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:313) ~[purpur-1.21.4.jar:1.21.4-2379-1b5ab0c]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[15:49:00] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v5.2.0
[15:49:00] [Server thread/INFO]: [Join-Leave] Enabling Join-Leave v2.4.3
[15:49:00] [Server thread/INFO]: Join-Leave Loading plugin assets...
[15:49:00] [Server thread/INFO]: Join-Leave Checking if datafolder exist...
[15:49:00] [Server thread/INFO]: Join-Leave Datafolder exist!
[15:49:00] [Server thread/INFO]: Join-Leave Checking if config exist...
[15:49:00] [Server thread/INFO]: Join-Leave Config exist!
[15:49:00] [Server thread/INFO]: Join-Leave Checking if language config exist...
[15:49:00] [Server thread/INFO]: Join-Leave Language config exist!
[15:49:00] [Server thread/INFO]: Join-Leave Checking if title config exist...
[15:49:00] [Server thread/INFO]: Join-Leave Title config exist!
[15:49:00] [Server thread/INFO]: Join-Leave Checking if sound config exist...
[15:49:00] [Server thread/INFO]: Join-Leave Sound config exist!
[15:49:00] [Server thread/INFO]: Join-Leave Checking if fireworks config exist...
[15:49:00] [Server thread/INFO]: Join-Leave Fireworks config exist!
[15:49:00] [Server thread/INFO]: Join-Leave Plugin assets loaded!
[15:49:00] [Server thread/INFO]: [Join-Leave] Enabled metrics. You may opt-out by changing plugins/bStats/config.yml
[15:49:00] [Server thread/INFO]: [BankPlus] Enabling BankPlus v6.3
[15:49:00] [Server thread/INFO]: 
[15:49:00] [Server thread/INFO]:     BankPlus Enabling plugin...
[15:49:00] [Server thread/INFO]:     Running on version 6.3!
[15:49:00] [Server thread/INFO]:     Detected server version: 1.21.4-2379-1b5ab0c (MC: 1.21.4)
[15:49:00] [Server thread/INFO]:     Setting up the plugin...
[15:49:00] [Server thread/INFO]:     Done! (69ms)
[15:49:00] [Server thread/INFO]: 
[15:49:00] [Server thread/INFO]: BankPlus [INFO] Hooked into PlaceholderAPI!
[15:49:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bankplus [6.3]
[15:49:00] [Server thread/INFO]: BankPlus [INFO] Hooked into CMI!
[15:49:00] [Server thread/INFO]: [CommandWhitelist] Enabling CommandWhitelist v2.8.2
[15:49:00] [Server thread/INFO]: [PlaytimeRewardsPlus] Enabling PlaytimeRewardsPlus v1.0.9
[15:49:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playtime [1.0.0]
[15:49:01] [Server thread/INFO]: [PlaytimeRewards+] Detected Placeholder API. Successfully enabled plugin support.
[15:49:01] [Server thread/INFO]: [PlaytimeRewards+] Cleaning up...
[15:49:01] [Server thread/INFO]: [PlaytimeRewards+] Accumulating player data for LeaderBoard placeholders, this task will run asynchronously.
[15:49:01] [Server thread/INFO]: [PlaytimeRewards+] Detected version group as V1.20.5+[1214]. Applying necessary settings.
[15:49:01] [Server thread/INFO]: [PlaytimeRewards+] Has started successfully!
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.20.1
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-de.yml as language file.
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Laden der 16-Shopbereichkonfigurationen aus /sections/ ist abgeschlossen
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Laden der 16 Shop Konfigurationen aus /Shops/ abgeschlossen
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Die Shop-Einstellungen werden geladen...
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Du benutzt Minecraft 1.21.4...
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: MMOItems "hook" aktiviert ...
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault and using CMIEconomy as economy provider
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Das Laden von 1 Währungs-Anbieter für alle 15-Shopbereiche wurde abgeschlossen.
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Die Konfiguration wird aktualisiert, weil eine neue Version gefunden wurde.
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully updated configs to v2.0.2.4
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: In der config ist AUTO als Plugin angegeben, das sich um Spawner kümmert
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Failed to automatically find compatible spawner provider, using default...
[15:49:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Providers not enabled yet, waiting...
[15:49:01] [Server thread/INFO]: [HeadBlocks] Enabling HeadBlocks v2.6.15
[15:49:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[15:49:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[15:49:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'HeadBlocks' to create a bStats instance!
[15:49:01] [Server thread/INFO]: HeadBlocks initializing...
[15:49:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: headblocks [1.0.0]
[15:49:01] [Server thread/INFO]: SQLite storage properly connected!
[15:49:01] [Server thread/INFO]: Loaded 1 (+0 HeadDatabase heads) configuration heads!
[15:49:01] [Server thread/INFO]: Loaded 29 locations!
[15:49:01] [Server thread/INFO]: HeadBlocks successfully loaded!
[15:49:01] [Server thread/INFO]: [TAB] Enabling TAB v5.0.3
[15:49:01] [Server thread/INFO]: [TAB] Loaded NMS hook in 26ms
[15:49:02] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[15:49:02] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "belowname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[15:49:02] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[15:49:02] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[15:49:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.0.3]
[15:49:02] [Server thread/INFO]: [TAB] [WARN] Found a total of 4 issues.
[15:49:02] [Server thread/INFO]: [TAB] Enabled in 167ms
[15:49:02] [Server thread/INFO]: [AdvancedAchievements] Enabling AdvancedAchievements v9.1
[15:49:02] [Server thread/INFO]: Bukkit version: 1.21.4-R0.1-SNAPSHOT
[15:49:02] [Server thread/INFO]: Parsed server version: 121
[15:49:02] [Server thread/INFO]: [AdvancedAchievements] Backing up and loading configuration files...
[15:49:02] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling PetMasterGive and PetMasterReceive categories.
[15:49:02] [Server thread/WARN]: [AdvancedAchievements] Ensure you have placed Pet Master in your plugins folder or add PetMasterGive and PetMasterReceive to the DisabledCategories list in config.yml.
[15:49:02] [Server thread/INFO]: [AdvancedAchievements] Loaded 63 achievements in 52 categories.
[15:49:02] [Server thread/INFO]: [AdvancedAchievements] 3 disabled categories: [PetMasterGive, PetMasterReceive, AdvancementsCompleted]
[15:49:02] [Server thread/INFO]: [AdvancedAchievements] Registering event listeners...
[15:49:02] [Server thread/INFO]: [AdvancedAchievements] Initialising h2 database...
[15:49:02] [Server thread/INFO]: [AdvancedAchievements] Setting up command executor and custom tab completers...
[15:49:02] [Server thread/INFO]: [AdvancedAchievements] Launching scheduled tasks...
[15:49:02] [Server thread/INFO]: [AdvancedAchievements] Registering permissions...
[15:49:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aach [9.1]
[15:49:03] [Server thread/INFO]: [AdvancedAchievements] Plugin has finished loading and is ready to run! Took 899ms.
[15:49:03] [Server thread/INFO]: [AntiWorldDownloader] Enabling AntiWorldDownloader v2.7.1.2*
[15:49:03] [Server thread/INFO]: [AntiWorldDownloader] AWD has been enabled! (Version: 2.7.1.2)
[15:49:03] [Server thread/INFO]: [CreativeManager] Enabling CreativeManager v1.35.13
[15:49:03] [Server thread/INFO]: [CreativeManager] =============================================================
[15:49:03] [Server thread/INFO]: [CreativeManager] CreativeManager v1.35.13
[15:49:03] [Server thread/INFO]: [CreativeManager] =============================================================
[15:49:03] [Server thread/INFO]: [CreativeManager] Created by K0bus for AkuraGaming
[15:49:03] [Server thread/INFO]: [CreativeManager] =============================================================
[15:49:03] [Server thread/INFO]: [CreativeManager] Check config file for update
[15:49:03] [Server thread/INFO]: [CreativeManager] Loading config file
[15:49:03] [Server thread/INFO]: [CreativeManager] Configuration loaded
[15:49:03] [Server thread/INFO]: [CreativeManager] Language loaded [en_EN]
[15:49:03] [Server thread/INFO]: [CreativeManager] Listener registered
[15:49:03] [Server thread/INFO]: [CreativeManager] Commands registered
[15:49:03] [Server thread/INFO]: [CreativeManager] Entities permissions registered ! [150]
[15:49:03] [Server thread/INFO]: [CreativeManager] Log loaded from database ! [0]
[15:49:03] [Server thread/INFO]: [CreativeManager] Tag loaded from Spigot ! [341]
[15:49:03] [Server thread/INFO]: [CreativeManager] =============================================================
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Enabling T2C-Alias v1.5
[15:49:03] [Server thread/INFO]: [T2Code-Alias]   _______ ___   _____ 
[15:49:03] [Server thread/INFO]: [T2Code-Alias]  |__   __|__ \ / ____|
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     | |     ) | |     
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     | |    / /| |     
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     | |   / /_| |____ 
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     |_|  |____|\_____|
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     ╔══════════════════════════
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     ║ Autor: JaTiTV
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     ║ Version: 1.5
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     ║ Spigot: https://www.spigotmc.org/resources/96389
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     ║ Discord: http://dc.t2code.net
[15:49:03] [Server thread/INFO]: [T2Code-Alias]     ╚══════════════════════════
[15:49:03] [Server thread/INFO]: [T2Code-Alias] All files were successfully converted. - 3ms
[15:49:03] [Server thread/INFO]: [T2Code-Alias] -------------------------------
[15:49:03] [Server thread/INFO]: [T2Code-Alias] The config.yml was loaded successfully - 3ms
[15:49:03] [Server thread/INFO]: [T2Code-Alias] -------------------------------
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Language successfully selected to: german - 6ms
[15:49:03] [Server thread/INFO]: [T2Code-Alias] -------------------------------
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file markt.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file nether.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file aliasexample.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file spielzeit.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file fischmenu.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file backpack.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file anleitung.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file fernelande.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file kleinstadt.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file farmwelt.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file pass.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias file heimatlande.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] -------------------------------
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias markt register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias nether register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias aliasexample1 register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias spielzeit register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias fischmenu register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias rucksack register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias anleitung register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias fernelande register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias kleinstadt register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias farmwelt register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias pass register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Alias heimatlande register
[15:49:03] [Server thread/INFO]: [T2Code-Alias] -------------------------------
[15:49:03] [Server thread/INFO]: [T2Code-Alias] SubAlias file aliasexample.yml was loaded
[15:49:03] [Server thread/INFO]: [T2Code-Alias] -------------------------------
[15:49:03] [Server thread/INFO]: [T2Code-Alias] Plugin loaded successfully. - 261ms
[15:49:03] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.10
[15:49:03] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.10.1-RELEASE
[15:49:04] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[15:49:04] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[15:49:04] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.10.1-RELEASE (commit 0eb4ff7c)
[15:49:04] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[15:49:04] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[15:49:04] [Server thread/INFO]: [UltraCosmetics] Initializing module v1_21 (expected version: 1.21.4)
[15:49:04] [Server thread/INFO]: [UltraCosmetics] Loaded NMS support
[15:49:04] [Server thread/INFO]: [UltraCosmetics] Paper-specific features enabled
[15:49:05] [Server thread/INFO]: [UltraCosmetics] 
[15:49:05] [Server thread/WARN]: [UltraCosmetics] Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
[15:49:05] [Server thread/INFO]: [UltraCosmetics] 
[15:49:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [3.10.1-RELEASE]
[15:49:05] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[15:49:05] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[15:49:05] [Server thread/INFO]: [UltraCosmetics] 
[15:49:05] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[15:49:05] [Server thread/INFO]: [UltraCosmetics] 
[15:49:05] [Server thread/INFO]: [UltraCosmetics] Hooked into Vault:CMIEconomy for economy.
[15:49:05] [Server thread/INFO]: [UltraCosmetics] 
[15:49:05] [Server thread/INFO]: [UltraCosmetics] 
[15:49:05] [Server thread/INFO]: [UltraCosmetics] Hooked into PlayerAuctions
[15:49:05] [Server thread/INFO]: [UltraCosmetics] 
[15:49:05] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 1823ms!
[15:49:05] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[15:49:06] [Server thread/INFO]: [spark] Starting background profiler...
[15:49:06] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:49:06] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[15:49:06] [Server thread/INFO]: [Geyser-Spigot] 
[15:49:06] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.6.0-b750 (git-master-98f9bf6)
[15:49:06] [Server thread/INFO]: [Geyser-Spigot] 
[15:49:06] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[15:49:08] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] Started Geyser on UDP port 19132
[15:49:09] [Server thread/INFO]: [Geyser-Spigot] Done (2.662s)! Run /geyser help for help!
[15:49:09] [Server thread/INFO]: Done preparing level "world" (35.610s)
[15:49:09] [Server thread/INFO]: Running delayed init tasks
[15:49:09] [Craft Scheduler Thread - 7 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[15:49:09] [Craft Scheduler Thread - 10 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[15:49:09] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[15:49:09] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[15:49:09] [Craft Scheduler Thread - 10 - GravesX/INFO]: [GravesX] Loading grave maps...
[15:49:09] [Craft Scheduler Thread - 5 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[15:49:09] [Craft Scheduler Thread - 12 - HeadDB/INFO]: [tsp.headdb.HeadDB] Fetching heads...
[15:49:09] [Craft Scheduler Thread - 13 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[15:49:09] [Craft Scheduler Thread - 7 - PlaytimeRewardsPlus/INFO]: [PlaytimeRewards+] Successfully acquired all player data for LeaderBoard.
[15:49:09] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:49:09] [Craft Scheduler Thread - 26 - AntiWorldDownloader/INFO]: [AntiWorldDownloader] Found a new version: 2.7.1.3 (Yours: v2.7.1.2)
[15:49:09] [Craft Scheduler Thread - 26 - AntiWorldDownloader/INFO]: [AntiWorldDownloader] Download it on spigot:
[15:49:09] [Craft Scheduler Thread - 26 - AntiWorldDownloader/INFO]: [AntiWorldDownloader] spigotmc.org/resources/99356
[15:49:09] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] No new version available
[15:49:09] [Craft Scheduler Thread - 10 - GravesX/WARN]: [GravesX] Grave 916c85fa-b4e1-4882-bcd8-31d8d63d4f24 at location World: Fernelande, x: -651, y: 124, z: 671 is invalid. If this was caused by an addon, then report it to the plugin author. Reason: killer_type is null
[15:49:09] [Craft Scheduler Thread - 9 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[15:49:09] [Craft Scheduler Thread - 10 - GravesX/WARN]: [GravesX] Grave 4ccea029-12d2-43b7-9aa3-c98ee2b31a49 at location World: Farmwelt, x: -413, y: 31, z: 2169 is invalid. If this was caused by an addon, then report it to the plugin author. Reason: killer_type is null
[15:49:09] [Craft Scheduler Thread - 10 - GravesX/INFO]: [GravesX] Loaded 5 grave maps into cache.
[15:49:09] [Craft Scheduler Thread - 13 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[15:49:09] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 317 total sources
[15:49:09] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[15:49:09] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[15:49:09] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[15:49:09] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[15:49:09] [Server thread/INFO]: [CMI] Permission plugin: LuckPerms5.4.137
[15:49:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.7.9.2]
[15:49:09] [Server thread/INFO]: [CMI] PlaceholderAPI hooked.
[15:49:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.30.2]
[15:49:09] [Server thread/INFO]: [GravesX] Registering Crash Handler...
[15:49:09] [Server thread/INFO]: [GravesX] Registered Crash Handler. Server will handle crashes in a separate thread.
[15:49:09] [Server thread/INFO]: WorldGuard detected.
[15:49:09] [Server thread/INFO]: PyroFishingPro detected.
[15:49:09] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Vault)
[15:49:09] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[15:49:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[15:49:09] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[15:49:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[15:49:09] [Server thread/INFO]: 2 placeholder hook(s) registered!
[15:49:09] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: PlaceholderAPI "hook" aktiviert ...
[15:49:09] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: PLACEHOLDERS provider loaded, waiting...
[15:49:10] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Fetched 110558 total heads! (1s)
[15:49:10] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading 110558 heads...
[15:49:10] [Server thread/INFO]: [Citizens] Loaded 40 NPCs.
[15:49:10] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[15:49:10] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[15:49:10] [Server thread/INFO]: [Lands] [Integrations] Integrated Bedrock GUI forms for Bedrock players.
[15:49:10] [Server thread/INFO]: [Lands] Added region provider: WorldGuard Type: SERVER
[15:49:10] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Vault economy into economy system. Name: CMIEconomy
[15:49:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lands [7.11.6]
[15:49:10] [Server thread/INFO]: [Lands] [Integrations] Successfully registered placeholders at PlaceholderAPI. More info: https://wiki.incredibleplugins.com/lands/configuration/placeholderapi-placeholders
[15:49:10] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated FastAsyncWorldEdit. 
[15:49:10] [Server thread/INFO]: [Lands] [Integrations] Successfully loaded LuckPerms contexts. More information: https://wiki.incredibleplugins.com/lands/permissions/luckperms-context
[15:49:10] [Server thread/INFO]: [Lands] [Economy] Next economic tasks (taxes, upkeep, nations upkeep) execution is in 7 Stunde(n), 10 Minute(n), 49 Sekunde(n). Interval: 7 Tag(e)
[15:49:11] [Server thread/INFO]: [FasterFurnaces] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[15:49:11] [Server thread/INFO]: [FasterFurnaces] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[15:49:11] [Server thread/INFO]: [FasterFurnaces] [Integrations] Integrated Bedrock GUI forms for Bedrock players.
[15:49:11] [Server thread/INFO]: [FasterFurnaces] Successfully added region provider: WorldGuard Type: SERVER
[15:49:11] [Server thread/INFO]: [FasterFurnaces] [Integrations] Successfully integrated Vault economy into economy system. Name: CMIEconomy
[15:49:11] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.2.1, you're on: 5.0.5
[15:49:11] [Server thread/INFO]: Done (81.342s)! For help, type "help"
[15:49:11] [Craft Scheduler Thread - 5 - GravesX/INFO]: [GravesX] Loading Block Map cache...
[15:49:11] [Craft Scheduler Thread - 10 - GravesX/INFO]: [GravesX] Loading Entity Data Map Cache for citizensnpc...
[15:49:11] [Craft Scheduler Thread - 13 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for armorstand...
[15:49:11] [Craft Scheduler Thread - 10 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Data Map Cache for citizensnpc.
[15:49:11] [Craft Scheduler Thread - 13 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for armorstand.
[15:49:11] [Craft Scheduler Thread - 19 - GravesX/INFO]: [GravesX] Loading Holograms into Hologram Map Cache...
[15:49:11] [Craft Scheduler Thread - 14 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for itemframe...
[15:49:11] [Craft Scheduler Thread - 14 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for itemframe.
[15:49:11] [Craft Scheduler Thread - 19 - GravesX/INFO]: [GravesX] Loaded 15 Holograms into Hologram Map Cache.
[15:49:11] [Craft Scheduler Thread - 5 - GravesX/INFO]: [GravesX] Loaded 5 Blocks into the Block Map Cache.
[15:49:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15.2-d09ef1d]
[15:49:11] [Server thread/INFO]: [Quests] Successfully hooked into Vault economy.
[15:49:11] [Server thread/INFO]: [Quests] 46 task types have been registered.
[15:49:11] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[15:49:11] [Craft Scheduler Thread - 22 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[15:49:12] [Server thread/INFO]: [Quests] 1448 quests have been registered.
[15:49:12] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3225ms or 64 ticks behind
[15:49:12] [Server thread/INFO]: [AdvancedPets] Successfully hooked into ProtocolLib, AuraSkills, WorldGuard, PlaceholderAPI, Lands, Geyser-Spigot, CMI, Vault, LuckPerms, ViaVersion.
[15:49:12] [Craft Scheduler Thread - 5 - T2C-Alias/INFO]: [T2Code-Alias] No update found.
[15:49:13] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading heads... 25%
[15:49:15] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading heads... 50%
[15:49:16] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading heads... 75%
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Provider(s) [ITEMS] not enabled yet after waiting for server to finish, loading now...
[15:49:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.1.0]
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Debug mode ist an.
[15:49:17] [ForkJoinPool.commonPool-worker-7/INFO]: [Lands] There is a new version available: 7.12.1
[15:49:17] [ForkJoinPool.commonPool-worker-3/INFO]: [FasterFurnaces] There is a new version available: 1.2.10
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Item Lager Anbieter laden...
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading limited selling provider...
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Alle items werden geladen...
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 0 shop stand(s) from stands.json
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Incompatible component tag for current minecraft version: Did you mean 'repair_cost' instead of 'RepairCost'?
[15:49:17] [Server thread/INFO]: Please change the value manually in config to get rid of this message
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Item Pfad in der config.yml: sold-items-ignored-NBTtags
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Incompatible component tag for current minecraft version: Did you mean 'profile::id' instead of 'SkullOwner::Id'?
[15:49:17] [Server thread/INFO]: Please change the value manually in config to get rid of this message
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Item Pfad in der config.yml: sold-items-ignored-NBTtags
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loaded cached interval for rotating shop RotatingShop with next rotation in 3h 29m 36s...
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully enabled rotating shop RotatingShop, with a rotating interval of 6h
[15:49:17] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading heads... 100%
[15:49:17] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloaded 110558 total heads! (6s)
[15:49:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed delayed loading.
[15:49:42] [Craft Scheduler Thread - 8 - T2CodeLib/INFO]: 
[15:49:42] [Craft Scheduler Thread - 8 - T2CodeLib/INFO]: ╔══════════════[T2CodeLib]══════════════
[15:49:42] [Craft Scheduler Thread - 8 - T2CodeLib/INFO]: ║ A new STABLE version was found!
[15:49:42] [Craft Scheduler Thread - 8 - T2CodeLib/INFO]: ║ Your version: 16.6 - Current version: 16.9
[15:49:42] [Craft Scheduler Thread - 8 - T2CodeLib/INFO]: ║ You can download it here: https://www.spigotmc.org/resources/96388
[15:49:42] [Craft Scheduler Thread - 8 - T2CodeLib/INFO]: ║ You can find more information on Discord: http://dc.t2code.net
[15:49:42] [Craft Scheduler Thread - 8 - T2CodeLib/INFO]: ╚══════════════[T2CodeLib]══════════════
[15:49:59] [Craft Scheduler Thread - 13 - CMI/INFO]: TPS: 20.0 20.0 20.0 20.0 20.0
[15:49:59] [Craft Scheduler Thread - 13 - CMI/INFO]: One block 60 seconds. Max 600 seconds
[15:49:59] [Craft Scheduler Thread - 13 - CMI/INFO]: |||||||||||||||||||||||||||||||||||||||||
[15:55:12] [User Authenticator #0/INFO]: UUID of player EspRene is 887268d1-07c1-447b-8472-25cc5921a50f
[15:55:13] [Server thread/INFO]: [Server] » [+] EspRene hat das Land betreten!
[15:55:13] [Server thread/INFO]: EspRene[/92.206.92.7:60229] logged in with entity id 384 at ([Kleinstadt]600.5393251010362, 83.0, 41.20783773143478)
[15:55:21] [Server thread/INFO]: EspRene issued server command: /mmoitems browse
[15:55:38] [Server thread/INFO]: EspRene issued server command: /auctionhouse
[16:11:42] [Server thread/INFO]: [Inhaber] EspRene ist nun abwesend.