Paste #132286: Diff Report Between Paste #132285 and #132278

Date: 2025/03/31 10:44:59 UTC-07:00
Type: Diff Report

View Raw Paste Download This Paste Edit Of Paste 132285
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
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486


-[14:44:40] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.6+7-Ubuntu-124.04.1; Ubuntu null) on Linux 6.8.12-4-pve (amd64)
-[14:44:40] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-221-main@c467df9 (2025-03-24T00:18:41Z) for Minecraft 1.21.4
-[14:44:41] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
-[14:44:42] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
-[14:44:42] [ServerMain/INFO]: [PluginInitializerManager] Initialized 41 plugins
-[14:44:42] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
- - EconomyShopGUI (6.10.1)
-[14:44:42] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (40):
- - AuraSkills (2.2.8), AuthMe (5.6.0-bCUSTOM), AutoBroadcast (1.5.1), BeautyQuests (1.0.4), BetterTeams (4.10.0), Citizens (2.0.38-SNAPSHOT (build 3765)), CrucialAPI (2.2.0), DiceFurniture (3.9.3), Essentials (2.21.1-dev+5-dabe687), EssentialsSpawn (2.21.1-dev+7-f09541c), ExclusiveRandomTeleport (2.0.0), FurnitureLib (3.2.6), GSit (1.12.1), GrimAC (2.3.68), IP (5.3.1), IllegalStack (2.9.12a), LPC (3.6.1), LuckPerms (5.4.158), MobPlugin (1.0.2), Morphy (3.6), Multiverse-Core (4.3.14), OpenAudioMc (6.10.6), PlaceholderAPI (2.11.6), PlayerReport (3.4.3), PluginManager (2.8.1), ProtocolLib (5.3.0), ReviveMe (4.2.1), SkQuery (4.3.2), SkinsRestorer (15.6.1), Skript (2.9.5), TAB (5.0.3), TradeSystem (2.6.3), Vault (1.7.3-b131), Vegas (2.0), ViaBackwards (5.2.1), ViaVersion (5.2.1), WorldEdit (7.3.10+7004-768a436), WorldGuard (7.0.13-beta-2+5c4848b), packetevents (2.7.1+91730fdb4-SNAPSHOT), skRayFall (1.9.28)
-[14:44:46] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
-[14:44:47] [ServerMain/INFO]: Loaded 1370 recipes
-[14:44:47] [ServerMain/INFO]: Loaded 1481 advancements
-[14:44:47] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
-[14:44:47] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 189.2ms
-[14:44:48] [Server thread/INFO]: Starting minecraft server version 1.21.4
-[14:44:48] [Server thread/INFO]: Loading properties
-[14:44:48] [Server thread/INFO]: This server is running Paper version 1.21.4-221-main@c467df9 (2025-03-24T00:18:41Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
-[14:44:48] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
-[14:44:48] [Server thread/INFO]: Server Ping Player Sample Count: 12
-[14:44:48] [Server thread/INFO]: Using 4 threads for Netty based IO
-[14:44:48] [Server thread/INFO]: [MoonriseCommon] Paper is using 2 worker threads, 1 I/O threads
-[14:44:48] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
-[14:44:48] [Server thread/INFO]: Default game type: SURVIVAL
-[14:44:48] [Server thread/INFO]: Generating keypair
-[14:44:49] [Server thread/INFO]: Starting Minecraft server on *:25565
-[14:44:49] [Server thread/INFO]: Using epoll channel type
-[14:44:49] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
-[14:44:49] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
-[14:44:49] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load 'plugins/.paper-remapped/Morph-3.6.jar' in 'plugins/.paper-remapped'
-org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [LibsDisguises]. Please download and install these plugins to run 'Morphy'.
-    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:39) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:563) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:277) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
-[14:44:49] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
-[14:44:50] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/Minecraft/Main/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
-[14:44:50] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
-[14:44:50] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
-[14:44:50] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
-[14:44:51] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
-[14:44:51] [Server thread/INFO]: [ViaBackwards] Loading translations...
-[14:44:51] [Server thread/INFO]: [ViaBackwards] Registering protocols...
-[14:44:51] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.158
-[14:44:51] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
-[14:44:51] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.10+7004-768a436
-[14:44:52] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@729ebc1d]
-[14:44:52] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13-beta-2+5c4848b
-[14:44:52] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
-[14:44:52] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
-[14:44:52] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
-[14:44:53] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
-[14:44:53] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1-dev+5-dabe687
-[14:44:53] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.5
-[14:44:53] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1
-[14:44:53] [Server thread/INFO]: [FurnitureLib] Loading server plugin FurnitureLib v3.2.6
-[14:44:53] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3765)
-[14:44:53] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.12.1
-[14:44:53] [Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.10.0
-[14:44:53] [Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
-[14:44:53] [Server thread/INFO]: [BetterTeams] File is up to date
-[14:44:53] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.1-dev+7-f09541c
-[14:44:53] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.3.2
-[14:44:53] [Server thread/INFO]: [OpenAudioMc] Loading server plugin OpenAudioMc v6.10.6
-[14:44:53] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.8
-[14:44:53] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.1+91730fdb4-SNAPSHOT
-[14:44:55] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.10.1
-[14:44:55] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.6.1
-[14:44:55] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.1
-[14:44:55] [Server thread/INFO]: [IllegalStack] Loading server plugin IllegalStack v2.9.12a
-[14:44:55] [Server thread/INFO]: [ExclusiveRandomTeleport] Loading server plugin ExclusiveRandomTeleport v2.0.0
-[14:44:55] [Server thread/INFO]: [CrucialAPI] Loading server plugin CrucialAPI v2.2.0
-[14:44:55] [Server thread/INFO]: [IP] Loading server plugin IP v5.3.1
-[14:44:55] [Server thread/INFO]: [DiceFurniture] Loading server plugin DiceFurniture v3.9.3
-[14:44:55] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.3
-[14:44:55] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.68
-[14:44:55] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
-[14:44:58] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v1.0.4
-[14:44:58] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.3
-[14:44:58] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
-[14:44:58] [Server thread/INFO]: [Vegas] Loading server plugin Vegas v2.0
-[14:44:58] [Server thread/INFO]: [ReviveMe] Loading server plugin ReviveMe v4.2.1
-[14:44:58] [Server thread/INFO]: [ReviveMe] Random int generated: 2957066
-[14:44:58] [Server thread/INFO]: [ReviveMe] ReviveMe loaded!. Selected version: [v1_21_R3]
-[14:44:58] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
-[14:44:58] [Server thread/INFO]: [AutoBroadcast] Loading server plugin AutoBroadcast v1.5.1
-[14:44:58] [Server thread/INFO]: [AuthMe] Loading server plugin AuthMe v5.6.0-bCUSTOM
-[14:44:58] [Server thread/INFO]: [PlayerReport] Loading server plugin PlayerReport v3.4.3
-[14:44:58] [Server thread/INFO]: [PluginManager] Loading server plugin PluginManager v2.8.1
-[14:44:58] [Server thread/INFO]: [MobPlugin] Loading server plugin MobPlugin v1.0.2
-[14:44:58] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
-[14:44:58] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.158
-[14:44:59] [Server thread/INFO]:         __    
-[14:44:59] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.158
-[14:44:59] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
-[14:44:59] [Server thread/INFO]: 
-[14:44:59] [Server thread/INFO]: [LuckPerms] Loading configuration...
-[14:44:59] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
-[14:45:00] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
-[14:45:00] [Server thread/INFO]: [LuckPerms] Performing initial data load...
-[14:45:00] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2320ms)
-[14:45:00] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
-[14:45:00] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
-[14:45:00] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
-[14:45:00] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
-[14:45:00] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
-[14:45:00] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.10+7004-768a436
-[14:45:00] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
-[14:45:00] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
-[14:45:01] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21_4.PaperweightAdapter as the Bukkit adapter
-[14:45:02] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
-[14:45:02] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.6.1
-[14:45:02] [Server thread/WARN]: [SkinsRestorer] You must agree to the rules at 'commands.perSkinPermissionsConsent' in the config to use per skin permissions.
-[14:45:03] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.4.
-[14:45:03] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
-[14:45:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.6.1]
-[14:45:03] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
-[14:45:03] [Server thread/INFO]: Preparing level "world"
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.6.1
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: 8687003
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
-[14:45:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
-[14:45:04] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
-[14:45:05] [Server thread/INFO]: Preparing spawn area: 0%
-[14:45:05] [Server thread/INFO]: Preparing spawn area: 6%
-[14:45:05] [Server thread/INFO]: Time elapsed: 944 ms
-[14:45:05] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
-[14:45:05] [Server thread/INFO]: Preparing spawn area: 0%
-[14:45:06] [Server thread/INFO]: Time elapsed: 270 ms
-[14:45:06] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
-[14:45:06] [Server thread/INFO]: Preparing spawn area: 0%
-[14:45:06] [Server thread/INFO]: Time elapsed: 106 ms
-[14:45:06] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
-[14:45:06] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
-[14:45:06] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13-beta-2+5c4848b
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
-[14:45:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
-[14:45:06] [Server thread/INFO]: [WorldGuard] Loading region data...
-[14:45:06] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
-[14:45:06] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.14" 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--].
-[14:45:06] [Server thread/INFO]: [Multiverse-Core] §aWe 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.
-[14:45:06] [Server thread/INFO]: Preparing start region for dimension minecraft:kosciol
-[14:45:06] [Server thread/INFO]: Preparing spawn area: 0%
-[14:45:07] [Server thread/INFO]: Time elapsed: 165 ms
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Kosciol) TNT ignition is PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Kosciol) Lighters are PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Kosciol) Lava fire is PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Kosciol) Fire spread is UNRESTRICTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Kosciol'
-[14:45:07] [Server thread/INFO]: Preparing start region for dimension minecraft:casino
-[14:45:07] [Server thread/INFO]: Preparing spawn area: 0%
-[14:45:07] [Server thread/INFO]: Time elapsed: 98 ms
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Casino) TNT ignition is PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Casino) Lighters are PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Casino) Lava fire is PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Casino) Fire spread is UNRESTRICTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Casino'
-[14:45:07] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: IridiumSkyblock_nether
-[14:45:07] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
-[14:45:07] [Server thread/INFO]: Preparing start region for dimension minecraft:hospital
-[14:45:07] [Server thread/INFO]: Preparing spawn area: 0%
-[14:45:07] [Server thread/INFO]: Time elapsed: 171 ms
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Hospital) TNT ignition is PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Hospital) Lighters are PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Hospital) Lava fire is PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Hospital) Fire spread is UNRESTRICTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Hospital'
-[14:45:07] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
-[14:45:07] [Server thread/INFO]: Preparing spawn area: 0%
-[14:45:07] [Server thread/INFO]: Time elapsed: 126 ms
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
-[14:45:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
-[14:45:07] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: IridiumSkyblock
-[14:45:07] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
-[14:45:07] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Duels
-[14:45:07] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
-[14:45:07] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
-[14:45:07] [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.
-[14:45:07] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
-[14:45:07] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
-[14:45:07] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
-[14:45:07] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1-dev+5-dabe687
-[14:45:08] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsSpawn to the same version.
-[14:45:08] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
-[14:45:08] [Server thread/INFO]: [Essentials] No kits found to migrate.
-[14:45:08] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
-[14:45:08] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
-[14:45:08] [Server thread/INFO]: [Essentials] Using locale en_US
-[14:45:08] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
-[14:45:09] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
-[14:45:09] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
-[14:45:09] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
-[14:45:09] [Server thread/INFO]: [Skript] Enabling Skript v2.9.5
-[14:45:10] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.10.2 (you're currently running 2.9.5)
-[14:45:10] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.10.2/Skript-2.10.2.jar>https://github.com/SkriptLang/Skript/releases/download/2.10.2/Skript-2.10.2.jar
-[14:45:24] [Server thread/INFO]: [Skript] Loaded 233186 aliases in 14847ms
-[14:45:24] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
-[14:45:24] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1
-[14:45:24] [Server thread/INFO]: [FurnitureLib] Enabling FurnitureLib v3.2.6
-[14:45:25] [Server thread/INFO]: ==========================================
-[14:45:25] [Server thread/INFO]: FurnitureLib Version: 3.2.6
-[14:45:25] [Server thread/INFO]: Furniture Author: Ste3et_C0st
-[14:45:25] [Server thread/INFO]: Furniture Website: https://dicecraft.de/furniture/
-[14:45:25] [Server thread/INFO]: Furniture find ProtectionLib: false
-[14:45:25] [Server thread/INFO]: [FurnitureLib] FurnitureLib use FurnitureLib-Paper module
-[14:45:25] [Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
-[14:45:25] [Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
-[14:45:25] [Server thread/INFO]: [FurnitureLib] FurnitureLib Started SQLite database. Took 28ms
-[14:45:25] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (world)
-[14:45:25] [Server thread/INFO]: [FurnitureLib] No Models are found in world: world
-[14:45:25] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (world_nether)
-[14:45:25] [Server thread/INFO]: [FurnitureLib] No Models are found in world: world_nether
-[14:45:25] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (world_the_end)
-[14:45:25] [Server thread/INFO]: [FurnitureLib] No Models are found in world: world_the_end
-[14:45:25] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Kosciol)
-[14:45:25] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Kosciol
-[14:45:25] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Casino)
-[14:45:25] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Casino
-[14:45:25] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Hospital)
-[14:45:25] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Hospital
-[14:45:25] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Spawn)
-[14:45:25] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Spawn
-[14:45:26] [Server thread/INFO]: [FurnitureLib] FurnitureLib Load 42 model schematics into Ram. Took 1197ms
-[14:45:26] [Server thread/INFO]: Furniture load finish :)
-[14:45:26] [Server thread/INFO]: ==========================================
-[14:45:26] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3765)
-[14:45:26] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
-[14:45:26] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[bT.
-[14:45:26] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[null.
-[14:45:26] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3765) (Is it up to date?)
+[19:43:48] [ServerMain/INFO]: [bootstrap] Running Java 21 (Java HotSpot(TM) 64-Bit Server VM 21.0.5+9-LTS-239; Oracle Corporation null) on Linux 5.10.0-33-amd64 (amd64)
+[19:43:48] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-222-main@9b1798d (2025-03-27T13:35:40Z) for Minecraft 1.21.4
+[19:43:48] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
+[19:43:49] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens (5).jar'...
+[19:43:51] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens (5).jar' in 1764ms.
+[19:43:51] [ServerMain/INFO]: [PluginInitializerManager] Initialized 72 plugins
+[19:43:51] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (4):
+ - CrazyCrates (3.7.2), Minepacks (2.4.31.6-T20250103114036), RHSignItem (1.21_R7), TeamChat (2.0)
+[19:43:51] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (68):
+ - AdvancedBan (2.3.0), AdvancedBanAutoBan (1.0.3), AdvancedPortals (2.3.3), AntiDeaathMessages (1.0), AnvilColor (1.1), ArmorEffects (1.4), BlockCommand (1.5.3), BlockParticles (1.12), BlueSlimeCore (2.9.6.431), BottledExp (3.2.4.0), CMILib (1.5.4.0), ChestShop (3.12.3-SNAPSHOT (build 429)), ChorusManager (20.02.01), Citizens (2.0.38-SNAPSHOT (build 3765)), ClansLite (1.5.4), ClearLag (3.2.2), CombatLogX (11.5.0.0.1242), CommandBlocker (1.6), CommandRegions (1.0), CustomEnderChest (1.13.1), DecentHolograms (2.8.16), DeluxeAuctions (2.8), DeluxeMenus (1.14.0-Release), DeluxeTags (1.8.2-Release), DisableJoinMessage (1.0), DiscordSRV (1.29.0), DoorsReloaded (1.3.1), Elevator (3.13.0), Essentials (2.20.1), EssentialsSpawn (2.20.1), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1072;42be911), GrapplingHook (1.6.2), HeadDatabase (4.21.2), Images (2.5.3), ItemJoin (6.1.2-RELEASE-b1076), Jobs (5.2.4.6), LPC (3.6.0), LastLoginAPI (1.7.4), LuckPerms (5.4.0), MineXFarmRegen (6.0.4), Multiverse-Core (2.5-b719), MysqlEconomyBank (1.16.4), OldCombatMechanics (2.0.4), PlaceholderAPI (2.11.6), PlayTime (3.3), PlayerProfiles (6.1.2), PlayerSkillsReborn (1.7.12), ProtectionStones (2.10.3), ProtocolLib (5.3.0), RandomTeleport (7.9.2), SellGUI (1.6.1), ServerTutorialPlus (1.25.2), Shop (1.5.3), SilkSpawners_v2 (2.3.2), SirBlobmanCore (2.4.1-Dev), StatisticsEditor (1.0), Sunscreen (1.2.0), TAB (5.0.7), Tebex (2.1.0), Themis (0.17.5), TradeSystem (2.6.3), Vault (1.7.3-b131), VoidSpawn (1.18.0-SNAPSHOT), VotifierPlus (1.4), VotingPlugin (6.18.3), WDLCompanion (1.2.0), WorldGuard (7.0.13-beta-2+5c4848b), sleep-most (5.5.3)
+[19:43:57] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
+[19:43:59] [ServerMain/INFO]: Loaded 1370 recipes
+[19:43:59] [ServerMain/INFO]: Loaded 1481 advancements
+[19:43:59] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
+[19:43:59] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 259,6ms
+[19:43:59] [Server thread/INFO]: Starting minecraft server version 1.21.4
+[19:43:59] [Server thread/WARN]: ****************************
+[19:43:59] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
+[19:43:59] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
+[19:43:59] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
+[19:43:59] [Server thread/WARN]: ****************************
+[19:43:59] [Server thread/INFO]: Loading properties
+[19:43:59] [Server thread/INFO]: This server is running Paper version 1.21.4-222-main@9b1798d (2025-03-27T13:35:40Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
+[19:44:00] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
+[19:44:00] [Server thread/INFO]: Server Ping Player Sample Count: 12
+[19:44:00] [Server thread/INFO]: Using 4 threads for Netty based IO
+[19:44:00] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
+[19:44:00] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
+[19:44:00] [Server thread/INFO]: Default game type: SURVIVAL
+[19:44:00] [Server thread/INFO]: Generating keypair
+[19:44:00] [Server thread/INFO]: Starting Minecraft server on *:9008
+[19:44:00] [Server thread/INFO]: Using epoll channel type
+[19:44:00] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
+[19:44:00] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
+[19:44:01] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/survivalV2/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
+[19:44:01] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
+[19:44:10] [Server thread/WARN]: Legacy plugin Multiverse-Core v2.5-b719 does not specify an api-version.
+[19:44:10] [Server thread/WARN]: Legacy plugin CommandRegions v1.0 does not specify an api-version.
+[19:44:10] [Server thread/WARN]: Legacy plugin BlockCommand v1.5.3 does not specify an api-version.
+[19:44:10] [Server thread/WARN]: Legacy plugin AntiDeaathMessages v1.0 does not specify an api-version.
+[19:44:10] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
+[19:44:10] [Server thread/WARN]: Legacy plugin PlayerSkillsReborn v1.7.12 does not specify an api-version.
+[19:44:11] [Server thread/WARN]: Legacy plugin DisableJoinMessage v1.0 does not specify an api-version.
+[19:44:11] [Server thread/WARN]: Legacy plugin PlayTime v3.3 does not specify an api-version.
+[19:44:11] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
+[19:44:11] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/survivalV2/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
+[19:44:11] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/survivalV2/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
+[19:44:11] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/survivalV2/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
+[19:44:11] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/survivalV2/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
+[19:44:11] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/survivalV2/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
+[19:44:11] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/survivalV2/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
+[19:44:11] [Server thread/WARN]: Legacy plugin WDLCompanion v1.2.0 does not specify an api-version.
+[19:44:11] [Server thread/WARN]: Legacy plugin Sunscreen v1.2.0 does not specify an api-version.
+[19:44:11] [Server thread/WARN]: Legacy plugin StatisticsEditor v1.0 does not specify an api-version.
+[19:44:11] [Server thread/WARN]: Legacy plugin ChorusManager v20.02.01 does not specify an api-version.
+[19:44:11] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.0
+[19:44:12] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
+[19:44:12] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1072;42be911
+[19:44:12] [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/
+**********************************************
+[19:44:13] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@5e33761e]
+[19:44:13] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13-beta-2+5c4848b
+[19:44:13] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
+[19:44:13] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
+[19:44:13] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
+[19:44:14] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
+[19:44:14] [Server thread/INFO]: [ProtectionStones] Loading server plugin ProtectionStones v2.10.3
+[19:44:14] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.6.431
+[19:44:14] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3765)
+[19:44:14] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.21.2
+[19:44:14] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.4.0
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.5.0.0.1242
+[19:44:14] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading expansions...
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'WorldGuard Compatibility v17.3'...
+[19:44:14] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.13-beta-2+5c4848b
+[19:44:14] [Server thread/INFO]: [CombatLogX]  
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'Action Bar v17.3'...
+[19:44:14] [Server thread/INFO]: [CombatLogX]  
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'ProtectionStones Compatibility v17.2'...
+[19:44:14] [Server thread/INFO]: [CombatLogX]  
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v17.2'...
+[19:44:14] [Server thread/INFO]: [CombatLogX]  
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v17.7'...
+[19:44:14] [Server thread/INFO]: [CombatLogX]  
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'LuckPerms Compatibility v17.1'...
+[19:44:14] [Server thread/INFO]: [CombatLogX]  
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'Scoreboard v17.1'...
+[19:44:14] [Server thread/INFO]: [CombatLogX]  
+[19:44:14] [Server thread/INFO]: [CombatLogX] Loading expansion 'Citizens Compatibility v17.15'...
+[19:44:14] [Server thread/INFO]: [CombatLogX]  
+[19:44:14] [Server thread/INFO]: [CombatLogX] Successfully loaded 8 expansions.
+[19:44:14] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
+[19:44:14] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v2.5-b719
+[19:44:14] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.16
+[19:44:14] [Server thread/INFO]: [VotifierPlus] Loading server plugin VotifierPlus v1.4
+[19:44:14] [Server thread/INFO]: [SilkSpawners_v2] Loading server plugin SilkSpawners_v2 v2.3.2
+[19:44:14] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.6
+[19:44:14] [Server thread/INFO]: [RandomTeleport] [RandomTeleport] Loading server plugin RandomTeleport v7.9.2
+[19:44:14] [Server thread/INFO]: [CommandRegions] Loading server plugin CommandRegions v1.0
+[19:44:14] [Server thread/INFO]: [MineXFarmRegen] Loading server plugin MineXFarmRegen v6.0.4
+[19:44:14] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.1.0
+[19:44:14] [Server thread/INFO]: [BottledExp] Loading server plugin BottledExp v3.2.4.0
+[19:44:14] [Server thread/INFO]: [Elevator] Loading server plugin Elevator v3.13.0
+[19:44:14] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
+[19:44:14] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
+[19:44:14] [Server thread/INFO]: [BlockCommand] Loading server plugin BlockCommand v1.5.3
+[19:44:14] [Server thread/INFO]: [AntiDeaathMessages] Loading server plugin AntiDeaathMessages v1.0
+[19:44:14] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.5.3
+[19:44:14] [Server thread/INFO]: [AnvilColor] Loading server plugin AnvilColor v1.1
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Loading server plugin LastLoginAPI v1.7.4
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Loading libraries of LastLoginAPI v1.7.4, this may take a while
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jar-relocator
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm-commons
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for gson
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-core
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for geantyref
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for caffeine
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-stringtemplate4
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for ST4
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for antlr-runtime
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-sqlobject
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-api
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-simple
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for HikariCP
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mariadb-java-client
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mysql-connector-j
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for postgresql
+[19:44:14] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for h2
+[19:44:14] [Server thread/INFO]: [OldCombatMechanics] Loading server plugin OldCombatMechanics v2.0.4
+[19:44:14] [Server thread/INFO]: [VoidSpawn] Loading server plugin VoidSpawn v1.18.0-SNAPSHOT
+[19:44:14] [Server thread/INFO]: [PlayerProfiles] Loading server plugin PlayerProfiles v6.1.2
+[19:44:14] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.6-T20250103114036
+[19:44:14] [Server thread/INFO]: [DoorsReloaded] Loading server plugin DoorsReloaded v1.3.1
+[19:44:14] [Server thread/INFO]: [DeluxeAuctions] Loading server plugin DeluxeAuctions v2.8
+[19:44:14] [Server thread/INFO]: [Server Tutorial Plus] Loading server plugin ServerTutorialPlus v1.25.2
+[19:44:14] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.1
+[19:44:14] [Server thread/INFO]: [CommandBlocker] Loading server plugin CommandBlocker v1.6
+[19:44:14] [Server thread/INFO]: [ArmorEffects] Loading server plugin ArmorEffects v1.4
+[19:44:14] [Server thread/INFO]: [PlayerSkillsReborn] Loading server plugin PlayerSkillsReborn v1.7.12
+[19:44:14] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
+[19:44:14] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v3.7.2
+[19:44:14] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
+[19:44:14] [Server thread/INFO]: [RHSignItem] Loading server plugin RHSignItem v1.21_R7
+[19:44:14] [Server thread/INFO]: [Themis] Loading server plugin Themis v0.17.5
+[19:44:17] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.3
+[19:44:17] [Server thread/INFO]: [DisableJoinMessage] Loading server plugin DisableJoinMessage v1.0
+[19:44:17] [Server thread/INFO]: [ClansLite] Loading server plugin ClansLite v1.5.4
+[19:44:17] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:17] [Server thread/INFO]: Clan » A supported Minecraft version has been detected!
+[19:44:17] [Server thread/INFO]: Clan » Your server version is: 1.21.4-222-9b1798d (MC: 1.21.4)
+[19:44:17] [Server thread/INFO]: Clan » Continuing plugin startup
+[19:44:17] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:17] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:17] [Server thread/INFO]: Clan » ClansLite-API has been registered successfully!
+[19:44:17] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:17] [Server thread/INFO]: [PlayTime] Loading server plugin PlayTime v3.3
+[19:44:17] [Server thread/INFO]: [TeamChat] Loading server plugin TeamChat v2.0
+[19:44:17] [Server thread/INFO]: [SirBlobman Core] Loading server plugin SirBlobmanCore v2.4.1-Dev
+[19:44:17] [Server thread/INFO]: [SellGUI] Loading server plugin SellGUI v1.6.1
+[19:44:17] [Server thread/INFO]: [CustomEnderChest] Loading server plugin CustomEnderChest v1.13.1
+[19:44:17] [Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.12
+[19:44:17] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.3
+[19:44:17] [Server thread/INFO]: [MysqlEconomyBank] Loading server plugin MysqlEconomyBank v1.16.4
+[19:44:17] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
+[19:44:17] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v6.1.2-RELEASE-b1076
+[19:44:17] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18.3
+[19:44:17] [Server thread/INFO]: [WDLCompanion] Loading server plugin WDLCompanion v1.2.0
+[19:44:17] [Server thread/INFO]: [Sunscreen] Loading server plugin Sunscreen v1.2.0
+[19:44:17] [Server thread/INFO]: [AdvancedBanAutoBan] Loading server plugin AdvancedBanAutoBan v1.0.3
+[19:44:17] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
+[19:44:17] [Server thread/INFO]: [StatisticsEditor] Loading server plugin StatisticsEditor v1.0
+[19:44:17] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.3-SNAPSHOT (build 429)
+[19:44:17] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.13-beta-2+5c4848b loaded.
+[19:44:17] [Server thread/INFO]: [GrapplingHook] Loading server plugin GrapplingHook v1.6.2
+[19:44:17] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.7
+[19:44:17] [Server thread/INFO]: [ChorusManager] Loading server plugin ChorusManager v20.02.01
+[19:44:17] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v2.3.3
+[19:44:17] [Server thread/INFO]: [Shop] Loading server plugin Shop v1.5.3
+[19:44:17] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
+[19:44:17] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.0
+[19:44:18] [Server thread/INFO]:         __    
+[19:44:18] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.0
+[19:44:18] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
+[19:44:18] [Server thread/INFO]: 
+[19:44:18] [Server thread/INFO]: [LuckPerms] Loading configuration...
+[19:44:18] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
+[19:44:19] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
+[19:44:19] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
+[19:44:20] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
+[19:44:20] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
+[19:44:20] [Server thread/INFO]: [LuckPerms] Performing initial data load...
+[19:44:21] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3564ms)
+[19:44:21] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
+[19:44:21] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
+[19:44:21] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
+[19:44:21] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
+[19:44:21] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
+[19:44:21] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1072;42be911
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
+[19:44:21] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+[19:44:21] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
+[19:44:21] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
+[19:44:21] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
+[19:44:21] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
+[19:44:21] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightFaweAdapter as the Bukkit adapter
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=0]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=1]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=2]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=3]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=4]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=5]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=6]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=7]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=8]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=9]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=10]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=11]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=12]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=13]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=14]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=15]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=north]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=south]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=west]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=east]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:cauldron[level=0]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:cauldron[level=1]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:cauldron[level=2]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:cauldron[level=3]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:cobblestone_wall[east=false,south=false,north=false,west=false,up=false]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:mossy_cobblestone_wall[east=false,south=false,north=false,west=false,up=false]. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/ERROR]: Unknown block: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this block.
+[19:44:22] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
+[19:44:22] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.6.431
+[19:44:22] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
+[19:44:22] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
+[19:44:23] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 3 build(s) out of date.
+You are running build 1072, the latest version is build 1075.
+Update at https://ci.athion.net/job/FastAsyncWorldEdit
+[19:44:23] [Server thread/INFO]: [SirBlobman Core] Enabling SirBlobmanCore v2.4.1-Dev
+[19:44:23] [Server thread/INFO]: [SirBlobman Core] Successfully loaded 1 language(s).
+[19:44:23] [Server thread/INFO]: [CustomEnderChest] Enabling CustomEnderChest v1.13.1
+[19:44:23] [Server thread/INFO]: [CustomEnderChest] Incompatible server version detected: 1.21.4 . Running into 1.16 API mode.
+[19:44:23] [Server thread/INFO]: [CustomEnderChest] Loading the config file...
+[19:44:23] [Server thread/INFO]: [CustomEnderChest] Config loaded successfully!
+[19:44:23] [Server thread/INFO]: [CustomEnderChest] Using MySQL database for data.
+[19:44:23] [Server thread/INFO]: [CustomEnderChest] Database connection established!
+[19:44:23] [Server thread/INFO]: [CustomEnderChest] CustomEnderChest loaded successfully!
+[19:44:23] [Server thread/INFO]: [MysqlEconomyBank] Enabling MysqlEconomyBank v1.16.4
+[19:44:23] [Server thread/INFO]: [MysqlEconomyBank] Using economy system: EssentialsX Economy
+[19:44:23] [Server thread/INFO]: [MysqlEconomyBank] Using permission system: LuckPerms
+[19:44:23] [Server thread/INFO]: [MysqlEconomyBank] Loading the config file...
+[19:44:23] [Server thread/INFO]: [MysqlEconomyBank] MysqlEconomyBank loaded successfully!
+[19:44:23] [Server thread/INFO]: [MysqlEconomyBank] Interest task is disabled.
+[19:44:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: economybank [1.16.4]
+[19:44:23] [Server thread/INFO]: [MysqlEconomyBank] PlaceholdersAPI detected and placeholders activated!
+[19:44:23] [Server thread/INFO]: [MysqlEconomyBank] MysqlEconomyBank has been successfully loaded!
+[19:44:23] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v6.1.2-RELEASE-b1076
+[19:44:23] [Server thread/INFO]: [Sunscreen] Enabling Sunscreen v1.2.0*
+[19:44:23] [Server thread/INFO]: [Sunscreen] example_world will not use this plugin.
+[19:44:23] [Server thread/INFO]: [Sunscreen] ZOMBIE_VILLAGER will not burn in the sun.
+[19:44:23] [Server thread/INFO]: [Sunscreen] SKELETON will not burn in the sun.
+[19:44:23] [Server thread/INFO]: [Sunscreen] ZOMBIE will not burn in the sun.
+[19:44:23] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
+[19:44:23] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
+[19:44:23] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
+[19:44:23] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
+[19:44:23] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
+[19:44:23] [Server thread/INFO]: Preparing level "Survival"
+[19:44:24] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
+[19:44:24] [Server thread/INFO]: Preparing spawn area: 0%
+[19:44:24] [Server thread/INFO]: Preparing spawn area: 4%
+[19:44:25] [Server thread/INFO]: Preparing spawn area: 89%
+[19:44:25] [Server thread/INFO]: Time elapsed: 1042 ms
+[19:44:25] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
+[19:44:25] [Server thread/INFO]: Preparing spawn area: 0%
+[19:44:25] [Server thread/INFO]: Time elapsed: 149 ms
+[19:44:25] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
+[19:44:25] [Server thread/INFO]: Preparing spawn area: 0%
+[19:44:25] [Server thread/INFO]: Time elapsed: 117 ms
+[19:44:25] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13-beta-2+5c4848b
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival) TNT ignition is PERMITTED.
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival) Lighters are PERMITTED.
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival) Lava fire is blocked.
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival) Fire spread is UNRESTRICTED.
+[19:44:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Survival'
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival_nether) TNT ignition is PERMITTED.
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival_nether) Lighters are PERMITTED.
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival_nether) Lava fire is blocked.
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival_nether) Fire spread is UNRESTRICTED.
+[19:44:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Survival_nether'
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival_the_end) TNT ignition is PERMITTED.
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival_the_end) Lighters are PERMITTED.
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival_the_end) Lava fire is blocked.
+[19:44:25] [Server thread/INFO]: [WorldGuard] (Survival_the_end) Fire spread is UNRESTRICTED.
+[19:44:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Survival_the_end'
+[19:44:25] [Server thread/INFO]: [WorldGuard] Loading region data...
+[19:44:26] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
+[19:44:26] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
+[19:44:26] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
+[19:44:26] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
+[19:44:26] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
+[19:44:26] [Server thread/INFO]: [Essentials] No kits found to migrate.
+[19:44:26] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
+[19:44:26] [Server thread/INFO]: [Essentials] Using locale de
+[19:44:26] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
+[19:44:27] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
+[19:44:27] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
+[19:44:27] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
+[19:44:27] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.10.3
+[19:44:27] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler
+[19:44:27] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler
+[19:44:27] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled!
+[19:44:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: protectionstones [2.10.3]
+[19:44:27] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled!
+[19:44:27] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks:
+[19:44:27] [Server thread/INFO]: [ProtectionStones] - GOLD_ORE (tier2)
+[19:44:27] [Server thread/INFO]: [ProtectionStones] - COAL_ORE (tier1)
+[19:44:27] [Server thread/INFO]: [ProtectionStones] - EMERALD_ORE (tier3)
+[19:44:27] [Server thread/INFO]: [ProtectionStones] Building region cache...
+[19:44:27] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true)
+[19:44:27] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs...
+[19:44:27] [Server thread/INFO]: [ProtectionStones] §fProtectionStones has successfully started!
+[19:44:27] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3765)
+[19:44:27] [Server thread/INFO]: [Citizens] Detected system language [[de]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
+[19:44:27] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
+[19:44:27] [Server thread/ERROR]: [Citizens] Konnte Feld bT nicht abrufen: bT.
+[19:44:27] [Server thread/ERROR]: [Citizens] Konnte Feld bT nicht abrufen: null.
+[19:44:27] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3765) (Is it up to date?)
 java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R4/boss/CraftBossBar
