Paste #132776: log

Date: 2025/04/19 12:17:17 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[22:16:00] [ServerMain/INFO]: [bootstrap] Running Java 21 (Java HotSpot(TM) 64-Bit Server VM 21.0.5+9-LTS-239; Oracle Corporation null) on Windows Server 2022 10.0 (amd64)
[22:16:00] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-224-main@0cf7315 (2025-04-07T12:01:39Z) for Minecraft 1.21.4
[22:16:01] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[22:16:02] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[22:16:02] [ServerMain/INFO]: [PluginInitializerManager] Initialized 59 plugins
[22:16:02] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (4):
 - CrazyCrates (4.9.4), EconomyShopGUI (6.12.0), Minepacks (2.4.31.6-T20250103114036), nightcore (2.7.5.2)
[22:16:02] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (55):
 - AuctionMaster (4.1), AuctionMasterItemDisplay (2.2), BetterProfiles (1.6-BETA), BetterRTP (3.5.1), BetterSocial (1.4-BETA), BlockParticles (1.12), BlueSlimeCore (2.6.1.222-Beta), ChatBrawl (2.1), Citizens (2.0.38-SNAPSHOT (build 3782)), ClearLag (3.2.2), CombatLogX (11.1.0.7.1025), DecentHolograms (2.8.16), DeluxeMenus (1.14.0-Release), EconomyBridge (1.2.0), Essentials (2.19.7), ExcellentCrates (6.1.3), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1092;4af1b8b), FreedomChat (1.7.2), GPClaimExpiration (1.0.0), GriefPrevention (16.18.4), HamsterAPI (0.2.4), IllegalStack (2.9.12a), LPC (3.3.0), LangUtils (2.4.x), LeaderOS (1.1.9), LuckPerms (5.4.9), MineableSpawners (3.1.2), Multiverse-Core (4.2.2-b812), MyCommand (5.7.4), NBTAPI (2.14.1), NerfPhantoms (1.3.0), PlaceholderAPI (2.11.6), Playtimes (1.4.4), PlugManX (2.4.1), ProtocolLib (5.4.0-SNAPSHOT-742), ServerListPlus (3.5.0), Skript (2.10.2), SuperVanish (6.2.6), TAB (5.2.0), Themis (0.17.5), TimerEvent (1.0.0), TitleManager (2.3.6), TradeSystem (2.6.3), Tuccar (1.2.9), Vault (1.7.3-b131), VeldoryaKese (1.6.1), ViaVersion (5.3.1), WorldBorder (2.1.5), WorldGuard (7.0.13+82fdc65), antiRedstoneClock (1.4.1), eBackup (1.3.1), mcMMO (2.1.218-SNAPSHOT), packetevents (2.7.0), skRayFall (1.9.28), uWorldReplacements (1.0)
