Paste #128731: Logs

Date: 2024/12/03 07:18:59 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[18:15:20] [ServerMain/INFO]: [bootstrap] Running Java 21 (Java HotSpot(TM) 64-Bit Server VM 21.0.5+9-LTS-239; Oracle Corporation null) on Windows 10 10.0 (amd64)
[18:15:20] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21-130-master@b1b5d4c (2024-08-10T10:02:42Z) for Minecraft 1.21
[18:15:20] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[18:15:22] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins\Citizens-2.0.36-b3642.jar'...
[18:15:24] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins\Citizens-2.0.36-b3642.jar' in 2163ms.
[18:15:24] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[18:15:24] [ServerMain/INFO]: [PluginInitializerManager] Initialized 60 plugins
[18:15:24] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - CrazyCrates (3.6)
[18:15:24] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (59):
 - AdvancedPortals (0.9.3), AuthMe (5.6.0-bCUSTOM), AutoPickup (1.4.4-SNAPSHOT), AxShulkers (1.16.0), BetterJails (1.5-SNAPSHOT), CataMines (2.5.11), Chunky (1.2.217), Citizens (2.0.36-SNAPSHOT (build 3642)), ClearLag (3.2.2), CommandWhitelist (2.8.2), DecentHolograms (2.8.12), DeluxeMenus (1.14.0-Release), Essentials (2.21.0-dev+129-2ac37d8), EssentialsChat (2.21.0-dev+129-2ac37d8), ExecutableItems (6.23.10.28), FastAsyncWorldEdit (2.12.3-SNAPSHOT-987;30c46cc), GrimAC (2.3.67), HealthBar (1.0), HubThat (10.1.184), InteractiveChat (4.2.10.2), InvSeePlusPlus (0.29.6), InventoryRollbackPlus (1.6.20), ItemEdit (3.5.5), ItemEffects (1.2.8), ItemTag (3.5.1), LPC (3.6.0), LibsDisguises (10.0.44), LiteBans (2.14.1), Log4ShellFix (1.0), LuckPerms (5.4.131), MiniMOTD (2.1.3), Multiverse-Core (4.3.1-b861), MythicMobs (5.5.1-9aedaa15), NightVision (2.0), PL-Hide (1.5.22), PinataParty (2.63.6), PlaceholderAPI (2.11.6), PlayerKits (2.27.1), PlayerVaults (4.2.11), PlugManX (2.3.0), ProtocolLib (5.4.0-SNAPSHOT-736), PvPManager (3.18.26), SCore (4.23.10.28), ServerAntiVPN (1.0.0), Shopkeepers (2.23.2), SimpleClans (2.19.2-05e7abc), SkQuery (4.1.10), SkinsRestorer (15.4.4), Skript (2.9.4), Sonar (2.1.10), TAB (5.0.1), TimerEvent (1.0.0), TradeSystem (2.6.2), ViaBackwards (5.1.1), ViaVersion (5.1.1), WorldGuard (7.0.12+829a4a4), eBackup (1.3.1), pvpstats (1.11.52), skRayFall (1.9.28)