-    at Citizens.jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2742) ~[Citizens.jar:?]
+    at Citizens (5).jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2742) ~[Citizens (5).jar:?]
     at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
     at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
     at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
-    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens.jar:?]
-    at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens.jar:?]
-    at Citizens.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens.jar:?]
+    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
+    at Citizens (5).jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens (5).jar:?]
+    at Citizens (5).jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens (5).jar:?]
+    at Citizens (5).jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens (5).jar:?]
     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
+    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
+    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
-    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-221-c467df9]
+    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
+    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
+    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
+    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
+    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
+    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
+    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-222-9b1798d]
     at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
 Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R4.boss.CraftBossBar
     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
     ... 21 more
-[14:45:26] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3765)
-[14:45:27] [Server thread/INFO]: [GSit] Enabling GSit v1.12.1
-[14:45:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.12.1]
-[14:45:27] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
-[14:45:27] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
-[14:45:27] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
-[14:45:27] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.10.0
-[14:45:27] [Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
-[14:45:27] [Server thread/INFO]: [BetterTeams] File is up to date
-[14:45:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.10.0]
-[14:45:27] [Server thread/INFO]: Display team name config value: prefix
-[14:45:27] [Server thread/INFO]: Loading below name. Type: PREFIX
-[14:45:27] [Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@53efbf48
-[14:45:27] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.1-dev+7-f09541c
-[14:45:27] [Server thread/WARN]: [EssentialsSpawn] Version mismatch! Please update all Essentials jars to the same version.
-[14:45:27] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
-[14:45:27] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.3.2
-[14:45:27] [Server thread/INFO]: [skQuery] Beginning to process a total of 152 from SkQuery
-[14:45:27] [Server thread/INFO]: [skQuery] com.skquery.skquery.elements.effects.base.OptionsPragma is patternless and failed to register. This is most likely a code error.
-[14:45:27] [Server thread/INFO]: [skQuery] com.skquery.skquery.elements.effects.base.Pragma is patternless and failed to register. This is most likely a code error.
-[14:45:27] [Server thread/INFO]: [skQuery] Out of 152 classes, 102 classes were loaded from SkQuery
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.10.6
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Starting OpenAudioMc, build 1502 by Mats
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Detected md_5 chat support, using default user adapter
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Skipped 45/45 migrations.
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] ModuleLoaderService: Loading modules from /home/minecraft/Minecraft/Main/plugins/OpenAudioMc/modules
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Using networking class com.craftmend.openaudiomc.generic.networking.DefaultNetworkingService
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Initializing connection service...
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Starting authentication module
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] This server already has an account, skipping sign up.
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Adding spigot tables
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Alias
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (alias<->Alias.java)
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for ClientDataStore
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MojangProfile
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for RegionProperties
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Speaker
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for StoredWorldChunk
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for TimedRegionProperties
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MediaRule
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Initializing account details
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] The server is empty! ignoring voice chat.
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Loading aliases...
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 0 aliases
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Enabling the 1.13 speaker system
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Starting redstone speaker tick task with interval 5 ticks
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Playlist
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlists<->Playlist.java)
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for PlaylistEntry
-[14:45:27] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlist_entries<->PlaylistEntry.java)
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 7 media chunks from file.
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Enabling voicechat channel filter
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Loading static voice channels..
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: survival
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 1 static voice channels
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Plugin Essentials is already enabled, running handler
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Plugin WorldGuard is already enabled, running handler
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Turns out you have WorldGuard installed! enabling regions and the region tasks..
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Enabling the newer 1.13 regions
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Scanning 0 regions for duplicates (out of 0 total regions)
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] No duplicate regions found, skipping cleanup...
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Plugin PlaceholderAPI is already enabled, running handler
-[14:45:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oa [1.0.0]
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] The legacy cdn exporter is disabled, skipping boot.
-[14:45:28] [Server thread/INFO]: [OpenAudioMc] [info] Starting and loading took 37912MS
-[14:45:28] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.8
-[14:45:29] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
-[14:45:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
-[14:45:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.8]
-[14:45:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.8]
-[14:45:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
-[14:45:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
-[14:45:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
-[14:45:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
-[14:45:29] [Server thread/INFO]: [AuraSkills] Loaded 151 config options in 30 ms
-[14:45:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
-[14:45:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
-[14:45:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
-[14:45:29] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
-[14:45:29] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
-[14:45:29] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.1+91730fdb4-SNAPSHOT
-[14:45:29] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
-[14:45:29] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.10.1
-[14:45:30] [packetevents-update-check-thread/INFO]: [packetevents] You are running a development build of PacketEvents. Your build: (2.7.1+91730fdb4-SNAPSHOT) | Latest release: (2.7.0)
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 shop configs from /shops/
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 5 shop sections.
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.21.4...
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
-[14:45:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.0.0]
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [DEBUG]: Found incompatible component tag for current minecraft version: Did you mean 'repair_cost' instead of 'RepairCost'?
-Please change the value manually to get rid of this message
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [WARN]: Item path in config.yml: sold-items-ignored-NBTtags
-[14:45:30] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 231ms to complete
-[14:45:30] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.10.1 but found v6.12.0.
-[14:45:30] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
-[14:45:30] [Server thread/INFO]: [LPC] Enabling LPC v3.6.1
-[14:45:30] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.9.12a
-[14:45:30] [Server thread/INFO]: [IllegalStack/IllegalStack] The following materials are allowed to have stacks larger than the vanilla size: POTION 
-[14:45:30] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT an ArcLight hybrid environment, continuing as normal.
-[14:45:30] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Forge hybrid environment, continuing as normal.
-[14:45:30] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Fabric hybrid environment, continuing as normal.
-[14:45:30] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is a Paper server, enabling Paper features.
-[14:45:30] [Server thread/INFO]: [IllegalStack/IllegalStack] Server does NOT have Folia components, continuing as normal.
-[14:45:30] [Server thread/INFO]: [IllegalStack/IllegalStack] Chat Components found! Enabling clickable commands in /istack
-[14:45:30] [Server thread/INFO]: [IllegalStack/fListener] MC Version < 1.13 detected!
-[14:45:30] [Server thread/INFO]: [IllegalStack/Listener113] Enabling 1.13+ Checks
-[14:45:30] [Server thread/INFO]: [IllegalStack/IllegalStack] ZombieVillagerTransformChance is set to 65 *** Only really matters if the difficulty is set to HARD ***
-[14:45:30] [Server thread/INFO]: [ExclusiveRandomTeleport] Enabling ExclusiveRandomTeleport v2.0.0
-[14:45:30] [Server thread/INFO]: [CrucialAPI] Enabling CrucialAPI v2.2.0
-[14:45:30] [Server thread/INFO]: [CrucialAPI] §2CrucialAPI is now enabled (Version: 2.2.0) made by §b[ChafficPlugins].
-[14:45:30] [Server thread/INFO]: [IP] Enabling IP v5.3.1
-[14:45:30] [Server thread/INFO]: [IP] Registered PlaceholderAPI hook
-[14:45:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: witp [5.3.1]
-[14:45:34] [Server thread/INFO]: Preparing start region for dimension minecraft:witp
-[14:45:34] [Server thread/INFO]: Preparing spawn area: 100%
-[14:45:34] [Server thread/INFO]: Time elapsed: 4 ms
-[14:45:34] [Server thread/INFO]: [WorldGuard] (witp) TNT ignition is PERMITTED.
-[14:45:34] [Server thread/INFO]: [WorldGuard] (witp) Lighters are PERMITTED.
-[14:45:34] [Server thread/INFO]: [WorldGuard] (witp) Lava fire is PERMITTED.
-[14:45:34] [Server thread/INFO]: [WorldGuard] (witp) Fire spread is UNRESTRICTED.
-[14:45:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'witp'
-[14:45:34] [Server thread/INFO]: [DiceFurniture] Enabling DiceFurniture v3.9.3
-[14:45:35] [Server thread/INFO]: [TAB] Enabling TAB v5.0.3
-[14:45:35] [Server thread/INFO]: [TAB] Loaded NMS hook in 28ms
-[14:45:35] [Server thread/INFO]: [TAB] Enabled in 158ms
-[14:45:35] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.68
-[14:45:35] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
-[14:45:35] [Server thread/INFO]: [GrimAC] Registering packets...
-[14:45:35] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
-[14:45:35] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
-[14:45:35] [Server thread/ERROR]: [GrimAC] GrimAC has detected that you are using ViaVersion with the `fix-1_21-placement-rotation` option enabled.
-[14:45:35] [Server thread/ERROR]: [GrimAC] This option is known to cause issues with GrimAC and may result in false positives and bypasses.
-[14:45:35] [Server thread/ERROR]: [GrimAC] Please disable this option in your ViaVersion configuration to prevent these issues.
-[14:45:35] [Server thread/WARN]: [GrimAC] GrimAC has detected that you have installed ViaBackwards on a 1.21.2+ server.
-[14:45:35] [Server thread/WARN]: [GrimAC] This setup is currently unsupported and you will experience issues with older clients using vehicles.
-[14:45:35] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v1.0.4
-[14:45:35] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
-[14:45:35] [Server thread/WARN]: [BeautyQuests] The Minecraft version 1_21_R3 is not supported by BeautyQuests.
-[14:45:35] [Server thread/WARN]: [BeautyQuests] Some functionnalities of the plugin have not been enabled.
-[14:45:35] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.017s)!
-[14:45:35] [Server thread/INFO]: [BeautyQuests] Loaded start particles: DUST in shape POINT with color R255 G255 B0
-[14:45:35] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: HAPPY_VILLAGER in shape BAR
-[14:45:35] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE in shape SPOT
-[14:45:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beautyquests [1.0.4]
-[14:45:35] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
-[14:45:35] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.integrations.worldguard.WorldGuardEntryHandler
-[14:45:35] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.3
-[14:45:35] [Server thread/INFO]:  
-[14:45:35] [Server thread/INFO]: __________________________________________________________
-[14:45:35] [Server thread/INFO]:  
-[14:45:35] [Server thread/INFO]:                        TradeSystem [2.6.3]
-[14:45:35] [Server thread/INFO]:  
-[14:45:35] [Server thread/INFO]: Status:
-[14:45:35] [Server thread/INFO]:  
-[14:45:35] [Server thread/INFO]: MC-Version: Paper (1.21.4)
-[14:45:35] [Server thread/INFO]:  
-[14:45:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
-[14:45:36] [Server thread/INFO]:   > Loading sounds
-[14:45:36] [Server thread/INFO]:   > Loading blacklist
-[14:45:36] [Server thread/INFO]:     ...got 3 blocked item(s)
-[14:45:36] [Server thread/INFO]:   > Loading layouts
-[14:45:36] [Server thread/INFO]:     ...got 4 layout(s)
-[14:45:36] [Server thread/INFO]:   > Queuing database initializing task
-[14:45:36] [Folia Async Scheduler Thread #3/INFO]: [TradeSystem] Database was started successfully.
-[14:45:36] [Server thread/INFO]:  
-[14:45:36] [Server thread/INFO]: Finished (419ms)
-[14:45:36] [Server thread/INFO]:  
-[14:45:36] [Server thread/INFO]: __________________________________________________________
-[14:45:36] [Server thread/INFO]:  
-[14:45:36] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
-[14:45:36] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
-[14:45:36] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
-[14:45:36] [Server thread/INFO]: [skRayFall] Cooking Bacon...
-[14:45:36] [Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
-[14:45:36] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
-[14:45:36] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
-[14:45:36] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
-[14:45:36] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
-[14:45:36] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
-[14:45:36] [Server thread/INFO]: [skRayFall] Bacon is ready!
-[14:45:36] [Server thread/INFO]: [Vegas] Enabling Vegas v2.0
-[14:45:36] [Server thread/INFO]: [ReviveMe] Enabling ReviveMe v4.2.1
-[14:45:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: reviveme [4.2.1]
-[14:45:36] [Server thread/INFO]: [AutoBroadcast] Enabling AutoBroadcast v1.5.1
-[14:45:36] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-bCUSTOM
-[14:45:36] [Server thread/INFO]: [AuthMe] SQLite Setup finished
-[14:45:37] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
-[14:45:37] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
-[14:45:37] [Server thread/INFO]: [AuthMe] Hooked successfully into Multiverse-Core
-[14:45:37] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0 build n.CUSTOM successfully enabled!
-[14:45:37] [Server thread/INFO]: [PlayerReport] Enabling PlayerReport v3.4.3
-[14:45:37] [Server thread/INFO]: [PluginManager] Enabling PluginManager v2.8.1
-[14:45:37] [Server thread/INFO]: [MobPlugin] Enabling MobPlugin v1.0.2
-[14:45:37] [Server thread/INFO]: Minimum holding distance: 1.2
-[14:45:37] [Server thread/INFO]: Maximum holding distance: 30.0
-[14:45:37] [Server thread/INFO]: Enabled default crafting recipe: true
-[14:45:37] [Server thread/INFO]: Enabled backpack: true
-[14:45:37] [Server thread/INFO]: Allowed Grabbing Players: true
-[14:45:37] [Server thread/INFO]: Ignoring player grab consent: false
-[14:45:37] [Server thread/INFO]: Disabling players dismounting willingly: false
-[14:45:37] [Server thread/INFO]: [spark] Starting background profiler...
-[14:45:37] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
-[14:45:37] [Server thread/INFO]: 0 placeholder hook(s) registered!
-[14:45:37] [Server thread/INFO]: Done preparing level "world" (34.280s)
-[14:45:37] [Server thread/INFO]: Running delayed init tasks
-[14:45:37] [Craft Scheduler Thread - 5 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
-[14:45:37] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Fetching version information...
-[14:45:37] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
-[14:45:37] [Craft Scheduler Thread - 16 - AuthMe/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
-[14:45:37] [Craft Scheduler Thread - 16 - AuthMe/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
-[14:45:37] [Craft Scheduler Thread - 16 - AuthMe/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
-[14:45:37] [Craft Scheduler Thread - 20 - Vault/INFO]: [Vault] Checking for Updates ... 
-[14:45:37] [Craft Scheduler Thread - 16 - AuthMe/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins/AuthMe/GeoLite2-Country.mmdb (No such file or directory)
-[14:45:37] [Craft Scheduler Thread - 20 - Vault/INFO]: [Vault] No new version available
-[14:45:37] [Craft Scheduler Thread - 9 - BetterTeams/WARN]: §4There is a new version of better teams released update here: https://www.spigotmc.org/resources/better-teams.17129/
-[14:45:37] [Craft Scheduler Thread - 12 - IP/INFO]: [IP] Checking for updates
-[14:45:37] [Craft Scheduler Thread - 11 - IP/INFO]: [IP] Loaded all schematics!
-[14:45:37] [Craft Scheduler Thread - 13 - ReviveMe/INFO]: [ReviveMe] There is not a new update available.
-[14:45:37] [Server thread/INFO]: [Skript] Loading variables...
-[14:45:38] [Server thread/INFO]: [Skript] Loaded 59 variables in 0.0 seconds
-[14:45:38] [Craft Scheduler Thread - 12 - IP/INFO]: [IP] No new version found
-[14:45:38] [Craft Scheduler Thread - 17 - PluginManager/INFO]: PM | You are using the latest version of PluginManager.
-[14:45:38] [Craft Scheduler Thread - 7 - Essentials/WARN]: [Essentials] You're 5 EssentialsX dev build(s) out of date!
-[14:45:38] [Craft Scheduler Thread - 7 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
-[14:45:38] [Server thread/INFO]: [Skript] Line 11: (MedykPrzyjmowanieWezwania.sk)
-[14:45:38] [Server thread/INFO]:     Can't understand this expression: 'placeholder "reviveme_status::%{_target}%"'
-[14:45:38] [Server thread/INFO]:     Line: set {_status} to placeholder "reviveme_status::%{_target}%"
-[14:45:38] [Server thread/INFO]:  
-[14:45:38] [Server thread/INFO]: [Skript] Line 4: (MedykWzywanie.sk)
-[14:45:38] [Server thread/INFO]:     Can't understand this expression: 'placeholder "reviveme_status::%player%"'
-[14:45:38] [Server thread/INFO]:     Line: set {_status} to placeholder "reviveme_status::%player%"
-[14:45:38] [Server thread/INFO]:  
-[14:45:38] [Server thread/INFO]: [Skript] Loaded 12 scripts with a total of 14 structures in 0.41 seconds
-[14:45:38] [Server thread/INFO]: [Skript] Finished loading.
-[14:45:38] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 317 total sources
-[14:45:38] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
-[14:45:38] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
-[14:45:38] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
-[14:45:39] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
-[14:45:39] [Server thread/INFO]: [BeautyQuests] 5 quests loaded (0.05s)!
-[14:45:39] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 168
-[14:45:39] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.3.1, you're on: 5.2.1
-[14:45:39] [Server thread/INFO]: Done (58.939s)! For help, type "help"
-[14:45:39] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (witp)
-[14:45:39] [Server thread/INFO]: [FurnitureLib] No Models are found in world: witp
+[19:44:27] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3765)
+[19:44:27] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.21.2
+[19:44:27] [Server thread/INFO]: [HeadDatabase] §bUsing default §3"en_US.lang" §bcreated by §6Arcaniax
+[19:44:28] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
+[19:44:28] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
+[19:44:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.21.2]
+[19:44:28] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.4.0
+[19:44:29] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 84441 heads!
+[19:44:29] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
+[19:44:29] [Server thread/INFO]: Server version: v1_21_R3 - 1.21.4 - paper  1.21.4-222-9b1798d (MC: 1.21.4)
+[19:44:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.4.0]
+[19:44:29] [Server thread/INFO]: PlaceholderAPI hooked.
+[19:44:29] [Server thread/INFO]: Updated (EN) language file. Took 40ms
+[19:44:29] [Server thread/INFO]: Updated (DE) language file. Took 18ms
+[19:44:29] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.5.0.0.1242
+[19:44:29] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
+[19:44:29] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
+[19:44:30] [Server thread/INFO]: CombatLogX was loaded successfully.
+[19:44:30] [Server thread/INFO]: [CombatLogX] Enabling expansions...
+[19:44:30] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Action Bar v17.3'...
+[19:44:30] [Server thread/INFO]: [CombatLogX]  
+[19:44:30] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v17.7'...
+[19:44:30] [Server thread/INFO]: [CombatLogX]  
+[19:44:30] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Citizens Compatibility v17.15'...
+[19:44:30] [Server thread/WARN]: [CombatLogX] [Citizens Compatibility] A dependency was found but it was not enabled: Citizens
+[19:44:30] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Citizens Compatibility v17.15'...
+[19:44:30] [Server thread/INFO]: [CombatLogX]  
+[19:44:30] [Server thread/INFO]: [CombatLogX] Enabling expansion 'LuckPerms Compatibility v17.1'...
+[19:44:30] [Server thread/INFO]: [CombatLogX] [LuckPerms Compatibility] Successfully found a dependency: LuckPerms v5.4.0
+[19:44:30] [Server thread/INFO]: [CombatLogX]  
+[19:44:30] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v17.2'...
+[19:44:30] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.6
+[19:44:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: combatlogx [17.2]
+[19:44:30] [Server thread/INFO]: [CombatLogX]  
+[19:44:30] [Server thread/INFO]: [CombatLogX] Enabling expansion 'ProtectionStones Compatibility v17.2'...
+[19:44:30] [Server thread/INFO]: [CombatLogX] [ProtectionStones Compatibility] Successfully found a dependency: ProtectionStones v2.10.3
+[19:44:30] [Server thread/INFO]: [CombatLogX] [ProtectionStones Compatibility] Successfully found a dependency: WorldGuard v7.0.13-beta-2+5c4848b
+[19:44:30] [Server thread/INFO]: [CombatLogX]  
+[19:44:30] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v17.3'...
+[19:44:30] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.13-beta-2+5c4848b
+[19:44:30] [Server thread/INFO]: [CombatLogX]  
+[19:44:30] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Scoreboard v17.1'...
+[19:44:30] [Server thread/INFO]: [CombatLogX]  
+[19:44:30] [Server thread/INFO]: [CombatLogX] Successfully enabled 7 expansions.
+[19:44:30] [Server thread/INFO]: CombatLogX was enabled successfully.
+[19:44:30] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
+[19:44:30] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
+[19:44:30] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
+[19:44:30] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
+[19:44:30] [Server thread/INFO]: 
+ 
+[]=====[Enabling AdvancedBan]=====[]
+| Information:
+|   Name: AdvancedBan
+|   Developer: Leoko
+|   Version: 2.3.0
+|   Storage: HSQLDB (local)
+| Support:
+|   Github: https://github.com/DevLeoko/AdvancedBan/issues
+|   Discord: https://discord.gg/ycDG6rS
+| Twitter: @LeokoGar
+| Update:
+|   You have the newest version
+[]================================[]
+ 
+[19:44:30] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.5-b719*
+[19:44:31] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v2.5-b719" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [Rigby, fernferret, lithium3141, main--].
+[19:44:31] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_the_end
+[19:44:31] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
+[19:44:31] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world
+[19:44:31] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
+[19:44:31] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_nether
+[19:44:31] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
+[19:44:31] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
+[19:44:31] [Server thread/INFO]: Preparing spawn area: 0%
+[19:44:31] [Server thread/INFO]: Time elapsed: 152 ms
+[19:44:31] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
+[19:44:31] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
+[19:44:31] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is blocked.
+[19:44:31] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
+[19:44:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
+[19:44:31] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
+[19:44:31] [Server thread/INFO]: [Multiverse-Core] Version 2.5-b719 (API v20) Enabled - By Rigby, fernferret, lithium3141 and main--
+[19:44:31] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.16
+[19:44:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
+[19:44:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
+[19:44:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
+[19:44:31] [Server thread/INFO]: [VotifierPlus] Enabling VotifierPlus v1.4
+[19:44:31] [Server thread/ERROR]: [VotifierPlus] Error initializing vote receiver. Please verify that the configured IP address and port are not already in use.
+[19:44:31] [Server thread/WARN]: java.net.BindException: Die Adresse wird bereits verwendet
+[19:44:31] [Server thread/WARN]:     at java.base/sun.nio.ch.Net.bind0(Native Method)
+[19:44:31] [Server thread/WARN]:     at java.base/sun.nio.ch.Net.bind(Net.java:565)
+[19:44:31] [Server thread/WARN]:     at java.base/sun.nio.ch.Net.bind(Net.java:554)
+[19:44:31] [Server thread/WARN]:     at java.base/sun.nio.ch.NioSocketImpl.bind(NioSocketImpl.java:636)
+[19:44:31] [Server thread/WARN]:     at java.base/java.net.ServerSocket.bind(ServerSocket.java:391)
+[19:44:31] [Server thread/WARN]:     at java.base/java.net.ServerSocket.bind(ServerSocket.java:342)
+[19:44:31] [Server thread/WARN]:     at VotifierPlus-1.4.jar//com.vexsoftware.votifier.net.VoteReceiver.initialize(VoteReceiver.java:103)
+[19:44:31] [Server thread/WARN]:     at VotifierPlus-1.4.jar//com.vexsoftware.votifier.net.VoteReceiver.<init>(VoteReceiver.java:97)
+[19:44:31] [Server thread/WARN]:     at VotifierPlus-1.4.jar//com.vexsoftware.votifier.VotifierPlus$4.<init>(VotifierPlus.java:266)
+[19:44:31] [Server thread/WARN]:     at VotifierPlus-1.4.jar//com.vexsoftware.votifier.VotifierPlus.loadVoteReceiver(VotifierPlus.java:266)
+[19:44:31] [Server thread/WARN]:     at VotifierPlus-1.4.jar//com.vexsoftware.votifier.VotifierPlus.onEnable(VotifierPlus.java:189)
+[19:44:31] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
+[19:44:31] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
+[19:44:31] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
+[19:44:31] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
+[19:44:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
+[19:44:31] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606)
+[19:44:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
+[19:44:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
+[19:44:31] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
+[19:44:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
+[19:44:31] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
+[19:44:31] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
+[19:44:31] [Server thread/ERROR]: [VotifierPlus] Votifier did not initialize properly!
+[19:44:31] [Server thread/INFO]: [SilkSpawners_v2] Enabling SilkSpawners_v2 v2.3.2
+[19:44:31] [Server thread/INFO]: [SilkSpawners] Loading configuration...
+[19:44:31] [Server thread/INFO]: [SilkSpawners] Configuration is up to date
+[19:44:31] [Thread-16/INFO]: SilkSpawners »  [INFO]: Checking for updates
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Starting SilkSpawners v2.3.2
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Loading server platform
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Initialized plugin for bukkit server
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Loading Cross-Version support
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Loaded support for version 1.21.4
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Loading locale file
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Starting bStats integration
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Registering listeners
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Registering commands
+[19:44:31] [Server thread/INFO]: SilkSpawners »  [INFO]: Started SilkSpawners v2.3.2
+[19:44:31] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.6
+[19:44:31] [Server thread/INFO]: ------------- Jobs -------------
+[19:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.6]
+[19:44:31] [Server thread/INFO]: PlaceholderAPI hooked.
+[19:44:31] [Server thread/INFO]: Connected to database (MySQL)
+[19:44:32] [Thread-16/INFO]: SilkSpawners »  [INFO]: The plugin is up to date (Current release v2.3.2)
+[19:44:32] [Server thread/INFO]: Loaded 8 titles
+[19:44:32] [Server thread/INFO]: Loaded 2 restricted areas!
+[19:44:32] [Server thread/INFO]: Loaded 75 protected blocks timers
+[19:44:32] [Server thread/INFO]: Loaded 1538 custom item names
+[19:44:32] [Server thread/INFO]: Loaded 85 custom entity names
+[19:44:32] [Server thread/INFO]: Loaded 2 custom MythicMobs names
+[19:44:32] [Server thread/INFO]: Loaded 42 custom enchant names
+[19:44:32] [Server thread/INFO]: Loaded 46 custom enchant names
+[19:44:32] [Server thread/INFO]: Loaded 16 custom color names
+[19:44:32] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
+[19:44:32] [Server thread/INFO]: Loaded 4 shop items
+[19:44:32] [Server thread/INFO]: Update Miner jobs gui item section to use `Item` instead of `Id` and `Data` sections
+[19:44:32] [Server thread/INFO]: Update Gräber jobs gui item section to use `Item` instead of `Id` and `Data` sections
+[19:44:32] [Server thread/INFO]: Update Angler jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
+[19:44:32] [Server thread/INFO]: Update Jäger jobs gui item section to use `Item` instead of `Id` and `Data` sections
+[19:44:32] [Server thread/INFO]: Update Holzfäller jobs gui item section to use `Item` instead of `Id` and `Data` sections
+[19:44:32] [Server thread/INFO]: Update Zauberer jobs gui item section to use `Item` instead of `Id` and `Data` sections
+[19:44:32] [Server thread/INFO]: Loaded 8 jobs
+[19:44:32] [Server thread/INFO]: Loaded 0 boosted items
+[19:44:32] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
+[19:44:32] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
+[19:44:32] [Server thread/INFO]: Duplicate in database for (Erik_0302) -> (575eceea-28d2-328d-8a8e-47bd548da3ee) <-> (887454a3-d652-4276-9053-33123d493e0e)
+[19:44:32] [Server thread/INFO]: Duplicate in database for (der_Dude07) -> (54a60992-2499-35bd-9265-871cba692b7e) <-> (fc2275a5-7f4d-4ba6-8965-7a0ffd559ac1)
+[19:44:32] [Server thread/INFO]: Duplicate in database for (eSenZe420) -> (2292048e-831e-4339-9879-07ac78f96ba8) <-> (7086d253-ed9a-3eb9-9795-9b8135581867)
+[19:44:32] [Server thread/INFO]: Preloaded 20 players data in 0.04
+[19:44:32] [Server thread/INFO]: Registering listeners...
+[19:44:32] [Server thread/INFO]: Listeners registered successfully
+[19:44:32] [Server thread/INFO]: Plugin has been enabled successfully.
+[19:44:32] [Server thread/INFO]: ------------------------------------
+[19:44:32] [Server thread/INFO]: [RandomTeleport] [RandomTeleport] Enabling RandomTeleport v7.9.2
+[19:44:32] [Server thread/INFO]: [RandomTeleport] [RandomTeleport] [RandomTeleport] using [WorldGuard] for world
+[19:44:32] [Server thread/INFO]: [RandomTeleport] [RandomTeleport] [RandomTeleport] using [WorldGuard, PlotSquared] for plotworld
+[19:44:32] [Server thread/INFO]: [RandomTeleport] [RandomTeleport] [RandomTeleport] using [WorldGuard, Factions] for pvp
+[19:44:32] [Server thread/INFO]: [RandomTeleport] [RandomTeleport] RandomTeleport version 7.9.2 is Enabled
+[19:44:32] [Server thread/INFO]: [CommandRegions] Enabling CommandRegions v1.0*
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] 
+§6Command Regions§7 by Astero§6 is loading up...
+
+[19:44:32] [Server thread/WARN]: Nag author(s): '[Astero]' of 'CommandRegions v1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] §6→§7 YAML files are loaded up!
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] §6→§7 Caching files is done!
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] §6→§7 Event Listeners are loaded up!
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] §6→§7 Commands are loaded up!
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] 
+§6              >--------------------------<
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] §6              A total of §e1§6 Regions have
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] §6                    been loaded up.
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] §6              >--------------------------< 
+
+[19:44:32] [Server thread/INFO]: [CommandRegions] [STDOUT] §6Command Regions§7 by Astero§6 has been sucessfully loaded up!
+
+[19:44:32] [Server thread/INFO]: [MineXFarmRegen] Enabling MineXFarmRegen v6.0.4
+[19:44:32] [Server thread/INFO]: ****************************
+[19:44:32] [Server thread/INFO]:       MINE X FARM REGEN     
+[19:44:32] [Server thread/INFO]:  Regenerate Blocks in Style 
+[19:44:32] [Server thread/INFO]:                             
+[19:44:32] [Server thread/INFO]:         V:6.0.4        
+[19:44:32] [Server thread/INFO]:        Made By HmmboYt      
+[19:44:32] [Server thread/INFO]:  Join Our Discord For Support  
+[19:44:32] [Server thread/INFO]: ****************************
+[19:44:32] [Server thread/INFO]: Thanks for using our plugin 48291 - %%__BUILTBYBIT__%%5899751
+[19:44:32] [Server thread/INFO]: [MineXFarmRegen] Vault Loaded
+[19:44:32] [Server thread/WARN]: [MineXFarmRegen] "MineXFarmRegen v6.0.4" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void revxrsal.commands.bukkit.brigadier.PaperCommodore$CommandRegisterListener.onCommandRegistered(com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent<?>)", but the event is Deprecated. "This event has been superseded by the Commands API and will be removed in a future release. Listen to LifecycleEvents.COMMANDS instead."; please notify the authors [].
+[19:44:33] [Server thread/INFO]: [Tebex] Enabling Tebex v2.1.0
+[19:44:33] [Server thread/INFO]: [Tebex] Welcome to Tebex! It seems like this is a new setup.
+[19:44:33] [Server thread/INFO]: [Tebex] To get started, please use the 'tebex secret <key>' command in the console.
+[19:44:33] [Server thread/INFO]: [BottledExp] Enabling BottledExp v3.2.4.0
+[19:44:33] [Server thread/INFO]: [BottledExp] Version 3.2.4.0 has been enabled
+[19:44:33] [Server thread/INFO]: [BottledExp] Using LuckPerms via Vault.
+[19:44:33] [Server thread/INFO]: [Elevator] Enabling Elevator v3.13.0
+[19:44:33] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
+[19:44:33] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
+[19:44:34] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: teleports already exists for another menu!
+Skipping menu: teleports
+[19:44:34] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: home-upgrades already exists for another menu!
+Skipping menu: home-upgrades
+[19:44:34] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: enchantsmain already exists for another menu!
+Skipping menu: enchantsmain
+[19:44:34] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: enchants already exists for another menu!
+Skipping menu: enchants
+[19:44:34] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: enchantsut already exists for another menu!
+Skipping menu: enchantsut
+[19:44:34] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.grass.right_click_requirement.requirements.item does not specify a valid Material name!
+[19:44:34] [Server thread/INFO]: [DeluxeMenus] 44 GUI menus loaded!
+[19:44:34] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
+[19:44:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
+[19:44:34] [Server thread/INFO]: [BlockCommand] Enabling BlockCommand v1.5.3*
+[19:44:34] [Server thread/INFO]: [BlockCommand] [STDOUT] [BlockCommand] version 1.5.3 is enabled
+[19:44:34] [Server thread/WARN]: Nag author(s): '[Black_ixx]' of 'BlockCommand v1.5.3' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
+[19:44:34] [Server thread/INFO]: [AntiDeaathMessages] Enabling AntiDeaathMessages v1.0*
+[19:44:34] [Server thread/INFO]: [AntiDeaathMessages] [STDOUT]  
+[19:44:34] [Server thread/WARN]: Nag author(s): '[MajkGamesCZ]' of 'AntiDeaathMessages v1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
+[19:44:34] [Server thread/INFO]: [AntiDeaathMessages] [STDOUT] Plugin has been Enabled!
+[19:44:34] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.5.3
+[19:44:34] [Server thread/INFO]: [sleep-most] Hooked to PlaceholderAPI
+[19:44:34] [Server thread/INFO]: [sleep-most] Hooked to Essentials
+[19:44:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sleepmost [5.5.3]
+[19:44:34] [Server thread/INFO]: [AnvilColor] Enabling AnvilColor v1.1
+[19:44:34] [Server thread/INFO]: [LastLoginAPI] Enabling LastLoginAPI v1.7.4
+[19:44:34] [Server thread/INFO]: [LastLoginAPI] Initializing LastLoginAPI v1.7.4
+[19:44:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lastloginapi [1.7.4]
+[19:44:35] [Server thread/INFO]: [LastLoginAPI] Hooked into PlaceholderAPI
+[19:44:35] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI v1.7.4 enabled
+[19:44:35] [Server thread/INFO]: [OldCombatMechanics] Enabling OldCombatMechanics v2.0.4
+[19:44:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ocm [2.0.4]
+[19:44:35] [Server thread/WARN]: [OldCombatMechanics] Configured world world not found, skipping (might be loaded later?)...
+[19:44:35] [Server thread/WARN]: [OldCombatMechanics] Configured world world_nether not found, skipping (might be loaded later?)...
+[19:44:35] [Server thread/WARN]: [OldCombatMechanics] Configured world world_the_end not found, skipping (might be loaded later?)...
+[19:44:35] [Server thread/INFO]: [OldCombatMechanics] OldCombatMechanics v2.0.4 has been enabled
+[19:44:35] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.18.0-SNAPSHOT
+[19:44:35] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
+[19:44:35] [Server thread/INFO]: [VoidSpawn] v1.18.0-SNAPSHOT by EnderCrest enabled
+[19:44:35] [Server thread/INFO]: [PlayerProfiles] Enabling PlayerProfiles v6.1.2
+[19:44:35] [Server thread/INFO]: [PlayerProfiles] Found WorldGuard! Using WorldGuard API version 7
+[19:44:35] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.6-T20250103114036
+[19:44:35] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
+[19:44:35] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
+[19:44:35] [Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
+[19:44:35] [Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
+[19:44:35] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
+[19:44:35] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
+[19:44:35] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
+[19:44:35] [Server thread/WARN]: [Minepacks] Your server is running behind a BungeeCord server. If you are using the plugin on more than one server with a shared database, please make sure to also enable the 'UseBungeeCord' config option.
+[19:44:35] [Server thread/WARN]: [Minepacks] Your server is running behind a BungeeCord server. If you are using the plugin on more than one server with a shared database, please make sure to also enable the 'UseBungeeCord' config option.
+[19:44:35] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
+[19:44:35] [Server thread/INFO]: [Minepacks] Loading item translations ...
+[19:44:35] [Server thread/INFO]: [Minepacks] Finished loading item translations for 826 items.
+[19:44:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.31.6-T20250103114036]
+[19:44:35] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
+[19:44:35] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
+[19:44:35] [Server thread/INFO]: [DoorsReloaded] Enabling DoorsReloaded v1.3.1
+[19:44:35] [Server thread/INFO]: [DeluxeAuctions] Enabling DeluxeAuctions v2.8
+[19:44:36] [Server thread/INFO]: [DeluxeAuctions] (DEBUG) MySQL is connecting...
+[19:44:36] [Server thread/ERROR]: [STDERR] [com.mysql.jdbc.Driver] Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
+[19:44:36] [Server thread/INFO]: [DeluxeAuctions] (DEBUG) MySQL is successfully connected!
+[19:44:36] [Server thread/INFO]: [DeluxeAuctions] (DEBUG) MySQL is connected!
+[19:44:36] [Server thread/INFO]: [DeluxeAuctions] (INFO) Database successfully loaded! Took 5ms to complete!
+[19:44:36] [Server thread/INFO]: [DeluxeAuctions] (INFO) Enabled HeadDatabase support!
+[19:44:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auction [1.0]
+[19:44:36] [Server thread/INFO]: [DeluxeAuctions] (INFO) Enabled PlaceholderAPI support!
+[19:44:36] [Server thread/INFO]: [DeluxeAuctions] (INFO) Enabled AdvancedBan support!
+[19:44:36] [Server thread/INFO]: [DeluxeAuctions] (INFO) Your server is running on 1.21.
+[19:44:36] [Server thread/INFO]: [DeluxeAuctions] (INFO) Plugin is enabled! Plugin Version: v2.8
+[19:44:36] [Server thread/INFO]: [Server Tutorial Plus] Enabling ServerTutorialPlus v1.25.2
+[19:44:36] [Server thread/INFO]: [Server Tutorial Plus] Enabling server tutorial...
+[19:44:36] [Server thread/INFO]: [Server Tutorial Plus] Using FlatFile as datasource...
+[19:44:36] [Server thread/INFO]: [Server Tutorial Plus] Using protocol: nl.martenm.servertutorialplus.reflection.v1_14.Protocol_1_14_V1
+[19:44:36] [Server thread/INFO]: [Server Tutorial Plus] PlaceholderAPI has been found!
+[19:44:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ServerTutorialPlus [1.25.2]
+[19:44:36] [Server thread/INFO]: [Server Tutorial Plus] Servertutorial enabled successfully!
+[19:44:36] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1
+[19:44:36] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
+[19:44:36] [Server thread/INFO]: [CommandBlocker] Enabling CommandBlocker v1.6
+[19:44:36] [Server thread/INFO]: [ArmorEffects] Enabling ArmorEffects v1.4
+[19:44:36] [Server thread/INFO]: [ArmorEffects] Registered 39 Effects
+[19:44:36] [Server thread/INFO]: [PlayerSkillsReborn] Enabling PlayerSkillsReborn v1.7.12*
+[19:44:36] [Server thread/INFO]: [PlayerSkillsReborn] Citizens not found. NPCs will not be available.
+[19:44:36] [Server thread/INFO]: [PlayerSkillsReborn] HolographicDisplays not found. Holograms will not be available.
+[19:44:36] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
+[19:44:36] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
+[19:44:36] [Server thread/INFO]: [ClearLag] Loading modules...
+[19:44:36] [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)
+[19:44:36] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
+[19:44:36] [Server thread/INFO]: [ClearLag] Modules have been loaded!
+[19:44:36] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
+[19:44:36] [Thread-19/WARN]: [ClearLag] Clearlag failed to check for updates - bukkit may be down
+[19:44:36] [Thread-19/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
+[19:44:36] [Thread-19/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.Util.getBukkitVersion(Util.java:105)
+[19:44:36] [Thread-19/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.updateAvailable(BukkitUpdater.java:32)
+[19:44:36] [Thread-19/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.run(BukkitUpdater.java:82)
+[19:44:36] [Thread-19/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
+[19:44:36] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v3.7.2
+[19:44:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [3.7.2]
+[19:44:36] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
+[19:44:37] [Server thread/INFO]: [RHSignItem] Enabling RHSignItem v1.21_R7
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [Server thread/INFO]:    __          __ _              _____ _                 
+[19:44:37] [Server thread/INFO]:   /__\  /\  /\/ _(_) __ _ _ __   \_   \ |_ ___ _ __ ___  
+[19:44:37] [Server thread/INFO]:  / \// / /_/ /\ \| |/ _` | '_ \   / /\/ __/ _ \ '_ ` _ \ 
+[19:44:37] [Server thread/INFO]: / _  \/ __  / _\ \ | (_| | | | /\/ /_ | | | __/ | | | | |
+[19:44:37] [Server thread/INFO]: \/ \_/\/ /_/  \__/_|\__, |_| |_\____/  \__\___|_| |_| |_|
+[19:44:37] [Server thread/INFO]:                     |___/                                
+[19:44:37] [Server thread/INFO]:                                                 (1.21_R7)
+[19:44:37] [Server thread/INFO]: «*» Adds a personal item signature ☄️ Customizable!
+[19:44:37] [Server thread/INFO]: «*» Made with 💕 by X0R3
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [Server thread/INFO]: [Themis] Enabling Themis v0.17.5
+[19:44:37] [Server thread/WARN]: [Themis] Couldn't find Floodgate which is required for Bedrock support
+[19:44:37] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.3
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [Server thread/INFO]: __________________________________________________________
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [Server thread/INFO]:                        TradeSystem [2.6.3]
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [Server thread/INFO]: Status:
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [Server thread/INFO]: MC-Version: Paper (1.21.4)
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [pool-58-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
+[19:44:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
+[19:44:37] [Server thread/INFO]:   > Loading sounds
+[19:44:37] [Server thread/INFO]:   > Loading blacklist
+[19:44:37] [Server thread/INFO]:     ...got 3 blocked item(s)
+[19:44:37] [Server thread/INFO]:   > Loading layouts
+[19:44:37] [Server thread/INFO]:     ...got 5 layout(s)
+[19:44:37] [Server thread/INFO]:   > Queuing database initializing task
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [Server thread/INFO]: Finished (537ms)
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [Server thread/INFO]: __________________________________________________________
+[19:44:37] [Server thread/INFO]:  
+[19:44:37] [Server thread/INFO]: [DisableJoinMessage] Enabling DisableJoinMessage v1.0*
+[19:44:37] [Server thread/INFO]: [DisableJoinMessage] [STDOUT] §c===================================
+[19:44:37] [Server thread/WARN]: Nag author(s): '[MinecraftDev96]' of 'DisableJoinMessage v1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
+[19:44:37] [Server thread/INFO]: [DisableJoinMessage] [STDOUT] §c===================================
+[19:44:37] [Server thread/INFO]: [DisableJoinMessage] [STDOUT] §aCheck out my other Plugins!
+[19:44:37] [Server thread/INFO]: [DisableJoinMessage] [STDOUT] §aI also sell a BedWars §aPlugin!
+[19:44:37] [Server thread/INFO]: [DisableJoinMessage] [STDOUT] §c===================================
+[19:44:37] [Server thread/INFO]: [DisableJoinMessage] [STDOUT] §c===================================
+[19:44:37] [Server thread/INFO]: [ClansLite] Enabling ClansLite v1.5.4
+[19:44:37] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Folia Async Scheduler Thread #3/INFO]: [TradeSystem] Database was started successfully.
+[19:44:38] [Server thread/INFO]: Clan » Adventure Library hooked successfully!
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: Clan » All clans loaded from clans.yml successfully!
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: Clan » All users loaded from usermap.yml successfully!
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: Clan » Global GUI system enabled!
+[19:44:38] [Server thread/INFO]: Clan » Chest protection system enabled!
+[19:44:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clansLite [1.5.4]
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: Clan » PlaceholderAPI found!
+[19:44:38] [Server thread/INFO]: Clan » External placeholders enabled!
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: Clan » FloodgateApi not found!
+[19:44:38] [Server thread/INFO]: Clan » Bedrock support may not function!
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: Clan » Plugin by: Loving11ish
+[19:44:38] [Server thread/INFO]: Clan » has been loaded successfully
+[19:44:38] [Server thread/INFO]: Clan » Plugin Version: 1.5.4
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: Clan » -------------------------------------------
+[19:44:38] [Server thread/INFO]: [PlayTime] Enabling PlayTime v3.3*
+[19:44:38] [Server thread/INFO]: [PlayTime] PlaceholderAPI was found! Registering Placeholders.
+[19:44:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playtime [3.3]
+[19:44:38] [Server thread/INFO]: [TeamChat] Enabling TeamChat v2.0
+[19:44:38] [Server thread/INFO]: [SellGUI] Enabling SellGUI v1.6.1
+[19:44:38] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12
+[19:44:38] [Server thread/INFO]: [BlockParticles] Loading the config.yml
+[19:44:38] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
+[19:44:38] [Server thread/INFO]: [BlockParticles] Loading the data.yml
+[19:44:38] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
+[19:44:38] [Server thread/INFO]: [Images] Enabling Images v2.5.3
+[19:44:38] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
+[19:44:38] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
+[19:44:38] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
+[19:44:38] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18.3
+[19:44:38] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
+[19:44:38] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Starting...
+[19:44:38] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Start completed.
+[19:44:38] [Server thread/WARN]: [VotingPlugin] RewardInject Validator: realrewards, Directly Defined: false Path: Money : Money can not be 0
+[19:44:38] [Server thread/WARN]: [VotingPlugin] RewardInject Validator: realrewards, Directly Defined: false Path: Items : No amount on item: Diamond
+[19:44:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
+[19:44:38] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
+[19:44:39] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
+[19:44:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Konsolenausgabeweiterleitung aktiv TC:📁╔-𝙈𝘾-𝙆𝙤𝙣𝙨𝙤𝙡𝙚(1346499012009918644)
+[19:44:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Speichern von verknüpften Accounts in 3ms
+[19:44:39] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
+[19:44:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere Essentials Verbindung
+[19:44:39] [Server thread/WARN]: [VotingPlugin] RewardInject Validator: realrewards, Directly Defined: false Path: Money : Money can not be 0
+[19:44:39] [Server thread/WARN]: [VotingPlugin] RewardInject Validator: realrewards, Directly Defined: false Path: Items : No amount on item: Diamond
+[19:44:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere LuckPerms Verbindung
+[19:44:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere PlaceholderAPI Verbindung
+[19:44:39] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18.3
+[19:44:39] [Server thread/INFO]: [WDLCompanion] Enabling WDLCompanion v1.2.0*
+[19:44:39] [Server thread/INFO]: [AdvancedBanAutoBan] Enabling AdvancedBanAutoBan v1.0.3
+[19:44:39] [Server thread/INFO]: [AdvancedBanAutoBan] Plugin Loaded
+[19:44:39] [Server thread/INFO]: [AdvancedBanAutoBan] This plugin is in early alpha! Please report any bugs!
+[19:44:39] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
+[19:44:39] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
+[19:44:39] [Server thread/INFO]: [DeluxeTags] 20 tags loaded
+[19:44:39] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
+[19:44:39] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
+[19:44:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
+[19:44:39] [Server thread/INFO]: [StatisticsEditor] Enabling StatisticsEditor v1.0*
+[19:44:39] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.3-SNAPSHOT (build 429)
+[19:44:39] [Server thread/INFO]: [ChestShop] Found locales hu, es_mx, sv, en, ro, zh_tw, fi, tr, af, ca, da, it, ru, nl, cs, vi, pt_br, he, zh, es, ko, no, fr, el, ja, uk, de, pl, ar, sr
+[19:44:40] [Server thread/INFO]: [ChestShop] Using EssentialsX Economy as the Economy provider now.
+[19:44:40] [Server thread/INFO]: [ChestShop] Vault loaded!
+[19:44:40] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
+[19:44:40] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
+[19:44:40] [Server thread/INFO]: [GrapplingHook] Enabling GrapplingHook v1.6.2
+[19:44:40] [Server thread/INFO]: [GrapplingHook] [STDOUT] [GrapplingHook] Loaded 6 recipes.
+[19:44:40] [Server thread/WARN]: Nag author(s): '[SnowGears]' of 'GrapplingHook v1.6.2' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
+[19:44:40] [Server thread/INFO]: [TAB] Enabling TAB v5.0.7
+[19:44:40] [Server thread/INFO]: [TAB] Loaded NMS hook in 35ms
+[19:44:40] [Server thread/INFO]: [TAB] Enabled in 236ms
+[19:44:40] [Server thread/INFO]: [ChorusManager] Enabling ChorusManager v20.02.01*
+[19:44:40] [Server thread/INFO]: [ChorusManager] Plugin Enabled
+[19:44:40] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v2.3.3
+[19:44:40] [Server thread/INFO]: [AdvancedPortals] Loading Advanced Portals Core v2.3.3 for MC: 1.21.4
+[19:44:41] [Server thread/INFO]: [AdvancedPortals] Advanced portals have been enabled!
+[19:44:41] [Server thread/INFO]: [Shop] Enabling Shop v1.5.3
+[19:44:41] [Server thread/INFO]: [Shop] Registered amount pattern: 1-64
+[19:44:41] [Server thread/INFO]: [Shop] Registered shop: Weaponsmith
+[19:44:41] [Server thread/INFO]: [Shop] Registered shop: Miner
+[19:44:41] [Server thread/INFO]: [Shop] Registered shop: sblacksmith
+[19:44:41] [Server thread/INFO]: [Shop] Registered shop: Farmer
+[19:44:41] [Server thread/INFO]: [Shop] Registered shop: Lumberjack
+[19:44:41] [Server thread/INFO]: [Shop] Registered shop: Adventurer
+[19:44:41] [Server thread/INFO]: [Shop] Registered shop: Builder
+[19:44:41] [Server thread/INFO]: [Shop] Registered shop: fishersell
+[19:44:41] [Server thread/INFO]: [Shop] Registered shop: fisherrods
+[19:44:42] [Server thread/INFO]: [spark] Starting background profiler...
+[19:44:42] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
+[19:44:42] [Server thread/INFO]: Done preparing level "Survival" (18.796s)
+[19:44:42] [Server thread/INFO]: Running delayed init tasks
+[19:44:42] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
+[19:44:42] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
+[19:44:42] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] Hooked into { Multiverse-Core, WorldGuard, HeadDatabase, PlaceholderAPI, ProtocolLib, Vault }
+[19:44:42] [Craft Scheduler Thread - 9 - Essentials/INFO]: [Essentials] Fetching version information...
+[19:44:42] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core]  
+[19:44:42] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
+[19:44:42] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
+[19:44:42] [Server thread/WARN]: [ItemJoin_WARN] {ItemDesigner} There are no items detected in the items.yml.
+[19:44:42] [Server thread/WARN]: [ItemJoin_WARN] {ItemDesigner} Try adding an item to the items section in the items.yml.
+[19:44:42] [Craft Scheduler Thread - 7 - ClearLag/INFO]: [ClearLag] 0 Logs have been removed!
+[19:44:42] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value Dungeon1! It's neither a valid name nor UUID.
+[19:44:42] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value Dungeon1! It's neither a valid name nor UUID.
+[19:44:42] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loaded 10 holograms!
+[19:44:42] [Craft Scheduler Thread - 14 - DeluxeAuctions/INFO]: [DeluxeAuctions] (INFO) 0 auctions loaded in 0 ms!
+[19:44:42] [Craft Scheduler Thread - 8 - SellGUI/INFO]: [SellGUI] Plugin is up to date
+[19:44:42] [Craft Scheduler Thread - 15 - ClansLite/INFO]: Clan » *-------------------------------------------*
+[19:44:42] [Craft Scheduler Thread - 15 - ClansLite/INFO]: Clan » Eine neue Version ist verfügbar!
+[19:44:42] [Craft Scheduler Thread - 15 - ClansLite/INFO]: Clan » *-------------------------------------------*
+[19:44:42] [Craft Scheduler Thread - 5 - Vault/INFO]: [Vault] Checking for Updates ... 
+[19:44:42] [Server thread/INFO]: [ItemJoin] 0/0 Custom item(s) loaded!
+[19:44:42] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
+[19:44:42] [Craft Scheduler Thread - 19 - ItemJoin/INFO]: [ItemJoin] Checking for updates...
+[19:44:42] [Craft Scheduler Thread - 4 - SirBlobmanCore/INFO]: [SirBlobman Core]  
+[19:44:42] [Craft Scheduler Thread - 4 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] A possible update was found for plugin 'SirBlobmanCore'.
+[19:44:42] [Craft Scheduler Thread - 4 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Current Version: 2.4.1-Dev
+[19:44:42] [Craft Scheduler Thread - 4 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] New Version: 2.9.6.454
+[19:44:42] [Craft Scheduler Thread - 4 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/83189/
+[19:44:42] [Server thread/INFO]: WorldGuard detected.
+[19:44:42] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
+[19:44:42] [Craft Scheduler Thread - 7 - PlayTime/INFO]: [PlayTime] Latest version is not installed! - v3.6
+[19:44:42] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
+[19:44:42] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core]  
+[19:44:42] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
+[19:44:42] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.6.431
+[19:44:42] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.6.454
+[19:44:42] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
+[19:44:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
+[19:44:42] [Craft Scheduler Thread - 5 - Vault/INFO]: [Vault] No new version available
+[19:44:42] [Craft Scheduler Thread - 9 - Essentials/WARN]: [Essentials] Es steht eine neue Version von EssentialsX zum download: 2.21.0.
+[19:44:42] [Craft Scheduler Thread - 9 - Essentials/WARN]: [Essentials] Hier herunterladen: https://essentialsx.net/downloads.html?branch=stable
+[19:44:42] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
+[19:44:42] [Server thread/INFO]: [Jump Pads] Please use CombatLogX version 10 or higher.
+[19:44:42] [Server thread/INFO]: Done (55.666s)! For help, type "help"
+[19:44:43] [Craft Scheduler Thread - 19 - ItemJoin/INFO]: [ItemJoin] You are up to date!
+[19:44:43] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
+[19:44:44] [Craft Scheduler Thread - 8 - Images/INFO]: [Images] Loaded 0 images...
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.7.0]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: mysqleconomybank [1.0.1]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
+[19:44:45] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 29 scripts loaded!
+[19:44:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.0]
+[19:44:45] [Server thread/INFO]: 13 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
+[19:44:47] [Craft Scheduler Thread - 11 - ClansLite/INFO]: Clan » Started top clan points cache update task.
+[19:44:47] [Craft Scheduler Thread - 11 - ClansLite/INFO]: Clan » Started top player points cache update task.
+[19:44:47] [Craft Scheduler Thread - 6 - ClansLite/INFO]: Clan » Auto save task has started.
+[19:44:47] [Craft Scheduler Thread - 7 - ClansLite/INFO]: Clan » Auto invite wipe task has started.
+[19:44:47] [Craft Scheduler Thread - 19 - VotifierPlus/INFO]: [VotifierPlus] VotifierPlus is up to date! Version: 1.4