[22:16:05] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[22:16:06] [ServerMain/INFO]: Loaded 1370 recipes
[22:16:06] [ServerMain/INFO]: Loaded 1481 advancements
[22:16:06] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[22:16:06] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 119,2ms
[22:16:06] [Server thread/INFO]: Starting minecraft server version 1.21.4
[22:16:06] [Server thread/WARN]: ****************************
[22:16:06] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[22:16:06] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[22:16:06] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[22:16:06] [Server thread/WARN]: ****************************
[22:16:06] [Server thread/INFO]: Loading properties
[22:16:06] [Server thread/INFO]: This server is running Paper version 1.21.4-224-main@0cf7315 (2025-04-07T12:01:39Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[22:16:06] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[22:16:06] [Server thread/INFO]: Server Ping Player Sample Count: 12
[22:16:06] [Server thread/INFO]: Using 4 threads for Netty based IO
[22:16:07] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[22:16:07] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[22:16:07] [Server thread/INFO]: Default game type: SURVIVAL
[22:16:07] [Server thread/INFO]: Generating keypair
[22:16:07] [Server thread/INFO]: Starting Minecraft server on *:30075
[22:16:07] [Server thread/INFO]: Using default channel type
[22:16:07] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[22:16:07] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\ch\ethz\globis\phtree\phtree\2.8.2\phtree-2.8.2.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-platform-bukkit\4.3.4\adventure-platform-bukkit-4.3.4.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-platform-api\4.3.4\adventure-platform-api-4.3.4.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.4\adventure-text-serializer-bungeecord-4.3.4.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-platform-facet\4.3.4\adventure-platform-facet-4.3.4.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-platform-viaversion\4.3.4\adventure-platform-viaversion-4.3.4.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-text-minimessage\4.20.0\adventure-text-minimessage-4.20.0.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-api\4.20.0\adventure-api-4.20.0.jar
[22:16:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\rodiNetwork\Survival\libraries\net\kyori\adventure-key\4.20.0\adventure-key-4.20.0.jar
[22:16:07] [Server thread/INFO]: [nightcore] Server version detected as Paper 1.21.4. Using paper-bridge.
[22:16:08] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[22:16:11] [Server thread/WARN]: Legacy plugin TimerEvent v1.0.0 does not specify an api-version.
[22:16:12] [Server thread/WARN]: Legacy plugin Playtimes v1.4.4 does not specify an api-version.
[22:16:12] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[22:16:12] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.1
[22:16:12] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.1 is now loaded. Registering protocol transformers and injecting...
[22:16:12] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[22:16:12] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[22:16:12] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.9
[22:16:13] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[22:16:13] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1092;4af1b8b
[22:16:13] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7a9eb324]
[22:16:13] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-742
[22:16:13] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
[22:16:14] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[22:16:14] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[22:16:14] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.2.2-b812
[22:16:14] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3782)
[22:16:14] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.19.7
[22:16:14] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.5.2
[22:16:14] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.4
[22:16:14] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.6
[22:16:14] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.6.1.222-Beta
[22:16:14] [Server thread/INFO]: [EconomyBridge] Loading server plugin EconomyBridge v1.2.0
[22:16:14] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.0
[22:16:15] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.10.2
[22:16:15] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.1.0.7.1025
[22:16:15] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[22:16:15] [Server thread/INFO]: [CombatLogX] Loading expansions...
[22:16:15] [Server thread/INFO]: [CombatLogX] Loading expansion 'Boss Bar v16.9'...
[22:16:15] [Server thread/INFO]: [CombatLogX]  
[22:16:15] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v16.23'...
[22:16:15] [Server thread/INFO]: [CombatLogX]  
[22:16:15] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins\CombatLogX\expansions\Towny Compatibility.jar' because a plugin dependency was not loaded: Towny
[22:16:15] [Server thread/INFO]: [CombatLogX]  
[22:16:15] [Server thread/INFO]: [CombatLogX] Successfully loaded 2 expansions.
[22:16:15] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.218-SNAPSHOT
[22:16:15] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[22:16:15] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[22:16:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[22:16:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[22:16:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[22:16:15] [Server thread/INFO]: [MineableSpawners] Loading server plugin MineableSpawners v3.1.2
[22:16:15] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.16
[22:16:15] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v6.1.3
[22:16:15] [Server thread/INFO]: [LangUtils] Loading server plugin LangUtils v2.4.x
[22:16:15] [Server thread/INFO]: [AuctionMaster] Loading server plugin AuctionMaster v4.1
[22:16:15] [Server thread/INFO]: [WorldBorder] Loading server plugin WorldBorder v2.1.5
[22:16:15] [Server thread/INFO]: [VeldoryaKese] Loading server plugin VeldoryaKese v1.6.1
[22:16:15] [Server thread/INFO]: [uWorldReplacements] Loading server plugin uWorldReplacements v1.0
[22:16:15] [Server thread/INFO]: [Tuccar] Loading server plugin Tuccar v1.2.9
[22:16:15] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.3
[22:16:15] [Server thread/INFO]: [TitleManager] Loading server plugin TitleManager v2.3.6
[22:16:15] [Server thread/INFO]: [TimerEvent] Loading server plugin TimerEvent v1.0.0
[22:16:15] [Server thread/INFO]: [Themis] Loading server plugin Themis v0.17.5
[22:16:15] [Server thread/WARN]: [Themis] There is no config section for the boat_movement check
[22:16:15] [Server thread/WARN]: [Themis] Couldn't find config value bedrock-only for boat_movement check, using default
[22:16:15] [Server thread/WARN]: [Themis] There is no config section for the elytra_flight check
[22:16:15] [Server thread/WARN]: [Themis] Couldn't find config value bedrock-only for elytra_flight check, using default
[22:16:15] [Server thread/WARN]: [Themis] Couldn't find config value bedrock-only for horizontal_movement check, using default
[22:16:15] [Server thread/WARN]: [Themis] Couldn't find config value bedrock-only for illegal_packets check, using default
[22:16:15] [Server thread/WARN]: [Themis] Couldn't find config value bedrock-only for packet_spoof check, using default
[22:16:15] [Server thread/WARN]: [Themis] There is no config section for the reach check
[22:16:15] [Server thread/WARN]: [Themis] Couldn't find config value bedrock-only for reach check, using default
[22:16:15] [Server thread/WARN]: [Themis] Couldn't find config value bedrock-only for tickrate check, using default
[22:16:15] [Server thread/WARN]: [Themis] Couldn't find config value bedrock-only for vertical_movement check, using default
[22:16:15] [Thread-5/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[22:16:15] [Thread-5/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.14.1' Newest Version: 2.15.0'
[22:16:15] [Thread-5/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[22:16:16] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.0
[22:16:16] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[22:16:16] [Server thread/INFO]: [ServerListPlus] Loading server plugin ServerListPlus v3.5.0
[22:16:16] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[22:16:16] [Server thread/INFO]: [Playtimes] Loading server plugin Playtimes v1.4.4
[22:16:16] [Server thread/INFO]: [NerfPhantoms] Loading server plugin NerfPhantoms v1.3.0
[22:16:16] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[22:16:16] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.6-T20250103114036
[22:16:16] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.3.0
[22:16:16] [Server thread/INFO]: [LeaderOS] Loading server plugin LeaderOS v1.1.9
[22:16:17] [Server thread/INFO]: [IllegalStack] Loading server plugin IllegalStack v2.9.12a
[22:16:17] [Server thread/INFO]: [HamsterAPI] Loading server plugin HamsterAPI v0.2.4
[22:16:17] [Server thread/INFO]: [GPClaimExpiration] Loading server plugin GPClaimExpiration v1.0.0
[22:16:17] [Server thread/INFO]: [FreedomChat] Loading server plugin FreedomChat v1.7.2
[22:16:17] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.12.0
[22:16:17] [Server thread/INFO]: [eBackup] Loading server plugin eBackup v1.3.1
[22:16:17] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[22:16:17] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[22:16:17] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v4.9.4
[22:16:17] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[22:16:17] [Server thread/INFO]: [ChatBrawl] Loading server plugin ChatBrawl v2.1
[22:16:17] [Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.12
[22:16:17] [Server thread/INFO]: [BetterSocial] Loading server plugin BetterSocial v1.4-BETA
[22:16:17] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.5.1
[22:16:17] [Server thread/INFO]: [BetterProfiles] Loading server plugin BetterProfiles v1.6-BETA
[22:16:17] [Server thread/INFO]: [BetterProfiles] Hex colors are available!
[22:16:17] [Server thread/INFO]: [BetterProfiles] Inventory title with support for more than 32 characters. Skipping..
[22:16:17] [Server thread/INFO]: [BetterProfiles] Old constructor for HoverEvent found! Using it..
[22:16:17] [Server thread/INFO]: [BetterProfiles] New sendTitle method found! Using it..
[22:16:17] [Server thread/INFO]: [BetterProfiles] New getItemInMainHand method found! Using it..
[22:16:17] [Server thread/INFO]: [BetterProfiles] WorldGuard found! Registering custom flag(s)..
[22:16:17] [Server thread/INFO]: [BetterProfiles] WorldGuard v7.x or newer detected. Using new methods..
[22:16:17] [Server thread/INFO]: [BetterProfiles] [WorldGuard] Successfully registered 'betterprofiles-can-view-profile' flag!
[22:16:17] [Server thread/INFO]: [AuctionMasterItemDisplay] Loading server plugin AuctionMasterItemDisplay v2.2
[22:16:17] [Server thread/INFO]: [antiRedstoneClock] Loading server plugin antiRedstoneClock v1.4.1
[22:16:17] [Server thread/INFO]: [antiRedstoneClock] WorldGuard 7 found
[22:16:17] [Server thread/INFO]: [antiRedstoneClock] Flag antiredstoneclock registered
[22:16:17] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[22:16:17] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.9
[22:16:17] [Server thread/INFO]:         __    
[22:16:17] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.9
[22:16:17] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[22:16:17] [Server thread/INFO]: 
[22:16:17] [Server thread/INFO]: [LuckPerms] Loading configuration...
[22:16:17] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[22:16:18] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[22:16:18] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[22:16:18] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1610ms)
[22:16:18] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[22:16:18] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[22:16:18] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[22:16:18] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[22:16:18] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[22:16:18] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1092;4af1b8b
[22:16:18] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[22:16:18] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[22:16:18] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[22:16:18] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[22:16:19] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightFaweAdapter as the Bukkit adapter
[22:16:19] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-742
[22:16:19] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.5.2
[22:16:20] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[22:16:20] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[22:16:20] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[22:16:20] [Server thread/INFO]: [nightcore] Time zone set as Europe/Istanbul
[22:16:20] [Server thread/INFO]: [nightcore] Plugin loaded in 347 ms!
[22:16:20] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.6.1.222-Beta
[22:16:20] [Server thread/INFO]: [EconomyBridge] Enabling EconomyBridge v1.2.0
[22:16:20] [Server thread/INFO]: [EconomyBridge] Powered by nightcore
[22:16:20] [Server thread/INFO]: [EconomyBridge] Registered 'dummy' item handler.
[22:16:20] [Server thread/INFO]: [EconomyBridge] Registered 'excellentcrates' item handler.
[22:16:20] [Server thread/INFO]: [EconomyBridge] Vault detected! Loading currency...
[22:16:20] [Server thread/INFO]: [EconomyBridge] Currency registered: 'vault'.
[22:16:20] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_points'.
[22:16:20] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_level'.
[22:16:20] [Server thread/INFO]: [EconomyBridge] Currency registered: 'gold'.
[22:16:20] [Server thread/INFO]: [EconomyBridge] Currency registered: 'diamond'.
[22:16:20] [Server thread/INFO]: [EconomyBridge] Currency registered: 'emerald'.
[22:16:20] [Server thread/INFO]: [EconomyBridge] Plugin loaded in 77 ms!
[22:16:20] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[22:16:20] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[22:16:20] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[22:16:20] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[22:16:20] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[22:16:20] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[22:16:20] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[22:16:20] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[22:16:20] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[22:16:20] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[22:16:20] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[22:16:20] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[22:16:20] [Server thread/INFO]: Preparing level "world"
[22:16:21] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[22:16:21] [Server thread/INFO]: Preparing spawn area: 0%
[22:16:21] [Server thread/INFO]: Preparing spawn area: 18%
[22:16:21] [Server thread/INFO]: Time elapsed: 622 ms
[22:16:21] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[22:16:21] [Server thread/INFO]: Preparing spawn area: 0%
[22:16:21] [Server thread/INFO]: Time elapsed: 77 ms
[22:16:21] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.1
[22:16:21] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[22:16:21] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[22:16:22] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[22:16:22] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[22:16:22] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
[22:16:22] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[22:16:22] [Server thread/INFO]: [WorldGuard] Loading region data...
[22:16:22] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[22:16:22] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[22:16:22] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.2.2-b812
[22:16:22] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.2.2-b812" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[22:16:22] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[22:16:22] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[22:16:22] [Server thread/INFO]: Preparing spawn area: 0%
[22:16:22] [Server thread/INFO]: Time elapsed: 80 ms
[22:16:22] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
[22:16:22] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[22:16:22] [Server thread/INFO]: Preparing start region for dimension minecraft:baslangic
[22:16:22] [Server thread/INFO]: Preparing spawn area: 0%
[22:16:22] [Server thread/INFO]: Time elapsed: 99 ms
[22:16:22] [Server thread/INFO]: [WorldGuard] (baslangic) TNT ignition is PERMITTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] (baslangic) Lighters are PERMITTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] (baslangic) Lava fire is blocked.
[22:16:22] [Server thread/INFO]: [WorldGuard] (baslangic) Fire spread is UNRESTRICTED.
[22:16:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'baslangic'
[22:16:22] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: duello
[22:16:22] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[22:16:22] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[22:16:23] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled!
[22:16:23] [Server thread/INFO]: [Multiverse-Core] Version 4.2.2-b812 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[22:16:23] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3782)
[22:16:23] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[22:16:23] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[bT.
[22:16:23] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[null.
[22:16:23] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3782) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R4/boss/CraftBossBar
    at Citizens-2.0.38-b3782.jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2744) ~[Citizens-2.0.38-b3782.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at Citizens-2.0.38-b3782.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens-2.0.38-b3782.jar:?]
    at Citizens-2.0.38-b3782.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens-2.0.38-b3782.jar:?]
    at Citizens-2.0.38-b3782.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens-2.0.38-b3782.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-224-0cf7315]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R4.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[22:16:23] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3782)
[22:16:23] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[22:16:23] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[22:16:23] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[22:16:23] [Server thread/INFO]: [Essentials] No kits found to migrate.
[22:16:24] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[22:16:24] [Server thread/INFO]: [Essentials] Using locale tr
[22:16:24] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[22:16:24] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[22:16:24] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[22:16:24] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[22:16:24] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
[22:16:24] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[22:16:24] [Server thread/INFO]: [GriefPrevention] 1 total claims loaded.
[22:16:24] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[22:16:24] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[22:16:24] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[22:16:24] [Server thread/INFO]: [GriefPrevention] Boot finished.
[22:16:24] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.6
[22:16:24] [Server thread/WARN]: [SuperVanish] Unknown exception occurred!
[22:16:24] [Server thread/WARN]: [SuperVanish] Please report this issue!
[22:16:24] [Server thread/WARN]: [SuperVanish] Message: 
[22:16:24] [Server thread/WARN]: [SuperVanish]   Index 3 out of bounds for length 3
[22:16:24] [Server thread/WARN]: [SuperVanish] General information: 
[22:16:24] [Server thread/WARN]: [SuperVanish]   ServerVersion: 1.21.4-224-0cf7315 (MC: 1.21.4)
[22:16:24] [Server thread/WARN]: [SuperVanish]   PluginVersion: 6.2.6
[22:16:24] [Server thread/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v5.3.1, LuckPerms v5.4.9, Vault v1.7.3-b131, FastAsyncWorldEdit v2.13.1-SNAPSHOT-1092;4af1b8b, ProtocolLib v5.4.0-SNAPSHOT-742, WorldGuard v7.0.13+82fdc65, PlaceholderAPI v2.11.6, Multiverse-Core v4.2.2-b812, Citizens v2.0.38-SNAPSHOT (build 3782), Essentials v2.19.7, nightcore v2.7.5.2, GriefPrevention v16.18.4, BlueSlimeCore v2.6.1.222-Beta, EconomyBridge v1.2.0, packetevents v2.7.0, Skript v2.10.2, CombatLogX v11.1.0.7.1025, mcMMO v2.1.218-SNAPSHOT, NBTAPI v2.14.1, MineableSpawners v3.1.2, DecentHolograms v2.8.16, ExcellentCrates v6.1.3, LangUtils v2.4.x, AuctionMaster v4.1, WorldBorder v2.1.5, VeldoryaKese v1.6.1, uWorldReplacements v1.0, Tuccar v1.2.9, TradeSystem v2.6.3, TitleManager v2.3.6, TimerEvent v1.0.0, Themis v0.17.5, TAB v5.2.0, skRayFall v1.9.28, ServerListPlus v3.5.0, PlugManX v2.4.1, Playtimes v1.4.4, NerfPhantoms v1.3.0, MyCommand v5.7.4, Minepacks v2.4.31.6-T20250103114036, LPC v3.3.0, LeaderOS v1.1.9, IllegalStack v2.9.12a, HamsterAPI v0.2.4, GPClaimExpiration v1.0.0, FreedomChat v1.7.2, EconomyShopGUI v6.12.0, eBackup v1.3.1, DeluxeMenus v1.14.0-Release, CrazyCrates v4.9.4, ClearLag v3.2.2, ChatBrawl v2.1, BlockParticles v1.12, BetterSocial v1.4-BETA, BetterRTP v3.5.1, BetterProfiles v1.6-BETA, AuctionMasterItemDisplay v2.2, antiRedstoneClock v1.4.1,
[22:16:24] [Server thread/WARN]: [SuperVanish] Settings:
[22:16:24] [Server thread/WARN]: [SuperVanish]   MsgsVersion: 6.2.6
[22:16:24] [Server thread/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>false||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>false||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>false||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.Fly.Enable>false||InvisibilityFeatures.Fly.DisableOnReappear>false||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOnLogin>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>true||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>false||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>false||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>false||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>false||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>false||MessageOptions.ReappearOnQuitHideLeaveMsg>false||MessageOptions.AnnounceRealJoinQuitToAdmins>false||MessageOptions.AnnounceDeathToAdmins>false||MessageOptions.RemindVanishedOnJoin>false||MessageOptions.DisplayActionBar>false||RestrictiveOptions.PreventBlockBreaking>true||RestrictiveOptions.PreventBlockPlacing>true||RestrictiveOptions.PreventHittingEntities>true||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnableSuperTrailsHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>false||MiscellaneousOptions.UpdateChecker.NotifyAdmins>false||ConfigVersion>6.2.6||
[22:16:24] [Server thread/WARN]: [SuperVanish] StackTrace: 
[22:16:24] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[22:16:24] [Server thread/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.utils.VersionUtil.<init>(VersionUtil.java:12)
[22:16:24] [Server thread/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.SuperVanish.onEnable(SuperVanish.java:92)
[22:16:24] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:24] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:24] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:24] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:24] [Server thread/WARN]: [SuperVanish] Please include this information
[22:16:24] [Server thread/WARN]: [SuperVanish] if you report the issue.
[22:16:24] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.0
[22:16:24] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[22:16:24] [Server thread/INFO]: [Skript] Enabling Skript v2.10.2
[22:16:24] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.7.0)
[22:16:25] [ForkJoinPool.commonPool-worker-2/INFO]: [Skript] A new version of Skript is available: 2.11.0 (you're currently running 2.10.2)
[22:16:25] [ForkJoinPool.commonPool-worker-2/INFO]: Download it at: https://github.com/SkriptLang/Skript/releases/download/2.11.0/Skript-2.11.0.jar
[22:16:26] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[22:16:26] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.1.0.7.1025
[22:16:26] [Server thread/INFO]: CombatLogX başarıyla yüklendi.
[22:16:26] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[22:16:26] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Boss Bar v16.9'...
[22:16:26] [Server thread/INFO]: [CombatLogX]  
[22:16:26] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v16.23'...
[22:16:26] [Server thread/INFO]: [CombatLogX]  
[22:16:26] [Server thread/INFO]: [CombatLogX] Successfully enabled 2 expansions.
[22:16:26] [Server thread/INFO]: CombatLogX başarıyla etkinleştirildi.
[22:16:26] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.218-SNAPSHOT
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
[22:16:26] [Server thread/INFO]: [mcMMO] Loading locale from plugins\mcMMO\locales\locale_override.properties
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
[22:16:26] [Server thread/INFO]: [mcMMO] Platform String: 1.21.4-R0.1-SNAPSHOT
[22:16:26] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.21.4
[22:16:26] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[22:16:26] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
[22:16:26] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
[22:16:26] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_EMPTY
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_WATER_UNCRAFTABLE
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_ABSORPTION
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_BLINDNESS
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DECAY
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DULLNESS
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HASTE
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HEALTH_BOOST
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HUNGER
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_NAUSEA
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_RESISTANCE
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_SATURATION
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_ABSORPTION_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_BLINDNESS_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DECAY_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DULLNESS_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HASTE_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HEALTH_BOOST_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HUNGER_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_NAUSEA_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_RESISTANCE_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_SATURATION_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_ABSORPTION_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_BLINDNESS_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DECAY_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DULLNESS_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HASTE_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HEALTH_BOOST_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HUNGER_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_NAUSEA_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_RESISTANCE_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_SATURATION_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_EMPTY
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_ABSORPTION
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_BLINDNESS
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DECAY
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DULLNESS
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HASTE
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HEALTH_BOOST
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HUNGER
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_NAUSEA
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_RESISTANCE
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_SATURATION
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_ABSORPTION_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_BLINDNESS_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DECAY_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DULLNESS_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HASTE_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HEALTH_BOOST_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HUNGER_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_NAUSEA_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_RESISTANCE_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_SATURATION_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_ABSORPTION_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_BLINDNESS_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DECAY_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DULLNESS_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HASTE_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HEALTH_BOOST_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HUNGER_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_NAUSEA_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_RESISTANCE_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_SATURATION_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_EMPTY
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_ABSORPTION
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_BLINDNESS
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DECAY
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DULLNESS
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HASTE
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HEALTH_BOOST
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HUNGER
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_NAUSEA
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_RESISTANCE
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_SATURATION
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_ABSORPTION_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_BLINDNESS_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DECAY_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DULLNESS_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HASTE_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HEALTH_BOOST_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HUNGER_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_NAUSEA_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_RESISTANCE_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_SATURATION_EXTENDED
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_ABSORPTION_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_BLINDNESS_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DECAY_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DULLNESS_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HASTE_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HEALTH_BOOST_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HUNGER_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_NAUSEA_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_RESISTANCE_II
[22:16:26] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_SATURATION_II
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
[22:16:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
[22:16:26] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
[22:16:27] [ForkJoinPool.commonPool-worker-2/INFO]: [Skript] Loaded 5442 aliases in 1187ms
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
[22:16:28] [Server thread/INFO]: [mcMMO] (plugins\mcMMO\flatfile\mcmmo.users) Validating database file..
[22:16:28] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[22:16:28] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
[22:16:28] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
[22:16:28] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
[22:16:28] [Server thread/WARN]: Plugin 'mcMMO' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: nossr50, GJ, NuclearW, bm01, Glitchfinder, TfT_02, t00thpick1, Riking, electronicboy, kashike
[22:16:28] [Server thread/WARN]: Plugin 'mcMMO' is creating timing 'Command: ac' - this is deprecated behavior, please report it to the authors: nossr50, GJ, NuclearW, bm01, Glitchfinder, TfT_02, t00thpick1, Riking, electronicboy, kashike
[22:16:28] [Server thread/WARN]: Plugin 'mcMMO' is creating timing 'Command: pc' - this is deprecated behavior, please report it to the authors: nossr50, GJ, NuclearW, bm01, Glitchfinder, TfT_02, t00thpick1, Riking, electronicboy, kashike
[22:16:28] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[22:16:28] [Server thread/INFO]: [NBTAPI] Checking bindings...
[22:16:28] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[22:16:28] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[22:16:28] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[22:16:28] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[22:16:28] [Server thread/INFO]: [MineableSpawners] Enabling MineableSpawners v3.1.2
[22:16:29] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.16
[22:16:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[22:16:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[22:16:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[22:16:29] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v6.1.3
[22:16:29] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[22:16:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[22:16:29] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@4c1211b0
[22:16:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[22:16:29] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate openings.
[22:16:29] [Server thread/INFO]: [ExcellentCrates] Loaded 0 crate keys.
[22:16:29] [Server thread/INFO]: [ExcellentCrates] Loaded 3 rarities!
[22:16:29] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crates.
[22:16:29] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[22:16:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [6.1.3]
[22:16:29] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 462 ms!
[22:16:29] [Server thread/INFO]: [LangUtils] Enabling LangUtils v2.4.x
[22:16:29] [Server thread/INFO]: [LangUtils] tr_tr has been loaded.
[22:16:29] [Server thread/INFO]: [LangUtils] Language Utils has been enabled.(9ms)
[22:16:29] [Server thread/INFO]: [AuctionMaster] Enabling AuctionMaster v4.1
[22:16:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionmaster [1.0.0]
[22:16:29] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Deliveries SQL.
[22:16:29] [Server thread/WARN]: [AuctionMaster] Auctions database is ready!
[22:16:29] [Server thread/WARN]: [AuctionMaster] AuctionLists database is ready!
[22:16:29] [Server thread/WARN]: [AuctionMaster] PreviewData database is ready!
[22:16:29] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v2.1.5
[22:16:29] [Server thread/INFO]: [WorldBorder] [CONFIG] Using rectangular/square border, knockback of 3.0 blocks, and timer delay of 5.
[22:16:29] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[22:16:29] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: 0.0 Y: 66.0 Z: 32.0
[22:16:29] [Server thread/INFO]: [VeldoryaKese] Enabling VeldoryaKese v1.6.1
[22:16:29] [Server thread/INFO]: [uWorldReplacements] Enabling uWorldReplacements v1.0
[22:16:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: uworldreplacements [1.0]
[22:16:29] [Server thread/INFO]: [uWorldReplacements] PlaceholderAPI hook was successfully loaded.
[22:16:29] [Server thread/INFO]: [Tuccar] Enabling Tuccar v1.2.9
[22:16:29] [Server thread/ERROR]: [Tuccar] Failed to register events for class poyrazinan.com.tr.tuccar.listeners.Listeners because net/citizensnpcs/api/event/NPCRightClickEvent does not exist.
[22:16:29] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.3
[22:16:29] [Server thread/INFO]:  
[22:16:29] [Server thread/INFO]: __________________________________________________________
[22:16:29] [Server thread/INFO]:  
[22:16:29] [Server thread/INFO]:                        TradeSystem [2.6.3]
[22:16:29] [Server thread/INFO]:  
[22:16:29] [Server thread/INFO]: Status:
[22:16:29] [Server thread/INFO]:  
[22:16:29] [Server thread/INFO]: MC-Version: Paper (1.21.4)
[22:16:29] [Server thread/INFO]:  
[22:16:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[22:16:30] [Server thread/INFO]:   > Loading sounds
[22:16:30] [Server thread/INFO]:   > Loading blacklist
[22:16:30] [Server thread/INFO]:     ...got 3 blocked item(s)
[22:16:30] [Server thread/INFO]:   > Loading layouts
[22:16:30] [Server thread/INFO]:     ...got 5 layout(s)
[22:16:30] [Server thread/INFO]:   > Queuing database initializing task
[22:16:30] [Folia Async Scheduler Thread #3/INFO]: [TradeSystem] Database was started successfully.
[22:16:30] [Server thread/INFO]:  
[22:16:30] [Server thread/INFO]: Finished (515ms)
[22:16:30] [Server thread/INFO]:  
[22:16:30] [Server thread/INFO]: __________________________________________________________
[22:16:30] [Server thread/INFO]:  
[22:16:30] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.3.6
[22:16:30] [Server thread/INFO]: [TitleManager] Invalid version of CombatLogX minimum required version is version 10.X.X.X
[22:16:30] [Server thread/INFO]: [TimerEvent] Enabling TimerEvent v1.0.0*
[22:16:31] [Server thread/WARN]: [PlaceholderAPI] Nag author(s) [Hakan Kargın] of plugin TimerEvent about their usage of the deprecated PlaceholderHook class! This class will be removed in v2.13.0!
[22:16:31] [Server thread/INFO]: [Themis] Enabling Themis v0.17.5
[22:16:31] [Server thread/WARN]: [Themis] Couldn't find Floodgate which is required for Bedrock support
[22:16:31] [Server thread/INFO]: [TAB] Enabling TAB v5.2.0
[22:16:31] [Server thread/INFO]: [TAB] Loaded NMS hook in 5ms
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [config.yml] bossbar: Configuration section "bossbar" has unknown key "default-bars". Valid keys: [enabled, toggle-command, remember-toggle-choice, hidden-by-default, bars]
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [config.yml] scoreboard-teams: anti-override for scoreboard-teams is disabled in config. This is usually a mistake. If you notice the feature randomly breaking, enable it back.
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [config.yml] scoreboard-teams: Missing configuration section "scoreboard-teams.can-see-friendly-invisibles" of type Boolean, using default value false.
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "moderator". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "rehber". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "youtuber". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "baron". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "lord". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "elit". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "vezir". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:16:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "soylu". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[22:16:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.2.0]
[22:16:31] [Server thread/INFO]: [TAB] [WARN] Found a total of 11 issues.
[22:16:31] [Server thread/INFO]: [TAB] Enabled in 181ms
[22:16:31] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[22:16:31] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[22:16:31] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[22:16:31] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[22:16:31] [Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
[22:16:31] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[22:16:31] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[22:16:31] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[22:16:31] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[22:16:31] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[22:16:31] [Server thread/INFO]: [skRayFall] Bacon is ready!
[22:16:31] [Server thread/INFO]: [ServerListPlus] Enabling ServerListPlus v3.5.0
[22:16:31] [Server thread/INFO]: [ServerListPlus] [Core] Reloading configuration...
[22:16:31] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: ServerStatusConf
[22:16:31] [Server thread/WARN]: [ServerListPlus] [Core] Unknown configuration property: Stats @ PluginConf
[22:16:31] [Server thread/WARN]: [ServerListPlus] [Core] Unknown configuration property: Samples @ PluginConf
[22:16:31] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: PluginConf
[22:16:31] [Server thread/WARN]: [ServerListPlus] [Core] Could not load all configurations from the configuration file. Please make sure the syntax is correct. Type '/slp save' if you want to add the missing parts.
[22:16:31] [Server thread/INFO]: [ServerListPlus] ProtocolLib is no longer required (and used) by default when using Paper. If this causes compatibility issues with other plugins, try setting ProtocolLib: ENABLE
[22:16:31] [Server thread/INFO]: [ServerListPlus] [Core] Reloading saved player identities...
[22:16:31] [Server thread/INFO]: [ServerListPlus] Successfully loaded!
[22:16:31] [Server thread/INFO]: [ServerListPlus] ServerListPlus v3.5.0 enabled.
[22:16:31] [Server thread/INFO]: [Playtimes] Enabling Playtimes v1.4.4*
[22:16:31] [Server thread/INFO]: You are using an older version of PlayTimes!
[22:16:31] [Server thread/INFO]: Download the newest version here:
[22:16:31] [Server thread/INFO]: https://www.spigotmc.org/resources/58858/
[22:16:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PlayTimes [1.4.4]
[22:16:31] [Server thread/INFO]: [PlayTimes] PlaceholdersAPI Hooked!
[22:16:31] [Server thread/INFO]: [PlayTimes] Successfully loaded.
[22:16:31] [Server thread/INFO]: [NerfPhantoms] Enabling NerfPhantoms v1.3.0
[22:16:31] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[22:16:31] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[22:16:31] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[22:16:31] [Server thread/INFO]: | Command file(s) found : 1
[22:16:31] [Server thread/INFO]: | Config : Ready.
[22:16:31] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[22:16:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[22:16:31] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[22:16:31] [Server thread/INFO]: | Custom commands loaded : 21
[22:16:32] [Server thread/INFO]: | New update available : MyCommand v5.7.5
[22:16:32] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[22:16:32] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[22:16:32] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.6-T20250103114036
[22:16:32] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[22:16:32] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[22:16:32] [Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
[22:16:32] [Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
[22:16:32] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: turkish  Author: imZesha
[22:16:32] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[22:16:32] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[22:16:32] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[22:16:32] [Server thread/INFO]: [Minepacks] Loading item translations ...
[22:16:32] [Server thread/INFO]: [Minepacks] Finished loading item translations for 826 items.
[22:16:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.31.6-T20250103114036]
[22:16:32] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[22:16:32] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[22:16:32] [Server thread/INFO]: [LPC] Enabling LPC v3.3.0
[22:16:32] [Server thread/INFO]: [LeaderOS] Enabling LeaderOS v1.1.9
[22:16:32] [Server thread/WARN]: [LeaderOS] LeaderOS » Please change the API URL in the config.
[22:16:32] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.9.12a
[22:16:32] [Server thread/INFO]: [IllegalStack/IllegalStack] The following materials are allowed to have stacks larger than the vanilla size: DIAMOND_PICKAXE NETHERITE_HELMET DIAMOND_SHOVEL NETHERITE_PICKAXE DIAMOND_HELMET DIAMOND_SWORD FISHING_ROD NETHERITE_HOE BOW NETHERITE_SWORD NETHERITE_LEGGINGS DIAMOND_HOE DIAMOND_CHESTPLATE DIAMOND_BOOTS POTION NETHERITE_CHESTPLATE NETHERITE_AXE NETHERITE_SHOVEL NETHERITE_BOOTS DIAMOND_LEGGINGS DIAMOND_AXE 
[22:16:32] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT an ArcLight hybrid environment, continuing as normal.
[22:16:32] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Forge hybrid environment, continuing as normal.
[22:16:32] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Fabric hybrid environment, continuing as normal.
[22:16:32] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is a Paper server, enabling Paper features.
[22:16:32] [Server thread/INFO]: [IllegalStack/IllegalStack] Server does NOT have Folia components, continuing as normal.
[22:16:32] [Server thread/INFO]: [IllegalStack/IllegalStack] Chat Components found! Enabling clickable commands in /istack
[22:16:32] [Server thread/INFO]: [IllegalStack/fListener] MC Version < 1.13 detected!
[22:16:32] [Server thread/INFO]: [IllegalStack/Listener113] Enabling 1.13+ Checks
[22:16:32] [Server thread/INFO]: [IllegalStack/IllegalStack] ZombieVillagerTransformChance is set to 65 *** Only really matters if the difficulty is set to HARD ***
[22:16:32] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.4
[22:16:32] [Server thread/INFO]: [GPClaimExpiration] Enabling GPClaimExpiration v1.0.0
[22:16:32] [Server thread/INFO]: [FreedomChat] Enabling FreedomChat v1.7.2
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.12.0
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: lang-tr.yml dil dosyasını dil dosyası olarak kullan.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: /sections/ konumundan 16 bölüm yapılandırmalarının yüklenmesi tamamlandı
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: /shops/ adresinden 16 mağaza yapılandırmasının yüklenmesi tamamlandı
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Mağaza ayarları güncelleniyor...
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Tüm 14 mağaza bölümleri için 1 ekonomi sağlayıcılarının yüklenmesi tamamlandı.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Minecraft sürümü 1.21.4 kullanılıyor...
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner karşılayan, configde DEFAULT olarak belirlendi
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Eklentinin varsayılan yumurtlayıcılarını kullanma...
[22:16:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.1.0]
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Hata ayıklama modu etkinleştirildi!
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Tüm öğeler yükleniyor...
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [DEBUG]: Found incompatible component tag for current minecraft version: Did you mean 'repair_cost' instead of 'RepairCost'?
Please change the value manually to get rid of this message
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: Config.yml dosyasındaki öge yolu yapılandırması: sold-items-ignored-NBTtags
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Miscellaneous' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Blocks' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Dyes' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Spawners' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Decoration' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Potions' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Redstone' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Enchanting' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Mobs' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Farming' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [ERROR]: Öge yerinin 0 - 18 aralığında olması gerektiğinden 'Food' mağaza bölümü oluşturulamıyor.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Miscellaneous in the main shop-inventory has automatically been changed to '0' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Blocks in the main shop-inventory has automatically been changed to '1' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Dyes in the main shop-inventory has automatically been changed to '2' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Spawners in the main shop-inventory has automatically been changed to '3' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Decoration in the main shop-inventory has automatically been changed to '4' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Potions in the main shop-inventory has automatically been changed to '5' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Redstone in the main shop-inventory has automatically been changed to '6' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Enchanting in the main shop-inventory has automatically been changed to '7' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Mobs in the main shop-inventory has automatically been changed to '8' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Farming in the main shop-inventory has automatically been changed to '9' because it was already used or could not be found.
[22:16:32] [Server thread/INFO]: [EconomyShopGUI] [WARN]: The place of shop Food in the main shop-inventory has automatically been changed to '10' because it was already used or could not be found.
[22:16:33] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Tamamlandı!
[22:16:33] [Server thread/INFO]: [eBackup] Enabling eBackup v1.3.1
[22:16:33] [Server thread/INFO]: [eBackup] Initializing eBackup...
[22:16:33] [Server thread/INFO]: [eBackup] Configured the cron task to be: at 04:00
[22:16:33] [Server thread/INFO]: [eBackup] Plugin initialized!
[22:16:33] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[22:16:33] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[22:16:33] [Server thread/INFO]: [DeluxeMenus] 6 GUI menus loaded!
[22:16:33] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[22:16:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[22:16:33] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v4.9.4
[22:16:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [4.9.4]
[22:16:33] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[22:16:33] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[22:16:33] [Server thread/INFO]: [ClearLag] Loading modules...
[22:16:33] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[22:16:33] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[22:16:33] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[22:16:33] [Server thread/INFO]: [ChatBrawl] Enabling ChatBrawl v2.1
[22:16:33] [Server thread/INFO]: Yarış başlatıldı.
[22:16:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cb [2.1]
[22:16:33] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12
[22:16:33] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[22:16:33] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[22:16:33] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[22:16:33] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[22:16:33] [Server thread/INFO]: [BetterSocial] Enabling BetterSocial v1.4-BETA
[22:16:33] [Server thread/INFO]: [BetterSocial] Inventory title with support for more than 32 characters. Skipping..
[22:16:33] [Server thread/INFO]: [BetterSocial] Hex colors are available! Ready for RGB..
[22:16:33] [Server thread/INFO]: [BetterSocial] Old constructor for HoverEvent found! Using it..
[22:16:33] [Server thread/INFO]: [BetterSocial] New sendTitle method found! Using it..
[22:16:33] [Server thread/INFO]: [BetterSocial] New setUnbreakable method found! Using it..
[22:16:33] [Server thread/INFO]: [BetterSocial] New isUnbreakable method found! Using it..
[22:16:33] [Server thread/INFO]:   ___      _   _           ___          _      _  Running v1.4-BETA (v1_21)
[22:16:33] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _/ __| ___  __(_)__ _| | Server Paper v1.21.4-224-0cf7315 (MC: 1.21.4)
[22:16:33] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_\__ \/ _ \/ _| / _` | | Discord for support: https://alonsoaliaga.com/discord
[22:16:33] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |___/\___/\__|_\__,_|_| Thanks for using my plugin ❤!
[22:16:33] [Server thread/INFO]:           Developed by AlonsoAliaga
[22:16:33] [Server thread/INFO]: 
[22:16:33] [Server thread/INFO]: ==============================================================================================
[22:16:33] [Server thread/INFO]: [BetterSocial] You are using a Paper fork (Paper), plugin should work fine!
[22:16:33] [Server thread/INFO]: [BetterSocial] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[22:16:33] [Server thread/INFO]: ==============================================================================================
[22:16:33] [Server thread/INFO]: 
[22:16:33] [Server thread/INFO]: [BetterSocial] BungeeCord action bar available. Hooking..
[22:16:33] [Server thread/INFO]: [BetterSocial] ProtocolLib found! Checking..
[22:16:33] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[22:16:33] [Server thread/INFO]: [Auto-update] File social.yml is up-to-date!
[22:16:33] [Server thread/INFO]: [BetterSocial] Old ItemStack constructor is available!
[22:16:33] [Server thread/INFO]: [BetterSocial] SkullMeta#setOwningPlayer method is available for heads.
[22:16:33] [Server thread/INFO]: [BetterSocial] SkullMeta#setOwner method is available for heads.
[22:16:33] [Server thread/INFO]: [BetterSocial] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[22:16:33] [Server thread/INFO]: [BetterSocial] New setUnbreakable method found! Using it..
[22:16:33] [Server thread/INFO]: [BetterSocial] New setOwningPlayer method is available!
[22:16:33] [Server thread/INFO]: [BetterSocial] Old Bukkit#getOfflinePlayer(String name) method is available!
[22:16:33] [Server thread/INFO]: [BetterSocial] New isUnbreakable method found! Using it..
[22:16:34] [Server thread/INFO]: [BetterSocial] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[22:16:34] [Server thread/INFO]: [BetterSocial] [SQLite] Attempting to create 'bettersocial' table..
[22:16:34] [Server thread/INFO]: [SQLite] Connecting to database 'database-bettersocial.db'!
[22:16:34] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.47.0
[22:16:34] [Server thread/INFO]: [SQLite] Successfully connected to database!
[22:16:34] [Server thread/INFO]: [BetterSocial] [SQLite] Table 'bettersocial' has been created if didn't exist.
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'twitter' is enabled in config. Loading..
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'twitter' successfully enabled! Slot: 10
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'youtube' is enabled in config. Loading..
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'youtube' successfully enabled! Slot: 11
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'instagram' is enabled in config. Loading..
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'instagram' successfully enabled! Slot: 12
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'twitch' is enabled in config. Loading..
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'twitch' successfully enabled! Slot: 14
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'facebook' is enabled in config. Loading..
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'facebook' successfully enabled! Slot: 15
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'discord' is enabled in config. Loading..
[22:16:34] [Server thread/INFO]: [BetterSocial] Media 'discord' successfully enabled! Slot: 16
[22:16:34] [Server thread/INFO]: [BetterSocial] Social media 'youtube' column already registered in database!
[22:16:34] [Server thread/INFO]: [BetterSocial] Social media 'twitter' column already registered in database!
[22:16:34] [Server thread/INFO]: [BetterSocial] Social media 'twitch' column already registered in database!
[22:16:34] [Server thread/INFO]: [BetterSocial] Social media 'discord' column already registered in database!
[22:16:34] [Server thread/INFO]: [BetterSocial] Social media 'facebook' column already registered in database!
[22:16:34] [Server thread/INFO]: [BetterSocial] Social media 'instagram' column already registered in database!
[22:16:34] [Server thread/INFO]: [BetterSocial] PlaceholderAPI found! Hooking..
[22:16:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bettersocial [1.4-BETA]
[22:16:34] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.5.1
[22:16:34] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
[22:16:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.5.1]
[22:16:34] [Server thread/INFO]: [BetterProfiles] Enabling BetterProfiles v1.6-BETA
[22:16:34] [Server thread/INFO]:   ___      _   _           ___          __ _ _          Running v1.6-BETA (v1_21)
[22:16:34] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ \_ _ ___ / _(_) |___ ___  Server Paper v1.21.4-224-0cf7315 (MC: 1.21.4)
[22:16:34] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_|  _/ '_/ _ \  _| | / -_|_-<  Discord for support: https://alonsoaliaga.com/discord
[22:16:34] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |_| |_| \___/_| |_|_\___/__/  Thanks for using my plugin ❤!
[22:16:34] [Server thread/INFO]:           Developed by AlonsoAliaga
[22:16:34] [Server thread/INFO]: 
[22:16:34] [Server thread/INFO]: ==============================================================================================
[22:16:34] [Server thread/INFO]: [BetterProfiles] You are using a Paper fork (Paper), plugin should work fine!
[22:16:34] [Server thread/INFO]: [BetterProfiles] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[22:16:34] [Server thread/INFO]: ==============================================================================================
[22:16:34] [Server thread/INFO]: 
[22:16:34] [Server thread/INFO]: [Auto-update] Configuration items.yml is up-to-date!
[22:16:34] [Server thread/INFO]: [Auto-update] Configuration config.yml is up-to-date!
[22:16:34] [Server thread/INFO]: [BetterProfiles] BungeeCord action bar available. Hooking..
[22:16:34] [Server thread/INFO]: [BetterProfiles] ProtocolLib found! Checking..
[22:16:34] [Server thread/INFO]: [BetterProfiles] ================================================================================
[22:16:34] [Server thread/INFO]: [BetterProfiles] This is not an error! AlonsoLib is required for some commands command
[22:16:34] [Server thread/INFO]: [BetterProfiles] modifiers like [JSON] and related ones. These modifiers won't be available.
[22:16:34] [Server thread/INFO]: [BetterProfiles] Download latest version of AlonsoLib in https://alonsoaliaga.com/AlonsoLib
[22:16:34] [Server thread/INFO]: [BetterProfiles] For more questions join us on https://alonsoaliaga.com/discord
[22:16:34] [Server thread/INFO]: [BetterProfiles] Plugin will continue working without issues. Only those features won't work.
[22:16:34] [Server thread/INFO]: [BetterProfiles] ================================================================================
[22:16:34] [Server thread/INFO]: [BetterProfiles] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[22:16:34] [Server thread/INFO]: [BetterProfiles] [SQLite] Attempting to create 'betterprofiles' table..
[22:16:34] [Server thread/INFO]: [SQLite] Connecting to database 'database-betterprofiles.db'!
[22:16:34] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.47.0
[22:16:34] [Server thread/INFO]: [SQLite] Successfully connected to database!
[22:16:34] [Server thread/INFO]: [BetterProfiles] [SQLite] Table 'betterprofiles' has been created if didn't exist.
[22:16:34] [Server thread/INFO]: [BetterProfiles] Successfully loaded 1 books!
[22:16:34] [Server thread/INFO]: [BetterProfiles] Offline command is disabled. Skipping..
[22:16:34] [Server thread/INFO]: [BetterProfiles] Enabled profile on command.
[22:16:34] [Server thread/INFO]: [BetterProfiles] Enabling real time update profile..
[22:16:34] [Server thread/INFO]: [BetterProfiles] PlayerSwapHandItemsEvent class found. Enabling..
[22:16:34] [Server thread/INFO]: [BetterProfiles] Real time profile update is enabled.
[22:16:34] [Server thread/INFO]: [BetterProfiles] Old ItemStack constructor is available!
[22:16:34] [Server thread/INFO]: [BetterProfiles] SkullMeta#setOwningPlayer method is available for heads.
[22:16:34] [Server thread/INFO]: [BetterProfiles] SkullMeta#setOwner method is available for heads.
[22:16:34] [Server thread/INFO]: [BetterProfiles] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[22:16:34] [Server thread/INFO]: [BetterProfiles] New setUnbreakable method found! Using it..
[22:16:34] [Server thread/INFO]: [BetterProfiles] New setOwningPlayer method is available!
[22:16:34] [Server thread/INFO]: [BetterProfiles] Old Bukkit#getOfflinePlayer(String name) method is available!
[22:16:34] [Server thread/INFO]: [BetterProfiles] New isUnbreakable method found! Using it..
[22:16:34] [Server thread/INFO]: [BetterProfiles] Loaded 6 items for 6 slots!
[22:16:34] [Server thread/INFO]: [BetterProfiles] PlaceholderAPI found! Hooking..
[22:16:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterprofiles [1.6-BETA]
[22:16:34] [Server thread/INFO]: [BetterProfiles] Bungee messaging system is allowed in this server. Enabling..
[22:16:34] [Server thread/INFO]: [AuctionMasterItemDisplay] Enabling AuctionMasterItemDisplay v2.2
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:84)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:85)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:86)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:87)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:88)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:89)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:90)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:91)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:92)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:93)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:94)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:95)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:96)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:97)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:98)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:99)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:100)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:101)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:102)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:103)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:104)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/WARN]: java.lang.NullPointerException: Profile name must not be null
[22:16:34] [Server thread/WARN]:     at java.base/java.util.Objects.requireNonNull(Objects.java:259)
[22:16:34] [Server thread/WARN]:     at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.utils.setSkullOwner(utils.java:124)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.Heads.<init>(Heads.java:106)
[22:16:34] [Server thread/WARN]:     at AuctionMasterItemDisplay.jar//me.qKing12.AuctionMasterItemDisplay.AuctionMasterItemDisplay.onEnable(AuctionMasterItemDisplay.java:54)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:16:34] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:16:34] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:16:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[22:16:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:34] [Server thread/INFO]: [antiRedstoneClock] Enabling antiRedstoneClock v1.4.1
[22:16:34] [Server thread/INFO]: [antiRedstoneClock] Enabling Metrics
[22:16:34] [Server thread/INFO]: [antiRedstoneClock] Metrics loaded
[22:16:34] [Server thread/WARN]: [antiRedstoneClock] PlotSquared hasn't been found!
[22:16:34] [Server thread/INFO]: [antiRedstoneClock] Plugin loaded in 9 ms
[22:16:34] [Server thread/INFO]: [spark] Starting background profiler...
[22:16:34] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windowsserver2022/amd64), so the built-in Java engine will be used instead.
[22:16:34] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[22:16:34] [Server thread/INFO]: Done preparing level "world" (13.961s)
[22:16:34] [Server thread/INFO]: Starting remote control listener
[22:16:34] [Server thread/INFO]: Thread RCON Listener started
[22:16:34] [Server thread/INFO]: RCON running on 0.0.0.0:25575
[22:16:34] [Server thread/INFO]: Running delayed init tasks
[22:16:34] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[22:16:34] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[22:16:34] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[22:16:34] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[22:16:34] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[22:16:35] [Server thread/INFO]: [Skript] Loading variables...
[22:16:35] [ForkJoinPool.commonPool-worker-2/ERROR]: [PlaceholderAPI] Failed to load expansion Expansion-townychat.jar (is a dependency missing?)
java.lang.NoClassDefFoundError: com/palmergames/bukkit/towny/exceptions/NotRegisteredException
    at java.base/java.lang.Class.getDeclaredMethods0(Native Method) ~[?:?]
    at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3578) ~[?:?]
    at java.base/java.lang.Class.getDeclaredMethods(Class.java:2676) ~[?:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$findExpansionInFile$7(LocalExpansionManager.java:429) ~[PlaceholderAPI-2.11.6.jar:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.palmergames.bukkit.towny.exceptions.NotRegisteredException
    at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:445) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 11 more
[22:16:35] [Craft Scheduler Thread - 2 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[22:16:35] [Craft Scheduler Thread - 5 - Essentials/INFO]: [Essentials] Fetching version information...
[22:16:35] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'BlueSlimeCore'.
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 2.6.1.222-Beta
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 2.9.6.454
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/83189/
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'CombatLogX'.
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 11.1.0.7.1025
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 11.5.0.0.1242
[22:16:35] [Craft Scheduler Thread - 29 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/31689/
[22:16:35] [Server thread/INFO]: [Skript] Loaded 14 variables in 0.4 seconds
[22:16:35] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: [DecentHolograms] Loaded 13 holograms!
[22:16:35] [Server thread/INFO]: [Skript] Line 86: (genel.sk)
[22:16:35] [Server thread/INFO]:     a vehicle cannot be saved, i.e. the contents of the variable {bannedItems::*} will be lost when the server stops.
[22:16:35] [Server thread/INFO]:     Line: add powered minecart to {bannedItems::*}
[22:16:35] [Server thread/INFO]:  
[22:16:35] [Server thread/INFO]: [Skript] Line 90: (genel.sk)
[22:16:35] [Server thread/INFO]:     a vehicle cannot be saved, i.e. the contents of the variable {bannedItems::*} will be lost when the server stops.
[22:16:35] [Server thread/INFO]:     Line: add hopper minecart to {bannedItems::*}
[22:16:35] [Server thread/INFO]:  
[22:16:35] [Server thread/INFO]: [Skript] Line 91: (genel.sk)
[22:16:35] [Server thread/INFO]:     a vehicle cannot be saved, i.e. the contents of the variable {bannedItems::*} will be lost when the server stops.
[22:16:35] [Server thread/INFO]:     Line: add storage minecart to {bannedItems::*}
[22:16:35] [Server thread/INFO]:  
[22:16:36] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[22:16:36] [Server thread/INFO]: [Skript] Loaded 1 script with a total of 36 structures in 0.7 seconds
[22:16:36] [Server thread/INFO]: [Skript] Finished loading.
[22:16:36] [Server thread/WARN]: [ExcellentCrates] Problems in 'oy_kasas' crate (plugins\ExcellentCrates\crates\oy_kasas.yml):
[22:16:36] [Server thread/ERROR]: [ExcellentCrates] -> Animation is invalid!
[22:16:36] [Server thread/ERROR]: [ExcellentCrates] -> No rewards defined!
[22:16:36] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[22:16:36] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.3.2, you're on: 5.3.1
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [1.0.1]
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.4.0]
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: griefprevention [1.7.0]
[22:16:36] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 1 script loaded!
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.0]
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.1-R2]
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0]
[22:16:36] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion mcmmo. Identifier is already in use.
[22:16:36] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion mcmmo due to an unknown issue.
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: pinger [1.0.1]
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.2]
[22:16:36] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[22:16:36] [Server thread/WARN]:     at com.extendedclip.papi.expansion.server.ServerExpansion.<init>(ServerExpansion.java:65)
[22:16:36] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
[22:16:36] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
[22:16:36] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
[22:16:36] [Server thread/WARN]:     at PlaceholderAPI-2.11.6.jar//me.clip.placeholderapi.expansion.manager.LocalExpansionManager.createExpansionInstance(LocalExpansionManager.java:453)
[22:16:36] [Server thread/WARN]:     at PlaceholderAPI-2.11.6.jar//me.clip.placeholderapi.expansion.manager.LocalExpansionManager.register(LocalExpansionManager.java:173)
[22:16:36] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
[22:16:36] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179)
[22:16:36] [Server thread/WARN]:     at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708)
[22:16:36] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509)
[22:16:36] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
[22:16:36] [Server thread/WARN]:     at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921)
[22:16:36] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
[22:16:36] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682)
[22:16:36] [Server thread/WARN]:     at PlaceholderAPI-2.11.6.jar//me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$registerAll$4(LocalExpansionManager.java:366)
[22:16:36] [Server thread/WARN]:     at PlaceholderAPI-2.11.6.jar//me.clip.placeholderapi.util.Futures.lambda$null$0(Futures.java:46)
[22:16:36] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[22:16:36] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[22:16:36] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[22:16:36] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[22:16:36] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.0]
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[22:16:36] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion towny due to a missing plugin: Towny
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.7.0]
[22:16:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.3]
[22:16:36] [Server thread/INFO]: 11 placeholder hook(s) registered! 7 placeholder hook(s) have an update available.
[22:16:36] [Server thread/INFO]: Done (36.331s)! For help, type "help"
[22:16:36] [Craft Scheduler Thread - 5 - Essentials/WARN]: [Essentials] There is a new EssentialsX version available for download: 2.21.0.
[22:16:36] [Craft Scheduler Thread - 5 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html?branch=stable
[22:16:39] [Craft Scheduler Thread - 16 - GPClaimExpiration/INFO]: [GriefPrevention] [GPClaimExpiration] Hooked into permissions system: LuckPerms. Ready to check offline permissions!
[22:16:44] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[22:16:44] [Server thread/INFO]:  
-------- Blok Yarışı --------
 
 Aşağıdaki bloğu ilk kıran kazanır!
 
 ⇴ 5 adet Kırık Taş
 
--------------------------