[18:15:29] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[18:15:31] [ServerMain/INFO]: Loaded 1290 recipes
[18:15:31] [ServerMain/INFO]: Loaded 1399 advancements
[18:15:31] [Server thread/INFO]: Starting minecraft server version 1.21
[18:15:31] [Server thread/INFO]: Loading properties
[18:15:31] [Server thread/INFO]: This server is running Paper version 1.21-130-master@b1b5d4c (2024-08-10T10:02:42Z) (Implementing API version 1.21-R0.1-SNAPSHOT)
[18:15:32] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[18:15:32] [Server thread/INFO]: Server Ping Player Sample Count: 12
[18:15:32] [Server thread/INFO]: Using 4 threads for Netty based IO
[18:15:33] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and population gen parallelism of 2 threads
[18:15:33] [Server thread/INFO]: Default game type: SURVIVAL
[18:15:33] [Server thread/INFO]: Generating keypair
[18:15:33] [Server thread/INFO]: Starting Minecraft server on *:25565
[18:15:33] [Server thread/INFO]: Using default channel type
[18:15:33] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[18:15:33] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[18:15:33] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load 'plugins\.paper-remapped\InteractiveChat-4.2.10.2.jar' in 'plugins\.paper-remapped'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [Vault]. Please download and install these plugins to run 'InteractiveChat'.
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:546) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:292) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\ch\ethz\globis\phtree\phtree\2.8.1\phtree-2.8.1.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-platform-bukkit\4.3.3\adventure-platform-bukkit-4.3.3.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-platform-api\4.3.3\adventure-platform-api-4.3.3.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.3\adventure-text-serializer-bungeecord-4.3.3.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-platform-facet\4.3.3\adventure-platform-facet-4.3.3.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-platform-viaversion\4.3.3\adventure-platform-viaversion-4.3.3.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[18:15:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\net\kyori\adventure-text-serializer-legacy\4.16.0\adventure-text-serializer-legacy-4.16.0.jar
[18:15:37] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[18:15:47] [Server thread/WARN]: Legacy plugin TimerEvent v1.0.0 does not specify an api-version.
[18:15:48] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loading 2 libraries... please wait
[18:15:48] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\com\zaxxer\HikariCP\4.0.3\HikariCP-4.0.3.jar
[18:15:48] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\libraries\org\slf4j\slf4j-api\2.0.13\slf4j-api-2.0.13.jar
[18:15:48] [Server thread/WARN]: Legacy plugin NightVision v2.0 does not specify an api-version.
[18:15:48] [Server thread/WARN]: Legacy plugin Log4ShellFix v1.0 does not specify an api-version.
[18:15:49] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.1.1
[18:15:49] [Server thread/INFO]: [ViaVersion] ViaVersion 5.1.1 is now loaded. Registering protocol transformers and injecting...
[18:15:50] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[18:15:51] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[18:15:52] [Server thread/INFO]: [ViaBackwards] Loading translations...
[18:15:52] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[18:15:53] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.3-SNAPSHOT-987;30c46cc
[18:15:53] [Server thread/WARN]: 
**********************************************
** You are using the Spigot-mapped FAWE jar on a modern Paper version.
** This will result in slower first-run times and wasted disk space from plugin remapping.
** Download the Paper FAWE jar from Modrinth to avoid this: https://modrinth.com/plugin/fastasyncworldedit/
**********************************************
[18:15:57] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@6608c876]
[18:15:57] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-736
[18:15:57] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[18:15:57] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[18:15:57] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[18:15:57] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44
[18:15:58] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.12
[18:15:58] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.5.1-9aedaa15
[18:15:58] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[18:15:58] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[18:15:58] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.14.1
[18:15:58] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[18:15:58] [Server thread/INFO]: [SCore] Loading server plugin SCore v4.23.10.28
[18:15:58] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+129-2ac37d8
[18:15:58] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.36-SNAPSHOT (build 3642)
[18:15:58] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.4
[18:15:58] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.1.1
[18:15:58] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.1
[18:15:58] [Server thread/INFO]: [SimpleClans] Loading server plugin SimpleClans v2.19.2-05e7abc
[18:15:58] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.5.5
[18:15:58] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.2
[18:15:58] [Server thread/INFO]: [TimerEvent] Loading server plugin TimerEvent v1.0.0
[18:15:58] [Server thread/INFO]: [Sonar] Loading server plugin Sonar v2.1.10
[18:15:58] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[18:15:58] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.1.10
[18:15:58] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.4.4
[18:15:58] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.2
[18:16:00] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (1434 ms).
[18:16:00] [Server thread/INFO]: [Shopkeepers] Loading config.
[18:16:00] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[18:16:00] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[18:16:00] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[18:16:00] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[18:16:00] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[18:16:00] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[18:16:00] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[18:16:00] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[18:16:00] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[18:16:00] [Server thread/INFO]: [pvpstats] Loading server plugin pvpstats v1.11.52
[18:16:00] [Server thread/INFO]: [pvpstats] Loaded config file!
[18:16:00] [Server thread/WARN]: [pvpstats] Specific stats can be turned off as they are never used, they are intended for SQL and web frontend usage!
[18:16:00] [Server thread/WARN]: [pvpstats] Please either switch to SQLite or re-enable this by setting 'YML.collectPreciseOverride' to true
[18:16:00] [Server thread/WARN]: [pvpstats] Database: YML
[18:16:00] [Server thread/INFO]: [pvpstats] Database Initializing
[18:16:00] [Server thread/INFO]: [pvpstats] Database connection successful
[18:16:00] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.18.26
[18:16:00] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.0
[18:16:00] [Server thread/INFO]: true
[18:16:00] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.11
[18:16:00] [Server thread/INFO]: [PlayerKits] Loading server plugin PlayerKits v2.27.1
[18:16:00] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.22
[18:16:00] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.63.6
[18:16:00] [Server thread/INFO]: [NightVision] Loading server plugin NightVision v2.0
[18:16:00] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.3
[18:16:00] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[18:16:00] [Server thread/INFO]: [Log4ShellFix] Loading server plugin Log4ShellFix v1.0
[18:16:00] [Server thread/INFO]: [ItemEffects] Loading server plugin ItemEffects v1.2.8
[18:16:00] [Server thread/INFO]: [ItemTag] Loading server plugin ItemTag v3.5.1
[18:16:00] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.29.6
[18:16:00] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.20
[18:16:00] [Server thread/INFO]: [HubThat] Loading server plugin HubThat v10.1.184
[18:16:00] [Server thread/INFO]: [HealthBar] Loading server plugin HealthBar v1.0
[18:16:00] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.67
[18:16:01] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[18:16:05] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v6.23.10.28
[18:16:05] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+129-2ac37d8
[18:16:05] [Server thread/INFO]: [eBackup] Loading server plugin eBackup v1.3.1
[18:16:05] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[18:16:05] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[18:16:05] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v3.6
[18:16:05] [Server thread/INFO]: [CommandWhitelist] Loading server plugin CommandWhitelist v2.8.2
[18:16:05] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[18:16:05] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.2.217
[18:16:05] [Server thread/INFO]: [CataMines] Loading server plugin CataMines v2.5.11
[18:16:05] [Server thread/INFO]: [BetterJails] Loading server plugin BetterJails v1.5-SNAPSHOT
[18:16:05] [Server thread/INFO]: [AxShulkers] Loading server plugin AxShulkers v1.16.0
[18:16:05] [Server thread/INFO]: [AutoPickup] Loading server plugin AutoPickup v1.4.4-SNAPSHOT
[18:16:05] [Server thread/INFO]: [AuthMe] Loading server plugin AuthMe v5.6.0-bCUSTOM
[18:16:05] [Server thread/INFO]: [ServerAntiVPN] Loading server plugin ServerAntiVPN v1.0.0
[18:16:05] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v0.9.3
[18:16:05] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[18:16:05] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.3-SNAPSHOT-987;30c46cc
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[18:16:06] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[18:16:06] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[18:16:06] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[18:16:06] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[18:16:06] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[18:16:06] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[18:16:08] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-736
[18:16:08] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[18:16:08] [Server thread/INFO]:         __    
[18:16:08] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[18:16:08] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[18:16:08] [Server thread/INFO]: 
[18:16:09] [Server thread/INFO]: [LuckPerms] Loading configuration...
[18:16:09] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[18:16:10] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[18:16:10] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[18:16:10] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2848ms)
[18:16:10] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.4.4
[18:16:12] [Server thread/WARN]: [SkinsRestorer] You must agree to the rules at 'commands.perSkinPermissionsConsent' in the config to use per skin permissions.
[18:16:13] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.0.
[18:16:14] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[18:16:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.4.4]
[18:16:14] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[18:16:14] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.0
[18:16:14] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[18:16:14] [Server thread/WARN]:     at PlugManX.jar//com.rylinaux.plugman.util.BukkitCommandWrap.<init>(BukkitCommandWrap.java:28)
[18:16:14] [Server thread/WARN]:     at PlugManX.jar//com.rylinaux.plugman.PlugMan.onEnable(PlugMan.java:225)
[18:16:14] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:16:14] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:16:14] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:16:14] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:16:14] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[18:16:14] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[18:16:14] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:293)
[18:16:14] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[18:16:14] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:16:14] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.4.4
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: dc501c7
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[18:16:14] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[18:16:15] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[18:16:15] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[18:16:15] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[18:16:15] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[18:16:15] [Server thread/INFO]: Preparing level "world"
[18:16:15] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[18:16:16] [Server thread/INFO]: Time elapsed: 698 ms
[18:16:16] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[18:16:16] [Server thread/INFO]: Time elapsed: 207 ms
[18:16:16] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[18:16:16] [Server thread/INFO]: Time elapsed: 493 ms
[18:16:16] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.1.1
[18:16:16] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[18:16:17] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[18:16:17] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[18:16:17] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[18:16:17] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is blocked.
[18:16:17] [Server thread/INFO]: [WorldGuard] (world) Lighters are blocked.
[18:16:17] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[18:16:17] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[18:16:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[18:16:17] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is blocked.
[18:16:17] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are blocked.
[18:16:17] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[18:16:17] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[18:16:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[18:16:17] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is blocked.
[18:16:17] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are blocked.
[18:16:17] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[18:16:17] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[18:16:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[18:16:17] [Server thread/INFO]: [WorldGuard] Loading region data...
[18:16:18] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[18:16:18] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[18:16:18] [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.
[18:16:18] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[18:16:18] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[18:16:18] [Server thread/INFO]: Could not set generator for world 'arenac': Plugin 'VoidGen' does not exist
[18:16:18] [Server thread/INFO]: Preparing start region for dimension minecraft:arenac
[18:16:19] [Server thread/INFO]: Time elapsed: 102 ms
[18:16:19] [Server thread/INFO]: [WorldGuard] (arenac) TNT ignition is blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (arenac) Lighters are blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (arenac) Lava fire is PERMITTED.
[18:16:19] [Server thread/INFO]: [WorldGuard] (arenac) Fire spread is UNRESTRICTED.
[18:16:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'arenac'
[18:16:19] [Server thread/INFO]: Could not set generator for world 'arenac': Plugin 'VoidGen' does not exist
[18:16:19] [Server thread/INFO]: Preparing start region for dimension minecraft:atlantis
[18:16:19] [Server thread/INFO]: Time elapsed: 129 ms
[18:16:19] [Server thread/INFO]: [WorldGuard] (atlantis) TNT ignition is blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (atlantis) Lighters are blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (atlantis) Lava fire is PERMITTED.
[18:16:19] [Server thread/INFO]: [WorldGuard] (atlantis) Fire spread is UNRESTRICTED.
[18:16:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'atlantis'
[18:16:19] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: test
[18:16:19] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[18:16:19] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: BoxPvPdeneme
[18:16:19] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[18:16:19] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: mars
[18:16:19] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[18:16:19] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Bataklik
[18:16:19] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[18:16:19] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: parkur
[18:16:19] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[18:16:19] [Server thread/INFO]: Preparing start region for dimension minecraft:dunya
[18:16:19] [Server thread/INFO]: Time elapsed: 108 ms
[18:16:19] [Server thread/INFO]: [WorldGuard] (Dunya) TNT ignition is blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (Dunya) Lighters are blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (Dunya) Lava fire is PERMITTED.
[18:16:19] [Server thread/INFO]: [WorldGuard] (Dunya) Fire spread is UNRESTRICTED.
[18:16:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dunya'
[18:16:19] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: YeniSpawn
[18:16:19] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[18:16:19] [Server thread/INFO]: Preparing start region for dimension minecraft:end
[18:16:19] [Server thread/INFO]: Time elapsed: 111 ms
[18:16:19] [Server thread/INFO]: [WorldGuard] (End) TNT ignition is blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (End) Lighters are blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (End) Lava fire is PERMITTED.
[18:16:19] [Server thread/INFO]: [WorldGuard] (End) Fire spread is UNRESTRICTED.
[18:16:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'End'
[18:16:19] [Server thread/INFO]: Preparing start region for dimension minecraft:vip
[18:16:19] [Server thread/INFO]: Time elapsed: 93 ms
[18:16:19] [Server thread/INFO]: [WorldGuard] (vip) TNT ignition is blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (vip) Lighters are blocked.
[18:16:19] [Server thread/INFO]: [WorldGuard] (vip) Lava fire is PERMITTED.
[18:16:19] [Server thread/INFO]: [WorldGuard] (vip) Fire spread is UNRESTRICTED.
[18:16:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'vip'
[18:16:20] [Server thread/INFO]: [Multiverse-Core] 8 - World(s) loaded.
[18:16:20] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[18:16:20] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[18:16:20] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44
[18:16:20] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[18:16:20] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: null) (MC: 1.21)
[18:16:20] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1314
[18:16:20] [Server thread/INFO]: [LibsDisguises] Build Date: 10/04/2024 02:12
[18:16:20] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[18:16:20] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[18:16:20] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'false', LD will hide oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[18:16:20] [Server thread/ERROR]: [LibsDisguises] You're using the wrong version of Lib's Disguises for your server! This is intended for 1.12, 1.12.1, 1.12.2, 1.13, 1.13.1, 1.13.2, 1.14, 1.14.1, 1.14.2, 1.14.3, 1.14.4, 1.15, 1.15.1, 1.15.2, 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5, 1.17, 1.17.1, 1.18, 1.18.1, 1.18.2, 1.19.0, 1.19.1, 1.19.2, 1.19.3, 1.19.4, 1.20, 1.20.1, 1.20.2, 1.20.3, 1.20.4!
[18:16:20] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.44
[18:16:20] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.12
[18:16:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[18:16:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[18:16:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[18:16:20] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.5.1-9aedaa15
[18:16:21] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.0)...
[18:16:21] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[18:16:21] [Server thread/WARN]: [MythicMobs] --====|||| Mythic ||||====--
[18:16:21] [Server thread/WARN]: [MythicMobs] This version of Mythic is not fully compatible with your version of Bukkit.
[18:16:21] [Server thread/WARN]: [MythicMobs] Some features may be limited or disabled until you use a compatible version.
[18:16:21] [Server thread/WARN]: [MythicMobs] Server NMS Version Detected - craftbukkit
[18:16:21] [Server thread/WARN]: [MythicMobs] ✗ Compatibility Error for 'LibsDisguises': Plugin not found/incompatible version
[18:16:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[18:16:21] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[18:16:21] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[18:16:21] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[18:16:21] [Server thread/INFO]: [MythicMobs] Base directory C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\SavedData
[18:16:21] [Server thread/INFO]: [MythicMobs] Module directory C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\SavedData\worlds
[18:16:26] [Server thread/INFO]: [MythicMobs] Loading Packs...
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading Items...
[18:16:27] [Server thread/WARN]: [MythicMobs] Error loading item 'bogulmusgogusluk'. Enable debugging for a stack trace.
[18:16:27] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item SkeletonKingSword
[18:16:27] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\Items\ExampleItems.yml
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Error Message: Attributes are configured incorrectly.
[18:16:27] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item KingsCrown
[18:16:27] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\Items\ExampleItems.yml
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Error Message: Attributes are configured incorrectly.
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading Skills...
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\stats.yml
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[18:16:27] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[18:16:27] [Server thread/WARN]: unacceptable code point ' ' (0x0) special characters are not allowed
[18:16:27] [Server thread/WARN]: in "'string'", position 0
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:208)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:173)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:168)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:123)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.scanToNextToken(ScannerImpl.java:1204)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:320)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:238)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseImplicitDocumentStart.produce(ParserImpl.java:210)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:152)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:156)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:178)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:493)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:422)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:33)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.spawners.SpawnerManager.loadSpawners(SpawnerManager.java:85)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:256)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:193)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:86)
[18:16:27] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:16:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:16:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:16:27] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:16:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[18:16:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:16:27] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:16:27] [Server thread/ERROR]: [MythicMobs] Cannot load C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\Spawners\test.yml
[18:16:27] [Server thread/WARN]: io.lumine.mythic.bukkit.utils.config.InvalidConfigurationException: unacceptable code point ' ' (0x0) special characters are not allowed
[18:16:27] [Server thread/WARN]: in "'string'", position 0
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:33)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.spawners.SpawnerManager.loadSpawners(SpawnerManager.java:85)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:256)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:193)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:86)
[18:16:27] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:16:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:16:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:16:27] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:16:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[18:16:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:16:27] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:16:27] [Server thread/WARN]: Caused by: unacceptable code point ' ' (0x0) special characters are not allowed
[18:16:27] [Server thread/WARN]: in "'string'", position 0
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:208)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:173)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:168)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:123)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.scanToNextToken(ScannerImpl.java:1204)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:320)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:238)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseImplicitDocumentStart.produce(ParserImpl.java:210)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:152)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:156)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:178)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:493)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:422)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[18:16:27] [Server thread/WARN]:     ... 20 more
[18:16:27] [Server thread/WARN]: unacceptable code point ' ' (0x0) special characters are not allowed
[18:16:27] [Server thread/WARN]: in "'string'", position 0
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:208)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:173)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:168)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:123)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.scanToNextToken(ScannerImpl.java:1204)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:320)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:238)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseImplicitDocumentStart.produce(ParserImpl.java:210)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:152)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:156)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:178)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:493)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:422)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:33)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.spawners.SpawnerManager.loadSpawners(SpawnerManager.java:85)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:256)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:193)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:86)
[18:16:27] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:16:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:16:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:16:27] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:16:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[18:16:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:16:27] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:16:27] [Server thread/ERROR]: [MythicMobs] Cannot load C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\Spawners\wither.yml
[18:16:27] [Server thread/WARN]: io.lumine.mythic.bukkit.utils.config.InvalidConfigurationException: unacceptable code point ' ' (0x0) special characters are not allowed
[18:16:27] [Server thread/WARN]: in "'string'", position 0
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:33)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.spawners.SpawnerManager.loadSpawners(SpawnerManager.java:85)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:256)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:193)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:86)
[18:16:27] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:16:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:16:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:16:27] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:16:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[18:16:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[18:16:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:16:27] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:16:27] [Server thread/WARN]: Caused by: unacceptable code point ' ' (0x0) special characters are not allowed
[18:16:27] [Server thread/WARN]: in "'string'", position 0
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:208)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:173)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:168)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:123)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.scanToNextToken(ScannerImpl.java:1204)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:320)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:238)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseImplicitDocumentStart.produce(ParserImpl.java:210)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:152)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:156)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:178)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:493)
[18:16:27] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:422)
[18:16:27] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[18:16:27] [Server thread/WARN]:     ... 20 more
[18:16:27] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Skill: SummonSkeletons | File: C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\Skills\ExampleSkills.yml
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SkeletalMinion;amount=2;noise=5}
[18:16:27] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Skill: SummonSkeletons | File: C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\Skills\ExampleSkills.yml
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SkeletalMinion;amount=2;noise=5}
[18:16:27] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Skill: SummonSkeletons | File: C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\MythicMobs\Skills\ExampleSkills.yml
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:16:27] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SkeletalMinion;amount=2;noise=5}
[18:16:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 mobs.
[18:16:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 vanilla mob overrides.
[18:16:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[18:16:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[18:16:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[18:16:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 mythic items.
[18:16:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 drop tables.
[18:16:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 11 mob spawners.
[18:16:28] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[18:16:28] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[18:16:28] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.5.1 ( build 9aedaa15 ) has been successfully loaded!
[18:16:28] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.14.1
[18:16:29] [Server thread/INFO]: [LiteBans] Using system locale (en)
[18:16:29] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[18:16:29] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[18:16:29] [Server thread/INFO]: [LiteBans] Connecting to database...
[18:16:29] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[18:16:29] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[18:16:29] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (168.3 ms).
[18:16:29] [Server thread/INFO]: [LiteBans] Database connection fully initialized (178.9 ms).
[18:16:29] [Server thread/INFO]: [LiteBans] v2.14.1 enabled. Startup took 530 ms.
[18:16:29] [Server thread/INFO]: [SCore] Enabling SCore v4.23.10.28
[18:16:29] [Server thread/INFO]: ================ SCore ================
[18:16:29] [Server thread/INFO]: SCore Version of the server 1.21-130-b1b5d4c (MC: 1.21) !
[18:16:29] [Server thread/INFO]: SCore ExecutableItems hooked !  (6.23.10.28) Load After
[18:16:29] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[18:16:29] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.12+829a4a4)  Load Before
[18:16:29] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)  Load Before
[18:16:29] [Server thread/INFO]: SCore ProtocolLib hooked !
[18:16:29] [Server thread/INFO]: SCore Locale setup: EN
[18:16:29] [Server thread/INFO]: SCore MythicMobs hooked !  (5.5.1-9aedaa15)  Load Before
[18:16:29] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.12)  Load Before
[18:16:29] [Server thread/INFO]: SCore TAB hooked !  (5.0.1) Load After
[18:16:29] [Server thread/INFO]: SCore Language of the editor setup on EN
[18:16:29] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[18:16:29] [Server thread/INFO]: SCore Connection to the db...
[18:16:29] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[18:16:29] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[18:16:29] [Server thread/INFO]: SCore Creating table Commands if not exists...
[18:16:29] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[18:16:29] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[18:16:29] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[18:16:29] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[18:16:29] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[18:16:30] [Server thread/ERROR]: [SCore] Error when loading example.yml, your config is not made correctly ! this website can help you to resolve your problem: https://codebeautify.org/yaml-validator 
[18:16:30] [Server thread/ERROR]: [SCore] Error the file plugins\SCore\variables\Default/example.yml can't be loaded !
[18:16:30] [Server thread/INFO]: SCore SCore loaded 0 variables from local files !
[18:16:30] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[18:16:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[18:16:30] [Server thread/INFO]: ================ SCore ================
[18:16:30] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+129-2ac37d8
[18:16:31] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[18:16:32] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[18:16:32] [Server thread/INFO]: [Essentials] No kits found to migrate.
[18:16:32] [Server thread/INFO]: [Essentials] Loaded 42779 items from items.json.
[18:16:32] [Server thread/INFO]: [Essentials] Using locale tr
[18:16:32] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[18:16:33] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[18:16:33] [Server thread/WARN]: [Essentials] Detected supported permissions plugin LuckPerms without Vault installed.
[18:16:33] [Server thread/WARN]: [Essentials] Features such as chat prefixes/suffixes and group-related functionality will not work until you install Vault.
[18:16:33] [Server thread/INFO]: [Essentials] Using superperms-based permissions.
[18:16:33] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.36-SNAPSHOT (build 3642)
[18:16:33] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[18:16:33] [Server thread/ERROR]: [Citizens] Could not fetch NMS field ck: [[static final field has no write access: net.minecraft.world.entity.animal.armadillo.Armadillo.SCARE_DISTANCE_VERTICAL/double/putStatic, from class net.citizensnpcs.util.NMS (unnamed module @30e7d8f4).
[18:16:33] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.36-SNAPSHOT (build 3642) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R2/boss/CraftBossBar
    at Citizens-2.0.36-b3642.jar/net.citizensnpcs.nms.v1_21_R2.util.NMSImpl.<clinit>(NMSImpl.java:2720) ~[Citizens-2.0.36-b3642.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.jar:1.21-130-b1b5d4c]
    at Citizens-2.0.36-b3642.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:171) ~[Citizens-2.0.36-b3642.jar:?]
    at Citizens-2.0.36-b3642.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:176) ~[Citizens-2.0.36-b3642.jar:?]
    at Citizens-2.0.36-b3642.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:322) ~[Citizens-2.0.36-b3642.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R2.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[18:16:33] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.36-SNAPSHOT (build 3642)
[18:16:33] [Server thread/INFO]: [Skript] Enabling Skript v2.9.4
[18:16:35] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.9.5 (you're currently running 2.9.4)
[18:16:35] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.9.5/Skript-2.9.5.jar>https://github.com/SkriptLang/Skript/releases/download/2.9.5/Skript-2.9.5.jar
[18:16:50] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 15552ms
[18:16:51] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[18:16:51] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.1.1
[18:16:51] [Server thread/INFO]: [TAB] Enabling TAB v5.0.1
[18:16:52] [Server thread/INFO]: [TAB] Loaded NMS hook in 63ms
[18:16:52] [Server thread/INFO]: [TAB] [WARN] [config.yml] Missing configuration section "placeholders.register-tab-expansion" of type Boolean, using default value false.
[18:16:52] [Server thread/INFO]: [TAB] [WARN] [config.yml] Configuration section "bossbar" has unknown key "disable-in-worlds". Valid keys: [enabled, toggle-command, remember-toggle-choice, hidden-by-default, bars]
[18:16:52] [Server thread/INFO]: [TAB] [WARN] [config.yml] Configuration section "bossbar" has unknown key "disable-in-servers". Valid keys: [enabled, toggle-command, remember-toggle-choice, hidden-by-default, bars]
[18:16:52] [Server thread/INFO]: [TAB] [WARN] [animations.yml] Animation "ARENA" has refresh interval of 60, which is not divisible by 50! Using 50.
[18:16:52] [Server thread/INFO]: [TAB] [WARN] [animations.yml] Animation "ATLANTIS" has refresh interval of 60, which is not divisible by 50! Using 50.
[18:16:52] [Server thread/INFO]: [TAB] [WARN] [animations.yml] Animation "NETHER" has refresh interval of 60, which is not divisible by 50! Using 50.
[18:16:52] [Server thread/INFO]: [TAB] [WARN] [animations.yml] Animation "VIP" has refresh interval of 60, which is not divisible by 50! Using 50.
[18:16:52] [Server thread/INFO]: [TAB] [WARN] [animations.yml] Animation "KUTU" has refresh interval of 60, which is not divisible by 50! Using 50.
[18:16:52] [Server thread/INFO]: [TAB] [WARN] Found a total of 8 issues.
[18:16:52] [Server thread/INFO]: [TAB] Enabled in 867ms
[18:16:53] [Server thread/INFO]: [SimpleClans] Enabling SimpleClans v2.19.2-05e7abc
[18:16:53] [Server thread/INFO]: [SimpleClans] Vault not found. No economy or extended Permissions support.
[18:16:53] [Server thread/INFO]: [SimpleClans] SQLite Connection successful
[18:16:53] [Server thread/INFO]: [SimpleClans] Clans: 1
[18:16:53] [Server thread/INFO]: [SimpleClans] Clan players: 6
[18:16:53] [Server thread/INFO]: [SimpleClans] Registering 4 chat handlers...
[18:16:53] [Server thread/INFO]: [SimpleClans] [ACF] Enabled Asynchronous Tab Completion Support!
[18:16:53] [Server thread/INFO]: [SimpleClans] Registering 12 command contexts...
[18:16:54] [Server thread/INFO]: [SimpleClans] Registering 15 base commands...
[18:16:54] [Server thread/INFO]: [SimpleClans] Registering 32 command conditions...
[18:16:54] [Server thread/INFO]: [SimpleClans] Registering 19 command completions...
[18:16:54] [Server thread/INFO]: [SimpleClans] Multithreading: true
[18:16:54] [Server thread/INFO]: [SimpleClans] BungeeCord: false
[18:16:54] [Server thread/INFO]: [SimpleClans] HEX support: true
[18:16:54] [Server thread/INFO]: [SimpleClans] Help us translate SimpleClans to your language! Access https://crowdin.com/project/simpleclans/
[18:16:54] [Server thread/INFO]: [SimpleClans] PlaceholderAPI found. Registering hook...
[18:16:54] [Server thread/INFO]: [SimpleClans] Registering 7 placeholder resolvers...
[18:16:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: simpleclans [2.19.2-05e7abc]
[18:16:54] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.5.5
[18:16:54] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[18:16:54] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[18:16:54] [Server thread/INFO]: [ItemEdit] Unable to hook into Vault
[18:16:54] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[18:16:54] [Server thread/INFO]: [ItemEdit] placeholders:
[18:16:54] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[18:16:54] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[18:16:54] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[18:16:54] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[18:16:54] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[18:16:54] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[18:16:54] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[18:16:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[18:16:54] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[18:16:54] [Server thread/INFO]: [ItemEdit] # Enabled (took 324 ms)
[18:16:54] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.2
[18:16:54] [Server thread/INFO]:  
[18:16:54] [Server thread/INFO]: __________________________________________________________
[18:16:54] [Server thread/INFO]:  
[18:16:54] [Server thread/INFO]:                        TradeSystem [2.6.2]
[18:16:54] [Server thread/INFO]:  
[18:16:54] [Server thread/INFO]: Status:
[18:16:54] [Server thread/INFO]:  
[18:16:54] [Server thread/INFO]: MC-Version: Paper (1.21)
[18:16:54] [Server thread/INFO]:  
[18:16:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[18:16:55] [Server thread/INFO]:   > Loading sounds
[18:16:55] [Server thread/INFO]:   > Loading blacklist
[18:16:55] [Server thread/INFO]:     ...got 3 blocked item(s)
[18:16:55] [Server thread/INFO]:   > Loading layouts
[18:16:55] [Server thread/ERROR]: [TradeSystem] A layout could not been loaded due to an error: The icon 'VaultIcon' could not be found. Either it is no longer available or a plugin requirement has not been fulfilled.
[18:16:55] [Server thread/INFO]:     ...got 3 layout(s)
[18:16:55] [Server thread/INFO]:   > Queuing database initializing task
[18:16:55] [Server thread/INFO]:  
[18:16:55] [Server thread/INFO]: Finished (1066ms)
[18:16:55] [Server thread/INFO]:  
[18:16:55] [Server thread/INFO]: __________________________________________________________
[18:16:55] [Server thread/INFO]:  
[18:16:55] [Server thread/INFO]: [TimerEvent] Enabling TimerEvent v1.0.0*
[18:16:55] [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!
[18:16:55] [Server thread/INFO]: [Sonar] Enabling Sonar v2.1.10
[18:16:55] [Server thread/INFO]: [Sonar] Loading library Simple-Yaml
[18:16:55] [Server thread/INFO]: [Sonar] Loading library gson
[18:16:55] [Server thread/INFO]: [Sonar] Loading library caffeine
[18:16:55] [Server thread/INFO]: [Sonar] Loading library ormlite-jdbc
[18:16:55] [Server thread/INFO]: [Sonar] Loading library filters
[18:16:55] [Server thread/INFO]: [Sonar] Loading library adventure-text-minimessage
[18:16:55] [Server thread/INFO]: [Sonar] Loading library adventure-text-serializer-gson
[18:16:55] [Server thread/INFO]: [Sonar] Loading library adventure-nbt
[18:16:56] [Server thread/INFO]: [Sonar] Successfully booted in 0.665s!
[18:16:56] [Server thread/INFO]: [Sonar] Initializing shared components...
[18:16:56] [Server thread/INFO]: [Sonar] Using system language (EN) for translations.
[18:16:56] [Server thread/INFO]: [Sonar] Taking cached snapshots of all packets...
[18:16:57] [Server thread/INFO]: [Sonar] Preloading all registered packets...
[18:16:57] [Server thread/WARN]: [Sonar] Configure a database to save verified players.
[18:16:57] [Server thread/INFO]: [Sonar] Successfully initialized components in 1.308s!
[18:16:57] [Server thread/INFO]: [Sonar] Enabling all tasks and features...
[18:16:57] [Server thread/INFO]: [Sonar] Starting all managed threads...
[18:16:57] [Server thread/INFO]: [Sonar] Done (1.335s)!
[18:16:57] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[18:16:57] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[18:16:57] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[18:16:57] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[18:16:57] [Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
[18:16:57] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[18:16:57] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[18:16:57] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[18:16:57] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[18:16:57] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[18:16:57] [Server thread/INFO]: [skRayFall] Bacon is ready!
[18:16:57] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.10
[18:16:57] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[18:16:57] [pool-110-thread-1/WARN]: [Sonar] A new version of Sonar is available: 2.1.18
[18:16:57] [pool-110-thread-1/WARN]: [Sonar] Please make sure to update to the latest version to ensure stability and security:
[18:16:57] [pool-110-thread-1/WARN]: [Sonar] https://github.com/jonesdevelopment/sonar/releases/latest
[18:16:57] [Server thread/INFO]: [skQuery] Beginning to process a total of 117 from SkQuery
[18:16:57] [Server thread/INFO]: [skQuery] Out of 117 classes, 117 classes were loaded from SkQuery
[18:16:57] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.2
[18:16:58] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[18:16:58] [Server thread/INFO]: [Shopkeepers] Loading the data of 89 shopkeepers ...
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 6: Object type 'snow-golem' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 40: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 41: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 43: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 45: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 46: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 47: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 53: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 56: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 64: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 65: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 66: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 67: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 98: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 100: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 101: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 102: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/ERROR]: [MythicMobs] [EVENTS] Exception thrown whilst handling event: org.bukkit.event.entity.CreatureSpawnEvent
[18:16:58] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.getSpawnState(RandomSpawnerManager.java:270)
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.handleSpawnEvent(RandomSpawnerManager.java:232)
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.listeners.MobListeners.lambda$load$8(MobListeners.java:174)
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.Delegates$ConsumerToBiConsumerSecond.accept(Delegates.java:144)
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.events.functional.single.EventListener.execute(EventListener.java:131)
[18:16:58] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[18:16:58] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[18:16:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[18:16:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[18:16:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.event.CraftEventFactory.callCreatureSpawnEvent(CraftEventFactory.java:798)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.event.CraftEventFactory.doEntityAddEventCalling(CraftEventFactory.java:702)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.level.ServerLevel.addEntity(ServerLevel.java:1541)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.level.ServerLevel.addFreshEntity(ServerLevel.java:1466)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftWorld.addEntityToWorld(CraftWorld.java:1061)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.addEntity(CraftRegionAccessor.java:461)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.spawn(CraftRegionAccessor.java:424)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.spawn(CraftRegionAccessor.java:418)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.spawn(CraftRegionAccessor.java:409)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopobjects.living.SKLivingShopObject.spawn(SKLivingShopObject.java:345)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawner.doSpawnShopkeeper(ShopkeeperSpawner.java:399)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawner.spawnShopkeeper(ShopkeeperSpawner.java:301)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawner.spawnShopkeeperImmediately(ShopkeeperSpawner.java:206)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.activation.ShopkeeperChunkActivator.activateShopkeeper(ShopkeeperChunkActivator.java:217)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.activation.ShopkeeperChunkActivator.checkShopkeeperActivation(ShopkeeperChunkActivator.java:192)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.registry.SKShopkeeperRegistry.addShopkeeper(SKShopkeeperRegistry.java:336)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.registry.SKShopkeeperRegistry.loadShopkeeper(SKShopkeeperRegistry.java:267)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.storage.SKShopkeeperStorage.loadShopkeeper(SKShopkeeperStorage.java:622)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.storage.SKShopkeeperStorage.doReload(SKShopkeeperStorage.java:566)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.storage.SKShopkeeperStorage.reload(SKShopkeeperStorage.java:413)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.SKShopkeepersPlugin.onEnable(SKShopkeepersPlugin.java:420)
[18:16:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:16:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:16:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:16:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:16:58] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:16:58] [Server thread/ERROR]: [MythicMobs] [EVENTS] Exception thrown whilst handling event: org.bukkit.event.entity.CreatureSpawnEvent
[18:16:58] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.getSpawnState(RandomSpawnerManager.java:270)
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.handleSpawnEvent(RandomSpawnerManager.java:232)
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.listeners.MobListeners.lambda$load$8(MobListeners.java:174)
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.Delegates$ConsumerToBiConsumerSecond.accept(Delegates.java:144)
[18:16:58] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.events.functional.single.EventListener.execute(EventListener.java:131)
[18:16:58] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[18:16:58] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[18:16:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[18:16:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[18:16:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.event.CraftEventFactory.callCreatureSpawnEvent(CraftEventFactory.java:798)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.event.CraftEventFactory.doEntityAddEventCalling(CraftEventFactory.java:702)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.level.ServerLevel.addEntity(ServerLevel.java:1541)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.level.ServerLevel.addFreshEntity(ServerLevel.java:1466)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftWorld.addEntityToWorld(CraftWorld.java:1061)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.addEntity(CraftRegionAccessor.java:461)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.spawn(CraftRegionAccessor.java:424)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.spawn(CraftRegionAccessor.java:418)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.spawn(CraftRegionAccessor.java:409)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopobjects.living.SKLivingShopObject.spawn(SKLivingShopObject.java:345)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawner.doSpawnShopkeeper(ShopkeeperSpawner.java:399)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawner.spawnShopkeeper(ShopkeeperSpawner.java:301)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawner.spawnShopkeeperImmediately(ShopkeeperSpawner.java:206)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.activation.ShopkeeperChunkActivator.activateShopkeeper(ShopkeeperChunkActivator.java:217)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.activation.ShopkeeperChunkActivator.checkShopkeeperActivation(ShopkeeperChunkActivator.java:192)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.registry.SKShopkeeperRegistry.addShopkeeper(SKShopkeeperRegistry.java:336)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.registry.SKShopkeeperRegistry.loadShopkeeper(SKShopkeeperRegistry.java:267)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.storage.SKShopkeeperStorage.loadShopkeeper(SKShopkeeperStorage.java:622)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.storage.SKShopkeeperStorage.doReload(SKShopkeeperStorage.java:566)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.storage.SKShopkeeperStorage.reload(SKShopkeeperStorage.java:413)
[18:16:58] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.SKShopkeepersPlugin.onEnable(SKShopkeepersPlugin.java:420)
[18:16:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[18:16:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[18:16:58] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[18:16:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[18:16:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[18:16:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:16:58] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 132: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 140: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 142: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 145: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 152: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 153: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 154: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 155: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 156: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 157: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 164: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 165: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 166: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 168: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 169: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 170: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 171: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 172: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/WARN]: [Shopkeepers] Shopkeeper 173: Object type 'citizen' is disabled! Consider changing the object type.
[18:16:58] [Server thread/INFO]: [pvpstats] Enabling pvpstats v1.11.52
[18:16:58] [Thread-18/INFO]: [pvpstats] Checking for updates...
[18:16:58] [Server thread/INFO]: [pvpstats] sending full Metrics! You can deactivate this in the config.yml
[18:16:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sps [0.0.1]
[18:16:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: slipcorpvpstats [0.0.4]
[18:16:58] [Server thread/INFO]: [pvpstats] debugging: off
[18:16:58] [Server thread/INFO]: [pvpstats] Player list had no duplicates!
[18:16:58] [Server thread/INFO]: [pvpstats] enabled. (version 1.11.52)
[18:16:58] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.18.26
[18:16:58] [Server thread/INFO]: [PvPManager] Using player nametags: true
[18:16:58] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[18:16:58] [Server thread/INFO]: [PvPManager] Players stored: 1015
[18:16:58] [Server thread/INFO]: [PvPManager] TAB detected. If you want nametags to change while in combat, set 'anti-override' to false in TAB's config. (Doing that will prevent TAB from changing nametags)
[18:16:58] [Server thread/INFO]: [PvPManager] Or use the premium version of PvPManager which hooks into TAB for nametag/tablist changes.
[18:16:58] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[18:16:58] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[18:16:58] [Server thread/WARN]: [PvPManager] Vault not found! Features requiring Vault won't work!
[18:16:58] [Server thread/INFO]: [PvPManager] SimpleClans Found! Hooked successfully
[18:16:58] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[18:16:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [3.18.26]
[18:16:58] [Server thread/INFO]: [PvPManager] LibsDisguises Found! Using it to disable disguises
[18:16:58] [Server thread/WARN]: [PvPManager] Your LibsDisguises version is currently unsupported: LibsDisguises v10.0.44
[18:16:58] [Server thread/WARN]: [PvPManager] LibsDisguises support disabled
[18:16:59] [Server thread/INFO]: [PvPManager] PvPManager v3.18.26 enabled (394 ms)
[18:16:59] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.11
[18:16:59] [Server thread/INFO]: [PlayerVaults] Loaded! Took 674ms
[18:16:59] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.27.1
[18:17:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [2.27.1]
[18:17:00] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.27.1
[18:17:00] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[18:17:00] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.22
[18:17:00] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.63.6
[18:17:00] [Server thread/INFO]: [PinataParty] [STDOUT] [Spigotunlocked.com] - ZER.
[18:17:00] [Server thread/WARN]: Nag author(s): '[Indyuce, HexedHero]' of 'PinataParty v2.63.6' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[18:17:00] [Server thread/INFO]: [PinataParty] Registering hooks...
[18:17:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pinataparty [2.63.6]
[18:17:00] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[18:17:00] [Server thread/INFO]: [PinataParty] Votifier not found! Not enabling the voting system! Download and install it from https://www.spigotmc.org/resources/13449/
[18:17:00] [Server thread/INFO]: [PinataParty] Vault not found! Not enabling the PinataPool! Download and install it from https://www.spigotmc.org/resources/34315/
[18:17:00] [Server thread/INFO]: [PinataParty] Registering commands...
[18:17:00] [Server thread/INFO]: [PinataParty] Registering listeners...
[18:17:00] [Server thread/INFO]: [PinataParty] Loading data...
[18:17:00] [Server thread/INFO]: [PinataParty] Starting tasks...
[18:17:00] [Server thread/INFO]: [PinataParty] Starting metrics...
[18:17:00] [Server thread/INFO]: [PinataParty] Plugin registered to 4024031 | 1628811046
[18:17:00] [Server thread/INFO]: [PinataParty] Done and enabled in 55.25ms
[18:17:00] [Server thread/INFO]: [NightVision] Enabling NightVision v2.0*
[18:17:00] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.3
[18:17:01] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[18:17:01] [Server thread/INFO]: [Log4ShellFix] Enabling Log4ShellFix v1.0*
[18:17:01] [Server thread/INFO]: [ItemEffects] Enabling ItemEffects v1.2.8
[18:17:01] [Server thread/INFO]: ------------------------------------------------------
[18:17:01] [Server thread/INFO]: 
[18:17:01] [Server thread/INFO]: ._   _   _____  __  __  _       _____
[18:17:01] [Server thread/INFO]: | | | | | ____| \ \/ / | |     | ____|                         
[18:17:01] [Server thread/INFO]: | |_| | |  _|    \  /  | |     |  _|                           
[18:17:01] [Server thread/INFO]: |  _  | | |___   /  \  | |___  | |___
[18:17:01] [Server thread/INFO]: |_| |_| |_____| /_/\_\ |_____| |_____|
[18:17:01] [Server thread/INFO]: 
[18:17:01] [Server thread/INFO]: Hexle_Development_Systems - https://hexle.at
[18:17:01] [Server thread/INFO]: 
[18:17:01] [Server thread/INFO]: [Item Effects] Found correct language: en
[18:17:01] [Server thread/INFO]: [Item Effects] org.bukkit.craftbukkit 1.21-130-b1b5d4c (MC: 1.21)
[18:17:01] [Server thread/INFO]: [Item Effects] Your server is running a compatible version: 1.21-130-b1b5d4c (MC: 1.21)
[18:17:01] [Server thread/INFO]: [Item Effects] 1.12 Events enabled!
[18:17:01] [Server thread/INFO]: [Item Effects] 1.13 Events enabled!
[18:17:01] [Server thread/INFO]: [Item Effects] Christmas feature enabled!
[18:17:01] [Server thread/INFO]: [Item Effects] Contributed by the Hexle Development Team. Finished loading!
[18:17:01] [Server thread/INFO]: 
[18:17:01] [Server thread/INFO]: ------------------------------------------------------
[18:17:01] [Server thread/INFO]: [ItemTag] Enabling ItemTag v3.5.1
[18:17:01] [Server thread/INFO]: [ItemTag] Data using Spigot PersistentDataContainer
[18:17:01] [Server thread/INFO]: [ItemTag] EquipmentChangeListener
[18:17:01] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Checking for updates...
[18:17:01] [Server thread/INFO]: [ItemTag] Hooking into PlaceholderApi
[18:17:01] [Server thread/INFO]: [ItemTag] Hooked into PlaceHolderAPI:
[18:17:01] [Server thread/INFO]: [ItemTag] placeholders:
[18:17:01] [Server thread/INFO]: [ItemTag]   %itemtag_cooldown_<timeunit>_[cooldownid]%
[18:17:01] [Server thread/INFO]: [ItemTag]     shows how much cooldown has selected cooldownid for player
[18:17:01] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[18:17:01] [Server thread/INFO]: [ItemTag]     [cooldownid] for cooldown type, by default default
[18:17:01] [Server thread/INFO]: [ItemTag]     example: %itemtag_cooldown_s_anid%
[18:17:01] [Server thread/INFO]: [ItemTag]   %itemtag_handcooldown_<timeunit>%
[18:17:01] [Server thread/INFO]: [ItemTag]     shows how much cooldown has player on the item in his hand
[18:17:01] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[18:17:01] [Server thread/INFO]: [ItemTag]     example: %itemtag_handcooldown_s%
[18:17:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemtag [1.0]
[18:17:01] [Server thread/INFO]: [ItemTag] # Enabled (took 136 ms)
[18:17:01] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.29.6
[18:17:01] [PvPManager Worker Thread - 0/INFO]: [PvPManager] No update found
[18:17:02] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.20
[18:17:02] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21-130-b1b5d4c (MC: 1.21)
[18:17:02] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R1
[18:17:02] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[18:17:02] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[18:17:02] [Server thread/INFO]: [HubThat] Enabling HubThat v10.1.184
[18:17:02] [Server thread/WARN]: [HubThat] HubThat: Checking if config exists...
[18:17:02] [Server thread/WARN]: [HubThat] Loading config...
[18:17:02] [Server thread/INFO]: [HubThat] All files are working correctly.
[18:17:02] [Server thread/INFO]: [HubThat] Plugin HubThat Successfully Loaded!
[18:17:02] [Server thread/INFO]: [HealthBar] Enabling HealthBar v1.0
[18:17:02] [Server thread/INFO]: [HealthBar] -----------------------
[18:17:02] [Server thread/INFO]: [HealthBar] HealthBar Enabled
[18:17:02] [Server thread/INFO]: [HealthBar] Version Support: 1.7~1.16
[18:17:02] [Server thread/INFO]: [HealthBar] -----------------------
[18:17:02] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.67
[18:17:02] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[18:17:02] [Server thread/INFO]: [GrimAC] Registering packets...
[18:17:02] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
[18:17:02] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
[18:17:02] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v6.23.10.28
[18:17:02] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[18:17:02] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
[18:17:02] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[18:17:02] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[18:17:05] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material with groups value of material from config, value: GRASS (Item: Prem_Nature_Boots) >> Materials with groups available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[18:17:06] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: GRASS (Item: Prem_Grass_Cutter).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[18:17:07] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Option value of option from config, value: NULL (Item: cadininyarragi) >> Options available: https://docs.ssomar.com/
[18:17:07] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the VariableUpdate with its options (ID: varUpdt0) because the variable associated (var) doesnt exist (Item: fastboxkilic)
[18:17:07] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the VariableUpdate with its options (ID: varUpdt0) because the variable associated (var) doesnt exist (Item: fastboxkilic)
[18:17:09] [Server thread/INFO]: ExecutableItems ERROR, Invalid command  (ID: (Item: kristalkılıç)) >> There is not enough args for the command: AROUND {distance} {DisplayMsgIfNoPlayer true or false} {Your commands here}
[18:17:10] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of disabledWorlds from config, value: shulker (Item: vampitdayiefsanesi)
[18:17:10] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 295
[18:17:10] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[18:17:10] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[18:17:10] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+129-2ac37d8
[18:17:10] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[18:17:10] [Server thread/INFO]: [eBackup] Enabling eBackup v1.3.1
[18:17:10] [Server thread/INFO]: [eBackup] Initializing eBackup...
[18:17:10] [Server thread/INFO]: [eBackup] Configured the cron task to be: at 04:00
[18:17:11] [Server thread/INFO]: [eBackup] Plugin initialized!
[18:17:11] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[18:17:11] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[18:17:11] [Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: basics_menu is not valid!
Skipping item: grass
[18:17:11] [Server thread/INFO]: [DeluxeMenus] 6 GUI menus loaded!
[18:17:11] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[18:17:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[18:17:11] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v3.6
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading the file locations.yml...
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading the file data.yml...
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading efsane.yml...
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading esya.yml...
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading Event.yml...
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading kit.yml...
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading para.yml...
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading vote.yml...
[18:17:11] [Server thread/INFO]: [CrazyCrates] DecentHolograms support has been enabled.
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 1 in efsane.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 1 in esya.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 4 in esya.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 5 in esya.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 6 in esya.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 7 in esya.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 1 in Event.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 2 in Event.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 2 in para.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 3 in para.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 4 in para.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 5 in para.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 6 in para.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 7 in para.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 7 in vote.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/WARN]: [CrazyCrates] Deprecated usage of Lore in your Prize 11 in vote.yml, please change Lore to DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] Lore will be removed in the next major version of Minecraft in favor of DisplayLore
[18:17:11] [Server thread/WARN]: [CrazyCrates] You can turn my nagging off in config.yml, verbose_logging: true -> false
[18:17:11] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[18:17:11] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[18:17:12] [Server thread/INFO]: [CrazyCrates] All physical crate locations have been loaded.
[18:17:12] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[18:17:12] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[18:17:12] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[18:17:12] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[18:17:12] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[18:17:12] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[18:17:12] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[18:17:12] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[18:17:12] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[18:17:12] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[18:17:12] [Server thread/INFO]: [CrazyCrates] Oraxen NOT FOUND
[18:17:12] [Server thread/INFO]: [CrazyCrates] ItemsAdder NOT FOUND
[18:17:12] [Server thread/INFO]: [CrazyCrates] HeadDatabase NOT FOUND
[18:17:12] [Server thread/INFO]: [CrazyCrates] cmi NOT FOUND
[18:17:12] [Server thread/INFO]: [CrazyCrates] FancyHolograms NOT FOUND
[18:17:12] [Server thread/INFO]: [CrazyCrates] DecentHolograms FOUND
[18:17:12] [Server thread/INFO]: [CrazyCrates] PlaceholderAPI FOUND
[18:17:12] [Server thread/INFO]: [CrazyCrates] PlaceholderAPI support is enabled!
[18:17:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [3.6]
[18:17:12] [Server thread/INFO]: [CrazyCrates] You can disable logging by going to the plugin-config.yml and setting verbose to false.
[18:17:12] [Server thread/INFO]: [CrazyCrates] Done (82.925s)!
[18:17:12] [Server thread/INFO]: [CommandWhitelist] Enabling CommandWhitelist v2.8.2
[18:17:12] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[18:17:12] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[18:17:12] [Server thread/INFO]: [ClearLag] Loading modules...
[18:17:12] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (Index 3 out of bounds for length 3)
[18:17:12] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[18:17:12] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[18:17:12] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[18:17:12] [Thread-22/WARN]: [ClearLag] Clearlag failed to check for updates - bukkit may be down
[18:17:12] [Thread-22/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[18:17:12] [Thread-22/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.Util.getBukkitVersion(Util.java:105)
[18:17:12] [Thread-22/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.updateAvailable(BukkitUpdater.java:32)
[18:17:12] [Thread-22/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.run(BukkitUpdater.java:82)
[18:17:12] [Thread-22/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:17:12] [Server thread/INFO]: [Chunky] Enabling Chunky v1.2.217
[18:17:12] [Server thread/INFO]: [CataMines] Enabling CataMines v2.5.11
[18:17:12] [Server thread/INFO]: [CataMines] Loading config file
[18:17:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: catamines [2.5.11]
[18:17:12] [Server thread/INFO]: [BetterJails] Enabling BetterJails v1.5-SNAPSHOT
[18:17:12] [Server thread/INFO]: [BetterJails] Hooked with Essentials successfully!
[18:17:12] [Server thread/INFO]: [AxShulkers] Enabling AxShulkers v1.16.0
[18:17:14] [Server thread/INFO]: [AxShulkers] Loaded plugin! Using H2 database to store data!
[18:17:14] [Server thread/INFO]: [AutoPickup] Enabling AutoPickup v1.4.4-SNAPSHOT
[18:17:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: autopickup [1.0.0]
[18:17:14] [Server thread/INFO]: [Otomatik] Checking for new verison...
[18:17:14] [Server thread/INFO]: [Otomatik] UPDATE FOUND: https://www.spigotmc.org/resources/70157/
[18:17:14] [Server thread/INFO]: [Otomatik] Version: 1.4.6-SNAPSHOT Using Version: 1.4.4-SNAPSHOT
[18:17:14] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-bCUSTOM
[18:17:14] [Server thread/INFO]: [AuthMe] SQLite Setup finished
[18:17:14] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
[18:17:14] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[18:17:14] [Server thread/INFO]: [AuthMe] Hooked successfully into Multiverse-Core
[18:17:15] [Server thread/INFO]: [AuthMe] Essentials spawn file not found: 'C:\Users\Starkits\Desktop\EJDERNW 7 SEZON BAKIMDA\plugins\Essentials\spawn.yml'
[18:17:15] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0 build n.CUSTOM successfully enabled!
[18:17:15] [Server thread/INFO]: [ServerAntiVPN] Enabling ServerAntiVPN v1.0.0
[18:17:15] [ServerAntiVPN v1.0.0 - Socket Timeout Checker/INFO]: [ServerAntiVPN] Closing the AntiVPN Server connection...
[18:17:15] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v0.9.3
[18:17:15] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[18:17:15] [Server thread/WARN]: [AdvancedPortals] Proxy features disabled for Advanced Portals as bungee isn't enabled on the server (spigot.yml).If you are using Paper proxies.velocity.enabled (config/paper-global.yml) or settings.velocity-support.enabled (paper.yml) may not be enabled 
[18:17:15] [Server thread/INFO]: Advanced portals have been successfully enabled!
[18:17:16] [WebSocketConnectReadThread-219/INFO]: [ServerAntiVPN] Disconnected from the AntiVPN Server. (Code: 1002, Reason: Invalid status code received: 400 Status line: HTTP/1.1 400 Bad Request)
[18:17:16] [Server thread/INFO]: [spark] Starting background profiler...
[18:17:16] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows10/amd64), so the built-in Java engine will be used instead.
[18:17:16] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[18:17:16] [Server thread/INFO]: Done preparing level "world" (61.728s)
[18:17:16] [Server thread/INFO]: Running delayed init tasks
[18:17:16] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[18:17:16] [Craft Scheduler Thread - 27 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[18:17:16] [Craft Scheduler Thread - 34 - AuthMe/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
[18:17:16] [Craft Scheduler Thread - 34 - AuthMe/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
[18:17:16] [Craft Scheduler Thread - 34 - AuthMe/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
[18:17:16] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[18:17:16] [Craft Scheduler Thread - 34 - AuthMe/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins\AuthMe\GeoLite2-Country.mmdb (Sistem belirtilen dosyayı bulamıyor)
[18:17:16] [Craft Scheduler Thread - 14 - Essentials/INFO]: [Essentials] Fetching version information...
[18:17:16] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[18:17:16] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[18:17:16] [Craft Scheduler Thread - 19 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[18:17:16] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value arenapvp! It's neither a valid name nor UUID.
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Failed to load hologram from file 'Hapishane.yml'!
java.lang.NullPointerException: Cannot invoke "String.toUpperCase(java.util.Locale)" because "this.content" is null
    at DecentHolograms-2.8.12.jar/eu.decentsoftware.holograms.api.holograms.HologramLine.parseContent(HologramLine.java:213) ~[DecentHolograms-2.8.12.jar:?]
    at DecentHolograms-2.8.12.jar/eu.decentsoftware.holograms.api.holograms.HologramLine.<init>(HologramLine.java:159) ~[DecentHolograms-2.8.12.jar:?]
    at DecentHolograms-2.8.12.jar/eu.decentsoftware.holograms.api.holograms.HologramLine.fromMap(HologramLine.java:78) ~[DecentHolograms-2.8.12.jar:?]
    at DecentHolograms-2.8.12.jar/eu.decentsoftware.holograms.api.holograms.Hologram.fromFile(Hologram.java:194) ~[DecentHolograms-2.8.12.jar:?]
    at DecentHolograms-2.8.12.jar/eu.decentsoftware.holograms.api.holograms.HologramManager.loadHolograms(HologramManager.java:193) ~[DecentHolograms-2.8.12.jar:?]
    at DecentHolograms-2.8.12.jar/eu.decentsoftware.holograms.api.holograms.HologramManager.reload(HologramManager.java:174) ~[DecentHolograms-2.8.12.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.21.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value mars! It's neither a valid name nor UUID.
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value mars! It's neither a valid name nor UUID.
[18:17:17] [Craft Scheduler Thread - 27 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[18:17:17] [Craft Scheduler Thread - 24 - ItemEffects/INFO]: [Item Effects] There is not a new update available.
[18:17:17] [Craft Scheduler Thread - 22 - PinataParty/INFO]: [PinataParty] vV1.0 is available! You are running v2.63.6!
[18:17:17] [Craft Scheduler Thread - 22 - PinataParty/INFO]: [PinataParty] Download it here: https://www.spigotmc.org/resources/19989/
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value parkur! It's neither a valid name nor UUID.
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value parkur! It's neither a valid name nor UUID.
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value parkur! It's neither a valid name nor UUID.
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value parkur! It's neither a valid name nor UUID.
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value mars! It's neither a valid name nor UUID.
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value mars! It's neither a valid name nor UUID.
[18:17:17] [Server thread/INFO]: [Skript] Loading variables...
[18:17:17] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loaded 55 holograms!
[18:17:17] [Craft Scheduler Thread - 23 - MiniMOTD/INFO]: [MiniMOTD] There is an update available for MiniMOTD!
[18:17:17] [Craft Scheduler Thread - 23 - MiniMOTD/INFO]: [MiniMOTD] This server is running version v2.1.3, which is 1 versions outdated.
[18:17:17] [Craft Scheduler Thread - 23 - MiniMOTD/INFO]: [MiniMOTD] Download the latest version, v2.1.4 from GitHub at the link below:
[18:17:17] [Craft Scheduler Thread - 23 - MiniMOTD/INFO]: [MiniMOTD] https://github.com/jpenilla/MiniMOTD/releases/tag/v2.1.4
[18:17:17] [Server thread/INFO]: [Skript] Loaded 3431 variables in 0.1 seconds
[18:17:18] [Server thread/INFO]: [Skript] Line 1: (gece.sk)
[18:17:18] [Server thread/INFO]:     Can't understand this structure: effect give @a minecraft:night_vision infinite 255
[18:17:18] [Server thread/INFO]:     Line: effect give @a minecraft:night_vision infinite 255
[18:17:18] [Server thread/INFO]:  
[18:17:18] [Server thread/INFO]: [Skript] Line 11: (korumabitir.sk)
[18:17:18] [Server thread/INFO]:     Unexpected entry 'aliases:korumabitir'. Check that it's spelled correctly, and ensure that you have put all code into a trigger.
[18:17:18] [Server thread/INFO]:     Line: aliases:korumabitir
[18:17:18] [Server thread/INFO]:  
[18:17:18] [Server thread/INFO]: [Skript] Line 11: (korumasuresi.sk)
[18:17:18] [Server thread/INFO]:     Unexpected entry 'aliases:korumabitir'. Check that it's spelled correctly, and ensure that you have put all code into a trigger.
[18:17:18] [Server thread/INFO]:     Line: aliases:korumabitir
[18:17:18] [Server thread/INFO]:  
[18:17:19] [Server thread/INFO]: [Skript] Line 1: (korumasuresi.sk)
[18:17:19] [Server thread/INFO]:     A command with the name /korumabitir is already defined in korumabitir.sk
[18:17:19] [Server thread/INFO]:     Line: command /korumabitir:
[18:17:19] [Server thread/INFO]:  
[18:17:19] [Server thread/INFO]: [Skript] Line 5: (korumasuresi.sk)
[18:17:19] [Server thread/INFO]:     A command with the name /korumasüre is already defined in korumabitir.sk
[18:17:19] [Server thread/INFO]:     Line: command /korumasüre:
[18:17:19] [Server thread/INFO]:  
[18:17:20] [Server thread/INFO]: [Skript] Line 1352: (BetterBubble-Combat.sk)
[18:17:20] [Server thread/INFO]:     an entity cannot be saved, i.e. the contents of the variable {AC::PastVictim::IGNORE THIS SKRIPT WARNING!::%{_u}%} will be lost when the server stops.
[18:17:20] [Server thread/INFO]:     Line: set {AC::PastVictim::IGNORE THIS SKRIPT WARNING!::%{_u}%} to victim
[18:17:20] [Server thread/INFO]:  
[18:17:21] [Server thread/INFO]: ---------------------
[18:17:21] [Server thread/INFO]: Agents Freeze
[18:17:21] [Server thread/INFO]: Developed by Starkits with <3
[18:17:21] [Server thread/INFO]: License: Active
[18:17:21] [Server thread/INFO]: ---------------------
[18:17:21] [Server thread/INFO]: [Skript] Loaded 12 scripts with a total of 98 structures in 3.22 seconds
[18:17:21] [Server thread/INFO]: [Skript] Finished loading.
[18:17:21] [Server thread/INFO]: [SimpleClans] Registered WorldGuardProvider successfully
[18:17:21] [Server thread/WARN]: [SimpleClans] Error registering provider WorldGuard6Provider
[18:17:21] [Server thread/INFO]: [CataMines] Loading mines from files...
[18:17:21] [Server thread/INFO]: [CataMines] Starting mines and registering commands. Running version 2.5.11
[18:17:21] [Server thread/INFO]: [CataMines] Registering listeners
[18:17:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[18:17:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[18:17:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[18:17:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[18:17:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[18:17:21] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion vault due to a missing plugin: Vault
[18:17:21] [Server thread/INFO]: 5 placeholder hook(s) registered!
[18:17:21] [Server thread/INFO]: Done (122.667s)! For help, type "help"
[18:17:21] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 4665ms or 93 ticks behind
[18:17:21] [Server thread/INFO]: Timings Reset
[18:17:21] [Server thread/INFO]: (!) BetterBubble has loaded! (Free) (B33.5)
[18:17:21] [Craft Scheduler Thread - 14 - Essentials/WARN]: [Essentials] You're 16 EssentialsX dev build(s) out of date!
[18:17:21] [Craft Scheduler Thread - 14 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[18:17:22] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:725)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:699)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:532)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:471)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[18:17:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:238)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[18:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[18:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1726)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:17:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:17:22] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:725)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:699)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:532)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:471)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[18:17:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:238)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[18:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[18:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1726)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:17:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:17:22] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:725)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:699)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:532)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:471)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[18:17:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:238)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[18:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[18:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1726)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:17:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:17:22] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:725)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:699)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:532)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:471)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[18:17:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:238)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[18:17:22] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[18:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[18:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1726)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[18:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:17:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:17:22] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightStarlightRelighterFactory as relighter factory.
[18:17:23] [ServerAntiVPN v1.0.0 - Socket Timeout Checker/INFO]: [ServerAntiVPN] Closing the AntiVPN Server connection...
[18:17:23] [ServerAntiVPN v1.0.0 - Socket Timeout Checker/INFO]: [ServerAntiVPN] Reconnecting to the AntiVPN Server...
[18:17:24] [WebSocketConnectReadThread-298/INFO]: [ServerAntiVPN] Disconnected from the AntiVPN Server. (Code: 1002, Reason: Invalid status code received: 400 Status line: HTTP/1.1 400 Bad Request)
[18:17:28] [Server thread/ERROR]: [MythicMobs] [EVENTS] Exception thrown whilst handling event: org.bukkit.event.entity.CreatureSpawnEvent
[18:17:28] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[18:17:28] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.getSpawnState(RandomSpawnerManager.java:270)
[18:17:28] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.handleSpawnEvent(RandomSpawnerManager.java:232)
[18:17:28] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.listeners.MobListeners.lambda$load$8(MobListeners.java:174)
[18:17:28] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.Delegates$ConsumerToBiConsumerSecond.accept(Delegates.java:144)
[18:17:28] [Server thread/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.bukkit.utils.events.functional.single.EventListener.execute(EventListener.java:131)
[18:17:28] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[18:17:28] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[18:17:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[18:17:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[18:17:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[18:17:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.event.CraftEventFactory.callCreatureSpawnEvent(CraftEventFactory.java:798)
[18:17:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.event.CraftEventFactory.doEntityAddEventCalling(CraftEventFactory.java:702)
[18:17:28] [Server thread/WARN]:     at net.minecraft.server.level.ServerLevel.addEntity(ServerLevel.java:1541)
[18:17:28] [Server thread/WARN]:     at net.minecraft.server.level.ServerLevel.addFreshEntity(ServerLevel.java:1466)
[18:17:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftWorld.addEntityToWorld(CraftWorld.java:1061)
[18:17:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.addEntity(CraftRegionAccessor.java:461)
[18:17:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.spawn(CraftRegionAccessor.java:424)
[18:17:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.spawn(CraftRegionAccessor.java:418)
[18:17:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftRegionAccessor.spawn(CraftRegionAccessor.java:409)
[18:17:28] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopobjects.living.SKLivingShopObject.spawn(SKLivingShopObject.java:345)
[18:17:28] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawner.doSpawnShopkeeper(ShopkeeperSpawner.java:399)
[18:17:28] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawnQueue.process(ShopkeeperSpawnQueue.java:98)
[18:17:28] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawnQueue.process(ShopkeeperSpawnQueue.java:24)
[18:17:28] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.util.taskqueue.TaskQueue.execute(TaskQueue.java:230)
[18:17:28] [Server thread/WARN]:     at Shopkeepers-2.23.2.jar//com.nisovin.shopkeepers.shopkeeper.spawning.ShopkeeperSpawnQueue$SpawnerTask.run(ShopkeeperSpawnQueue.java:52)
[18:17:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[18:17:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[18:17:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1726)
[18:17:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[18:17:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[18:17:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[18:17:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[18:17:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[18:17:31] [ServerAntiVPN v1.0.0 - Socket Timeout Checker/INFO]: [ServerAntiVPN] Closing the AntiVPN Server connection...
[18:17:31] [ServerAntiVPN v1.0.0 - Socket Timeout Checker/INFO]: [ServerAntiVPN] Reconnecting to the AntiVPN Server...
[18:17:32] [WebSocketConnectReadThread-303/INFO]: [ServerAntiVPN] Disconnected from the AntiVPN Server. (Code: 1002, Reason: Invalid status code received: 400 Status line: HTTP/1.1 400 Bad Request)
[18:17:39] [ServerAntiVPN v1.0.0 - Socket Timeout Checker/INFO]: [ServerAntiVPN] Closing the AntiVPN Server connection...
[18:17:39] [ServerAntiVPN v1.0.0 - Socket Timeout Checker/INFO]: [ServerAntiVPN] Reconnecting to the AntiVPN Server...
[18:17:40] [WebSocketConnectReadThread-305/INFO]: [ServerAntiVPN] Disconnected from the AntiVPN Server. (Code: 1002, Reason: Invalid status code received: 400 Status line: HTTP/1.1 400 Bad Request)
[18:17:47] [ServerAntiVPN v1.0.0 - Socket Timeout Checker/INFO]: [ServerAntiVPN] Closing the AntiVPN Server connection...
[18:17:47] [ServerAntiVPN v1.0.0 - Socket Timeout Checker/INFO]: [ServerAntiVPN] Reconnecting to the AntiVPN Server...
[18:17:48] [WebSocketConnectReadThread-307/INFO]: [ServerAntiVPN] Disconnected from the AntiVPN Server. (Code: 1002, Reason: Invalid status code received: 400 Status line: HTTP/1.1 400 Bad Request)