Paste #135403: Unnamed Server Log Paste

Date: 2025/08/06 07:17:06 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[10:14:54] [ServerMain/INFO]: [bootstrap] Running Java 21 (Java HotSpot(TM) 64-Bit Server VM 21.0.7+8-LTS-245; Oracle Corporation null) on Windows 11 10.0 (amd64)
[10:14:54] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) for Minecraft 1.21.4
[10:14:54] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[10:14:55] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins\Citizens-2.0.37-b3763.jar'...
[10:14:56] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins\Citizens-2.0.37-b3763.jar' in 954ms.
[10:14:57] [ServerMain/INFO]: [PluginInitializerManager] Initialized 65 plugins
[10:14:57] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (4):
 - EconomyShopGUI (6.14.4), RoseStacker (1.5.35), Typewriter (0.8.0), nightcore (2.7.12.4)
[10:14:57] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (61):
 - AuraSkills (2.3.5), BetterRTP (3.6.13), CMILib (1.5.6.2), Citizens (2.0.37-SNAPSHOT (build 3763)), CommandPanels (3.23.3), ConditionalEvents (4.65.1), DeathMessages (1.4.20), DecentHolograms (2.9.6), DeluxeTags (1.8.2-Release), DiscordSRV (1.30.0), EasyCommandBlocker (1.14.3), EconomyBridge (1.2.1), Essentials (2.21.2), EssentialsSpawn (2.21.2), ExcellentCrates (6.3.3), ExcellentEnchants (4.3.3), FastAsyncWorldEdit (2.13.2-SNAPSHOT-1149;107cd07), Geyser-Spigot (2.8.2-SNAPSHOT), GravesX (4.9.8.2), HeadDatabase (4.21.2), Infiniteannouncements (2.5.0), ItemsAdder (4.0.12), Jobs (5.2.6.1), LevelledMobs (4.3.2.1 b125), LibsDisguises (11.0.5), LuckPerms (5.4.158), LuxDialogues (1.2.1), LuxDialoguesTWAddon (1.2.1), MagicCosmetics (3.1.1), MineXFarmRegen (6.1.2), MiniMOTD (2.1.5), ModelEngine (R4.0.8), Multiverse-Core (4.3.13), MythicMobs (5.9.5-f13ab4a1), PlaceholderAPI (2.11.6), PlayerAuctions (1.31.1), PlayerKits2 (1.18.3), PlayerProfiles (8.0.3), ProtectionStones (2.10.5), ProtocolLib (5.4.0-SNAPSHOT-744), Quests (3.15.2-b216e2b), ResourcePackBroadcast (1.0.5), Shopkeepers (2.23.10), SimplePets (5.0-BUILD-282), TAB (5.2.5), TAB-Additions (2.1.3), Tebex (2.2.1), TerraformGenerator (21.0.0), TradeSystem (2.6.3), UltraRepair (4.2.5), Vault (1.7.3-b131), ViaBackwards (5.4.2), ViaVersion (5.4.2), WildTools (2025.1), WorldGuard (7.0.13+82fdc65), ajLeaderboards (2.10.1), ajParkour (2.12.10), eGlow (3.4.3), floodgate (2.2.4-SNAPSHOT (b116-0e3163c)), packetevents (2.9.4), sleep-most (5.5.3)
[10:15:00] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:15:01] [ServerMain/INFO]: Loaded 1370 recipes
[10:15:01] [ServerMain/INFO]: Loaded 1481 advancements
[10:15:01] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[10:15:01] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 95.0ms
[10:15:01] [Server thread/INFO]: Starting minecraft server version 1.21.4
[10:15:01] [Server thread/INFO]: Loading properties
[10:15:01] [Server thread/INFO]: This server is running Paper version 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[10:15:01] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[10:15:01] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:15:01] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:15:01] [Server thread/INFO]: [MoonriseCommon] Paper is using 8 worker threads, 1 I/O threads
[10:15:01] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[10:15:02] [Server thread/INFO]: Default game type: SURVIVAL
[10:15:02] [Server thread/INFO]: Generating keypair
[10:15:02] [Server thread/INFO]: Starting Minecraft server on *:25565
[10:15:02] [Server thread/INFO]: Using default channel type
[10:15:02] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[10:15:02] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\ch\ethz\globis\phtree\phtree\2.8.1\phtree-2.8.1.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-platform-bukkit\4.3.3\adventure-platform-bukkit-4.3.3.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-platform-api\4.3.3\adventure-platform-api-4.3.3.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.3\adventure-text-serializer-bungeecord-4.3.3.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-platform-facet\4.3.3\adventure-platform-facet-4.3.3.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-platform-viaversion\4.3.3\adventure-platform-viaversion-4.3.3.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[10:15:02] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-api\4.14.0\adventure-api-4.14.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-key\4.14.0\adventure-key-4.14.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-gson\4.14.0\adventure-text-serializer-gson-4.14.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-json\4.14.0\adventure-text-serializer-json-4.14.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.0\adventure-text-serializer-bungeecord-4.3.0.jar
[10:15:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\libraries\net\kyori\adventure-text-serializer-legacy\4.13.0\adventure-text-serializer-legacy-4.13.0.jar
[10:15:04] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.4.2
[10:15:04] [Server thread/INFO]: [ViaVersion] ViaVersion 5.4.2 is now loaded. Registering protocol transformers and injecting...
[10:15:04] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[10:15:04] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[10:15:04] [Server thread/INFO]: [ViaBackwards] Loading translations...
[10:15:04] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[10:15:05] [Server thread/INFO]: [Typewriter] Loading server plugin Typewriter v0.8.0
[10:15:05] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.158
[10:15:05] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[10:15:05] [Server thread/INFO]: [floodgate] Took 220ms to boot Floodgate
[10:15:05] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[10:15:05] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-744
[10:15:05] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.4.2
[10:15:05] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.8.2-SNAPSHOT
[10:15:06] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[10:15:06] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[10:15:06] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.2-SNAPSHOT-1149;107cd07
[10:15:06] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@5826ec0e]
[10:15:06] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[10:15:06] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.9.4
[10:15:07] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[10:15:07] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.13
[10:15:07] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v11.0.5
[10:15:07] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3763)
[10:15:07] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.9.5-f13ab4a1
[10:15:07] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[10:15:07] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[10:15:07] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.2
[10:15:07] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.8
[10:15:07] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.12.4
[10:15:07] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.21.2
[10:15:07] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.30.0
[10:15:07] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.5
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.12
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library FastNbt-jar (remapped)...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library httpmime...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library httpclient
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library httpcore
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library commons-logging
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library commons-codec
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library commons-math3...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library speedy-math...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library jansi...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library fastjson...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library fastjson2-extension
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library fastjson2
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library json-path...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library json-smart
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library accessors-smart
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library asm
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library slf4j-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library armor-equip-event...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library glowingentities...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library reflection-remapper
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-minimessage...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library option
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library jspecify
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library gson
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library auto-service-annotations
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-commons
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson-legacy-impl...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library option
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library jspecify
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library gson
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library auto-service-annotations
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-commons
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json-legacy-impl
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-nbt
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-bukkit...
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-bungeecord
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-legacy
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-nbt
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library option
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library jspecify
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library auto-service-annotations
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-commons
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson-legacy-impl
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json-legacy-impl
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-facet
[10:15:07] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-viaversion
[10:15:07] [Server thread/INFO]: [LuxDialogues] Loading server plugin LuxDialogues v1.2.1
[10:15:07] [Server thread/INFO]: [SimplePets] Loading server plugin SimplePets v5.0-BUILD-282
[10:15:07] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.6.2
[10:15:07] [Server thread/INFO]: [EconomyBridge] Loading server plugin EconomyBridge v1.2.1
[10:15:07] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.35
[10:15:07] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.6
[10:15:07] [Server thread/INFO]: [WildTools] Loading server plugin WildTools v2025.1
[10:15:07] [Server thread/INFO]: [UltraRepair] Loading server plugin UltraRepair v4.2.5
[10:15:07] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.3
[10:15:07] [Server thread/INFO]: [TerraformGenerator] Loading server plugin TerraformGenerator v21.0.0
[10:15:07] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.2.1
[10:15:07] [Server thread/INFO]: [TAB-Additions] Loading server plugin TAB-Additions v2.1.3
[10:15:07] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.5.3
[10:15:07] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.10
[10:15:07] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (228 ms).
[10:15:07] [Server thread/INFO]: [Shopkeepers] Compatibility provider loaded: 1_21_R4
[10:15:07] [Server thread/INFO]: [Shopkeepers] Loading config.
[10:15:07] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[10:15:07] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[10:15:07] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[10:15:07] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[10:15:07] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[10:15:07] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[10:15:07] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[10:15:07] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[10:15:07] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[10:15:07] [Server thread/INFO]: [ResourcePackBroadcast] Loading server plugin ResourcePackBroadcast v1.0.5
[10:15:07] [Server thread/INFO]: [ProtectionStones] Loading server plugin ProtectionStones v2.10.5
[10:15:07] [Server thread/INFO]: [PlayerProfiles] Loading server plugin PlayerProfiles v8.0.3
[10:15:07] [Server thread/INFO]: [PlayerKits2] Loading server plugin PlayerKits2 v1.18.3
[10:15:07] [Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.31.1
[10:15:08] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15.2-b216e2b
[10:15:08] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.5
[10:15:08] [Server thread/INFO]: [MineXFarmRegen] Loading server plugin MineXFarmRegen v6.1.2
[10:15:08] [Server thread/INFO]: [MagicCosmetics] Loading server plugin MagicCosmetics v3.1.1
[10:15:08] [Server thread/INFO]: [LuxDialoguesTWAddon] Loading server plugin LuxDialoguesTWAddon v1.2.1
[10:15:08] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v4.3.2.1 b125
[10:15:08] [Server thread/INFO]: [LevelledMobs] Loading commands
[10:15:08] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.6.1
[10:15:08] [Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.5.0
[10:15:08] [Server thread/INFO]: [GravesX] Loading server plugin GravesX v4.9.8.2
[10:15:08] [Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v4.3.3
[10:15:09] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v6.3.3
[10:15:09] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.2
[10:15:09] [Server thread/INFO]: [eGlow] Loading server plugin eGlow v3.4.3
[10:15:09] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.14.4
[10:15:09] [Server thread/INFO]: [EasyCommandBlocker] Loading server plugin EasyCommandBlocker v1.14.3
[10:15:09] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[10:15:09] [Server thread/INFO]: [DeathMessages] Loading server plugin DeathMessages v1.4.20
[10:15:09] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.65.1
[10:15:09] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.23.3
[10:15:09] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[10:15:09] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.3.5
[10:15:09] [Server thread/INFO]: [ajParkour] Loading server plugin ajParkour v2.12.10
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.10.1
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[10:15:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[10:15:09] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:15:09] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.158
[10:15:09] [Server thread/INFO]:         __    
[10:15:09] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.158
[10:15:09] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[10:15:09] [Server thread/INFO]: 
[10:15:09] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:15:10] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[10:15:10] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:15:10] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:15:10] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1421ms)
[10:15:10] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[10:15:10] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[10:15:10] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:15:10] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[10:15:10] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:15:10] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-744
[10:15:10] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.2-SNAPSHOT-1149;107cd07
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[10:15:10] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[10:15:10] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[10:15:10] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[10:15:10] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:15:10] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:15:11] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightFaweAdapter as the Bukkit adapter
[10:15:11] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.8
[10:15:11] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[10:15:11] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.12.4
[10:15:11] [Server thread/INFO]: [nightcore] Server version detected as 1.21.4. Using paper-bridge.
[10:15:11] [Server thread/INFO]: [nightcore] [Item NBT] Test successful.
[10:15:11] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[10:15:11] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[10:15:11] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:15:11] [Server thread/INFO]: [nightcore] Time zone set as America/Indianapolis
[10:15:11] [Server thread/INFO]: [nightcore] Loaded 2 color schemes.
[10:15:11] [Server thread/INFO]: [nightcore] Using 'custom' color scheme.
[10:15:11] [Server thread/INFO]: [nightcore] Plugin loaded in 131 ms!
[10:15:11] [Server thread/INFO]: [EconomyBridge] Enabling EconomyBridge v1.2.1
[10:15:11] [Server thread/INFO]: [EconomyBridge] Powered by nightcore
[10:15:11] [Server thread/INFO]: [EconomyBridge] Item Handler registered: 'dummy'.
[10:15:11] [Server thread/INFO]: [EconomyBridge] Item Handler registered: 'excellentcrates'.
[10:15:11] [Server thread/INFO]: [EconomyBridge] Item Handler registered: 'itemsadder'.
[10:15:11] [Server thread/INFO]: [EconomyBridge] Vault detected! Loading currency...
[10:15:11] [Server thread/INFO]: [EconomyBridge] Currency registered: 'vault'.
[10:15:11] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_points'.
[10:15:11] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_level'.
[10:15:11] [Server thread/INFO]: [EconomyBridge] Currency registered: 'gold'.
[10:15:11] [Server thread/INFO]: [EconomyBridge] Currency registered: 'diamond'.
[10:15:11] [Server thread/INFO]: [EconomyBridge] Currency registered: 'emerald'.
[10:15:11] [Server thread/INFO]: [EconomyBridge] Plugin loaded in 30 ms!
[10:15:11] [Server thread/INFO]: [TerraformGenerator] Enabling TerraformGenerator v21.0.0
[10:15:11] [Server thread/INFO]: [TerraformGenerator] Custom Logger Initialized
[10:15:11] [Server thread/INFO]: [TerraformGenerator] bStats Metrics enabled.
[10:15:11] [Server thread/INFO]: [TerraformGenerator] Detected version: 1.21.4, number: 21.4
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v4.3.3
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Powered by nightcore
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Loaded 4 rarities.
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: auto_reel
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_catch
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: seasoned_angler
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: survivalist
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_drowned
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: river_master
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blast_mining
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: divine_touch
[10:15:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: silk_chest
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: telekinesis
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: treasure_hunter
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: tunnel
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: veinminer
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blindness
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusion
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cutter
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_death
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exhaust
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_aspect
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: paralyze
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rocket
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: surprise
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: swiper
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: temper
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thrifty
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thunder
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampire
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: venom
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: wither
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cold_steel
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_shield
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: elemental_protection
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: fire_shield
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: self_destruction
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rebound
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: stopping_force
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bomber
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusing_arrows
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: dragonfire_arrows
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: electrified_arrows
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ender_bow
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: explosive_arrows
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lingering
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flare
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ghast
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hover
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sniper
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: poisoned_arrows
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampiric_arrows
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: withered_arrows
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_arrows
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_cloak
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_fragility
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_mediocrity
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: soulbound
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: restore
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 80
[10:15:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [4.3.3]
[10:15:12] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 356 ms!
[10:15:12] [Server thread/INFO]: Preparing level "world"
[10:15:12] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:15:12] [Server thread/INFO]: Preparing spawn area: 0%
[10:15:13] [Server thread/INFO]: Preparing spawn area: 0%
[10:15:13] [Server thread/INFO]: Time elapsed: 522 ms
[10:15:13] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[10:15:13] [Server thread/INFO]: Time elapsed: 3 ms
[10:15:13] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[10:15:13] [Server thread/INFO]: Time elapsed: 3 ms
[10:15:13] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.4.2
[10:15:13] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[10:15:13] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[10:15:13] [Server thread/INFO]: [Typewriter] Enabling Typewriter v0.8.0
[10:15:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: typewriter [0.8.0]
[10:15:13] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[10:15:13] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.4.2
[10:15:13] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.8.2-SNAPSHOT
[10:15:13] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[10:15:13] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:15:13] [Server thread/INFO]: [packetevents] Enabling packetevents v2.9.4
[10:15:13] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[10:15:13] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[10:15:13] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[10:15:13] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[10:15:13] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[10:15:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[10:15:13] [Server thread/INFO]: [WorldGuard] Loading region data...
[10:15:14] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.9.4)
[10:15:14] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.13
[10:15:14] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.13" 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--].
[10:15:14] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[10:15:14] [Server thread/INFO]: Preparing start region for dimension minecraft:origin
[10:15:14] [Server thread/INFO]: Preparing spawn area: 0%
[10:15:14] [Server thread/INFO]: Time elapsed: 126 ms
[10:15:14] [Server thread/INFO]: [WorldGuard] (Origin) TNT ignition is PERMITTED.
[10:15:14] [Server thread/INFO]: [WorldGuard] (Origin) Lighters are PERMITTED.
[10:15:14] [Server thread/INFO]: [WorldGuard] (Origin) Lava fire is PERMITTED.
[10:15:14] [Server thread/INFO]: [WorldGuard] (Origin) Fire spread is UNRESTRICTED.
[10:15:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Origin'
[10:15:14] [Server thread/INFO]: Preparing start region for dimension minecraft:aetheria
[10:15:14] [Server thread/INFO]: Preparing spawn area: 0%
[10:15:14] [Server thread/INFO]: Time elapsed: 88 ms
[10:15:14] [Server thread/INFO]: [WorldGuard] (Aetheria) TNT ignition is PERMITTED.
[10:15:14] [Server thread/INFO]: [WorldGuard] (Aetheria) Lighters are PERMITTED.
[10:15:14] [Server thread/INFO]: [WorldGuard] (Aetheria) Lava fire is PERMITTED.
[10:15:14] [Server thread/INFO]: [WorldGuard] (Aetheria) Fire spread is UNRESTRICTED.
[10:15:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Aetheria'
[10:15:14] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[10:15:14] [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.
[10:15:14] [Server thread/INFO]: [Multiverse-Core] Version 4.3.13 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[10:15:14] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v11.0.5
[10:15:14] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[10:15:14] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R3) (MC: 1.21.4)
[10:15:14] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1585
[10:15:14] [Server thread/INFO]: [LibsDisguises] Build Date: 13/04/2025 03:40
[10:15:14] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[10:15:14] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[10:15:14] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'SCALED', LD will scale down (when possible) oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[10:15:15] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Loading block mappings for V_1_21_4/17...
[10:15:15] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Finished loading block mappings for V_1_21_4/17 in 104.0268ms
[10:15:15] [Server thread/INFO]: [LibsDisguises] Translations are disabled in libsdisguises.yml, but you modified 1 messages in the translations for MESSAGES. Is this intended?
[10:15:15] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[10:15:15] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise WoodenSk
[10:15:15] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise WoodenSkeleton
[10:15:15] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise SteelZombie
[10:15:15] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise IronSkeleton
[10:15:15] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise GoldZombie
[10:15:15] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise GoldSkeleton
[10:15:15] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise BronzeZombie
[10:15:15] [Server thread/INFO]: [LibsDisguises] Loaded 8 custom disguises
[10:15:15] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[10:15:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[10:15:15] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[10:15:15] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[10:15:15] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3763)
[10:15:15] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[10:15:15] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[10:15:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[10:15:15] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[10:15:15] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[10:15:15] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.9.5-f13ab4a1
[10:15:15] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.4)...
[10:15:15] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[10:15:16] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[10:15:16] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[10:15:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[10:15:16] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[10:15:16] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[10:15:16] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[10:15:17] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:15:18] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:15:18] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:15:18] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:15:18] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:15:18] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:15:18] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:15:18] [Server thread/INFO]: [MythicMobs] ✓ Loaded 9 mobs.
[10:15:18] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 vanilla mob overrides.
[10:15:18] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:15:18] [Server thread/INFO]: [MythicMobs] ✓ Loaded 11 skills.
[10:15:18] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:15:18] [Server thread/INFO]: [MythicMobs] ✓ Loaded 35 mythic items.
[10:15:18] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 drop tables.
[10:15:18] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[10:15:18] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[10:15:18] [pool-18-thread-1/WARN]: [floodgate] 
**********************************
* The prefix you entered in your Floodgate config (_) could lead to username conflicts!
* Should a Java player join with the username _Notch, and a Bedrock player join as Notch (who will be given the name _Notch), unwanted results will happen!
* We strongly recommend using . as the prefix, but other alternatives that will not conflict include: +, - and *
**********************************
[10:15:18] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[10:15:18] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.9.5 ( build f13ab4a1 ) has been successfully loaded!
[10:15:18] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[10:15:18] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[10:15:18] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.2
[10:15:18] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[10:15:18] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[10:15:18] [Server thread/INFO]: [Essentials] No kits found to migrate.
[10:15:18] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[10:15:18] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[10:15:19] [Server thread/INFO]: [Essentials] Loaded 43880 items from items.json.
[10:15:19] [Server thread/INFO]: [Essentials] Using locale en
[10:15:19] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[10:15:19] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[10:15:19] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[10:15:19] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[10:15:19] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.21.2
[10:15:19] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[10:15:19] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[10:15:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.21.2]
[10:15:19] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.30.0
[10:15:19] [Server thread/INFO]: [TAB] Enabling TAB v5.2.5
[10:15:19] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer, chatprefix, customchatname, chatsuffix, join-actionbar, join-title, appearance-condition, nametag-condition]
[10:15:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.2.5]
[10:15:19] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[10:15:19] [Server thread/INFO]: [TAB] Enabled in 111ms
[10:15:19] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.12
[10:15:19] [Server thread/WARN]: [ItemsAdder] Using default server address: . Consider setting it in the `config.yml`
[10:15:19] [Server thread/WARN]: [ItemsAdder] Using default server port: 25565. Consider setting it in the `config.yml`
[10:15:19] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.12
  ___  ___        __        __   __   ___  __      ProtocolLib 5.4.0-SNAPSHOT-744
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Paper 1.21.4-232-12d8fe0 (MC: 1.21.4)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-07-22_16.57.44
                                                   Java Version: 21.0.7
                                                   OS: Windows 11 10.0                                               
[10:15:19] [Server thread/INFO]: [ItemsAdder] Loading GlowingEntities API
[10:15:19] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.4
[10:15:19] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[10:15:19] [Server thread/WARN]: [ItemsAdder] 
[10:15:19] [Server thread/WARN]: [ItemsAdder] ViaVersion detected.
[10:15:19] [Server thread/WARN]: [ItemsAdder] Joining via different game versions can cause issues and some are not fixable due to game limitations.
[10:15:19] [Server thread/WARN]: [ItemsAdder] Make sure that you are aware of these limitations before reporting issues.
[10:15:19] [Server thread/WARN]: [ItemsAdder] Info: https://a.devs.beer/ia-via-load
[10:15:19] [Server thread/WARN]: [ItemsAdder] 
[10:15:19] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[10:15:20] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 87686 heads!
[10:15:20] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[10:15:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[10:15:20] [Server thread/WARN]: [ItemsAdder] Detected legacy ItemsAdder pack (pre 3.3.0). Loading anyway. Info: https://a.devs.beer/ia-new-guidelines-330
[10:15:20] [pool-75-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (b5a58d4cfcf67fe05de1e89dac15ecf2b6aaadeb)
[10:15:20] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[10:15:20] [Server thread/INFO]: [LuxDialogues] Enabling LuxDialogues v1.2.1
[10:15:20] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[10:15:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:srv-console-log(1392256575670059018)
[10:15:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[10:15:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[10:15:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Multiverse-Core hook
[10:15:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[10:15:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: luxdialogues [1.2.1]
[10:15:22] [Thread-38/INFO]: LuxDialogues - Plugin is up to date.
[10:15:22] [Server thread/INFO]: LuxDialogues - Plugin enabled.
[10:15:22] [Server thread/INFO]: [SimplePets] Enabling SimplePets v5.0-BUILD-282
[10:15:22] [Server thread/INFO]: [SimplePets Warning]  *** This version is still under development any issues found please report
[10:15:22] [Server thread/INFO]: [SimplePets Warning]  *** On the Github: https://tiny.bsdevelopment.org/pet-issues
[10:15:22] [Server thread/INFO]: [SimplePets] [STDOUT] FROG
[10:15:22] [Server thread/WARN]: Nag author(s): '[brainsynder, Thatsmusic99]' of 'SimplePets v5.0-BUILD-282' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[10:15:22] [Server thread/INFO]: [SimplePets] [STDOUT] FROG
[10:15:22] [Server thread/INFO]: [SimplePets] [STDOUT] FROG
[10:15:22] [Server thread/INFO]: [SimplePets Debug] Initializing Menu Items...
[10:15:22] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Item Files...
[10:15:22] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[10:15:22] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.6.2
[10:15:23] [Server thread/INFO]: Server version: v1_21_R3 - 1.21.4 - paper  1.21.4-232-12d8fe0 (MC: 1.21.4)
[10:15:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.6.2]
[10:15:23] [Server thread/INFO]: PlaceholderAPI hooked.
[10:15:23] [Server thread/INFO]: Updated (EN) language file. Took 14ms
[10:15:23] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.35
[10:15:23] [Server thread/WARN]: [RoseStacker] Ignored loading stack settings for entities: [HAPPY_GHAST]
[10:15:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.35]
[10:15:23] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.6
[10:15:23] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R3 (1.21.4).
[10:15:23] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[10:15:23] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[10:15:23] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[10:15:23] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[10:15:23] [Server thread/INFO]: [WildTools] Enabling WildTools v2025.1
[10:15:23] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:15:26] [Server thread/INFO]: [WildTools] ******** ENABLE START ********
[10:15:26] [Server thread/INFO]: [WildTools] Loading configuration started...
[10:15:26] [Server thread/INFO]: [WildTools]  - Found 13 tools in config.yml.
[10:15:26] [Server thread/INFO]: [WildTools] Loading configuration done (Took 17ms)
[10:15:26] [Server thread/INFO]: [WildTools] Loading messages started...
[10:15:26] [Server thread/INFO]: [WildTools]  - Found 0 messages in lang.yml.
[10:15:26] [Server thread/INFO]: [WildTools] Loading messages done (Took 1ms)
[10:15:26] [Server thread/INFO]: [WildTools] ******** ENABLE DONE ********
[10:15:26] [Server thread/INFO]: [UltraRepair] Enabling UltraRepair v4.2.5
[10:15:26] [Server thread/INFO]: 

 ____ ___  __________ 
|    |   \ \______   \
|    |   /  |       _/
|    |  /   |    |   \
|______/    |____|_  /
                   \/ 

[10:15:26] [Server thread/INFO]: [UltraRepair] Loading configuration files...
[10:15:26] [Server thread/INFO]: [UltraRepair] Initializing base settings...
[10:15:26] [Server thread/INFO]: [UltraRepair] Checking economy integration...
[10:15:26] [Server thread/INFO]: [UltraRepair] Loading repair manager...
[10:15:26] [Server thread/INFO]: [UltraRepair] Registering commands...
[10:15:26] [Server thread/WARN]: [UltraRepair] "UltraRepair v4.2.5" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void dev.demeng.ultrarepair.shaded.pluginbase.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 [Demeng].
[10:15:26] [Server thread/INFO]: [UltraRepair] Registering listeners...
[10:15:26] [Server thread/INFO]: [UltraRepair] Loading metrics...
[10:15:26] [Server thread/INFO]: [UltraRepair] Checking for updates...
[10:15:26] [Server thread/INFO]: UltraRepair v4.2.5 by Demeng has been enabled.
[10:15:26] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.3
[10:15:26] [Server thread/INFO]:  
[10:15:26] [Server thread/INFO]: __________________________________________________________
[10:15:26] [Server thread/INFO]:  
[10:15:26] [Server thread/INFO]:                        TradeSystem [2.6.3]
[10:15:26] [Server thread/INFO]:  
[10:15:26] [Server thread/INFO]: Status:
[10:15:26] [Server thread/INFO]:  
[10:15:26] [Server thread/INFO]: MC-Version: Paper (1.21.4)
[10:15:26] [Server thread/INFO]:  
[10:15:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[10:15:27] [Server thread/INFO]:   > Loading sounds
[10:15:27] [Server thread/INFO]:   > Loading blacklist
[10:15:27] [Server thread/INFO]:     ...got 3 blocked item(s)
[10:15:27] [Server thread/INFO]:   > Loading layouts
[10:15:27] [Server thread/INFO]:     ...got 4 layout(s)
[10:15:27] [Server thread/INFO]:   > Queuing database initializing task
[10:15:27] [Folia Async Scheduler Thread #15/INFO]: [TradeSystem] Database was started successfully.
[10:15:27] [Server thread/INFO]:  
[10:15:27] [Server thread/INFO]: Finished (229ms)
[10:15:27] [Server thread/INFO]:  
[10:15:27] [Server thread/INFO]: __________________________________________________________
[10:15:27] [Server thread/INFO]:  
[10:15:27] [Server thread/INFO]: [Tebex] Enabling Tebex v2.2.1
[10:15:27] [Server thread/INFO]: [TAB-Additions] Enabling TAB-Additions v2.1.3
[10:15:27] [Server thread/INFO]: [TAB] [WARN] [chat.yml] formats.default: Missing configuration section "formats.default.name" of type String, using default value default.
[10:15:27] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.5.3
[10:15:27] [Server thread/INFO]: [sleep-most] Hooked to PlaceholderAPI
[10:15:27] [Server thread/INFO]: [sleep-most] Hooked to Essentials
[10:15:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sleepmost [5.5.3]
[10:15:27] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.10
[10:15:27] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[10:15:27] [Server thread/INFO]: [Shopkeepers] Loading the data of 7 shopkeepers ...
[10:15:27] [Server thread/INFO]: [ResourcePackBroadcast] Enabling ResourcePackBroadcast v1.0.5
[10:15:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: respack [1.0.0]
[10:15:27] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.10.5
[10:15:27] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler
[10:15:27] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler
[10:15:27] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled!
[10:15:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: protectionstones [2.10.5]
[10:15:27] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled!
[10:15:27] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks:
[10:15:27] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTExM2U2NzQ1Yjc2ZjIyYTA1NmY1NWZiNjg2MTZiMDgyYmI2MzMzMGZiM2I3ZjM1NmZkODMwZGU2YThiNGY3MSJ9fX0= (x10)
[10:15:27] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODMzNjA1NGM4NThjMGFkNjUxZjA4YmFiNmM2YjNmZGYxYzQ3ZjVmNjU2ZmQ5NmQ0NTRlOTgxZDNmY2ViOTljMSJ9fX0= (x40)
[10:15:27] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODVkYWFmYTJlMDMwM2EyZjljNmEwZmJhZDVkZTA4MDEwODk3NmViNmQ0NTgzNjJjYmJlNGEwYTM2OTg4NjZjIn19fQ== (x80)
[10:15:27] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODNlZDRjZTIzOTMzZTY2ZTA0ZGYxNjA3MDY0NGY3NTk5ZWViNTUzMDdmN2VhZmU4ZDkyZjQwZmIzNTIwODYzYyJ9fX0= (x160)
[10:15:27] [Server thread/INFO]: [ProtectionStones] Building region cache...
[10:15:27] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true)
[10:15:27] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs...
[10:15:27] [Server thread/INFO]: [ProtectionStones] ProtectionStones has successfully started!
[10:15:27] [Server thread/INFO]: [PlayerProfiles] Enabling PlayerProfiles v8.0.3
[10:15:27] [Server thread/INFO]: [PlayerProfiles] &rFound WorldGuard! Using WorldGuard API version 7
[10:15:27] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to Aetheria-MC - Minecraft (Offline/Geyser) server.
[10:15:27] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.18.3
[10:15:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.18.3]
[10:15:27] [Server thread/INFO]: [PlayerKits²] Has been enabled! Version: 1.18.3
[10:15:27] [Server thread/INFO]: [PlayerKits²] Thanks for using my plugin!   ~Ajneb97
[10:15:27] [Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.31.1
[10:15:27] [Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[10:15:28] [Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Economy plugin found! (EssentialsX Economy)
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[10:15:29] [Server thread/WARN]: java.lang.NoSuchFieldError: Class com.olziedev.playerauctions.product.ProductConverter does not have member field 'org.bukkit.plugin.java.JavaPlugin plugin'
[10:15:29] [Server thread/WARN]:     at com.olziedev.playerauctions.product.ProductConverter.onLoad(ProductConverter.java:64)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.d(PluginExpansionManager.java:99)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.b.b(ExpansionManager.java:62)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.api.events.AuctionEvent.b(AuctionEvent.java:148)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.api.events.AuctionEvent.acceptCallback(AuctionEvent.java:109)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.api.events.AuctionEvent.callEvent(AuctionEvent.java:150)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.b.b(ExpansionManager.java:54)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.b(PluginExpansionManager.java:293)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.b(PluginExpansionManager.java:260)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.b(PluginExpansionManager.java:365)
[10:15:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.b(PluginExpansionManager.java:358)
[10:15:29] [Server thread/WARN]:     at java.base/java.util.HashMap.forEach(HashMap.java:1429)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.b(PluginExpansionManager.java:358)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.b(PluginExpansionManager.java:423)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.b(PluginExpansionManager.java:341)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.b(OlziePlugin.java:208)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.d.h(DatabaseManager.java:240)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.PlayerAuctions.g(PlayerAuctions.java:65)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.utils.b.b(PluginConfiguration.java:105)
[10:15:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.PlayerAuctions.onEnable(PlayerAuctions.java:61)
[10:15:29] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[10:15:29] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[10:15:29] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[10:15:29] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[10:15:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658)
[10:15:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607)
[10:15:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743)
[10:15:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[10:15:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322)
[10:15:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163)
[10:15:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[10:15:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Found Item Currency integrating support...
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Found XP Currency integrating support...
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[10:15:29] [Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[10:15:29] [Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[10:15:29] [Server thread/INFO]: [Quests] Enabling Quests v3.15.2-b216e2b
[10:15:29] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[10:15:29] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[10:15:29] [Server thread/INFO]: [Quests] Your server is running version 1.21
[10:15:29] [Server thread/ERROR]: [Quests] Could not set color for the initialized boss bar implementation, using default instead!
[10:15:29] [Server thread/ERROR]: [Quests] Update your config to latest version! (color section is missing)
[10:15:29] [Server thread/ERROR]: [Quests] https://github.com/LMBishop/Quests/blob/master/bukkit/src/main/resources/resources/bukkit/config.yml
[10:15:29] [Server thread/ERROR]: [Quests] Could not set style for the initialized boss bar implementation, using default instead!
[10:15:29] [Server thread/ERROR]: [Quests] Update your config to latest version! (style section is missing)
[10:15:29] [Server thread/ERROR]: [Quests] https://github.com/LMBishop/Quests/blob/master/bukkit/src/main/resources/resources/bukkit/config.yml
[10:15:29] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[10:15:29] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.5
[10:15:30] [Server thread/INFO]: [MineXFarmRegen] Enabling MineXFarmRegen v6.1.2
[10:15:30] [Server thread/INFO]: [MineXFarmRegen] Regions Not Found In Regions.yml
[10:15:30] [Server thread/INFO]: ****************************
[10:15:30] [Server thread/INFO]:       Mine X FARM REGEN     
[10:15:30] [Server thread/INFO]:  Regenerate Blocks in Style 
[10:15:30] [Server thread/INFO]:                             
[10:15:30] [Server thread/INFO]:         V:6.1.2        
[10:15:30] [Server thread/INFO]:        Made By Hmmbo       
[10:15:30] [Server thread/INFO]:  Join Our Discord For Support  
[10:15:30] [Server thread/INFO]: ****************************
[10:15:30] [Server thread/INFO]: Thanks for using our plugin 
[10:15:30] [Server thread/INFO]: [MineXFarmRegen] Vault Loaded
[10:15:30] [Server thread/WARN]: [MineXFarmRegen] "MineXFarmRegen v6.1.2" 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 [].
[10:15:30] [Server thread/INFO]: [MagicCosmetics] Enabling MagicCosmetics v3.1.1
[10:15:30] [Server thread/INFO]: [MagicCosmetics] Version: 1.21.4 Detected!
[10:15:30] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: cosmetics.yml
[10:15:30] [Server thread/INFO]: [MagicCosmetics] Validating purchase...
[10:15:30] [Server thread/INFO]: [MagicCosmetics]  
[10:15:30] [Server thread/INFO]: [MagicCosmetics] Welcome Sentaku!
[10:15:30] [Server thread/INFO]: [MagicCosmetics] Thank you for using MagicCosmetics =)!
[10:15:30] [Server thread/INFO]: [MagicCosmetics]  
[10:15:30] [Server thread/INFO]: [MagicCosmetics] ModelEngine 4 found, using new model engine
[10:15:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: magicosmetics [3.1.1]
[10:15:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[10:15:30] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@4a1796a
[10:15:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[10:15:30] [Server thread/INFO]: [MagicCosmetics] SQLite table created successfully
[10:15:30] [Server thread/INFO]: [LuxDialoguesTWAddon] Enabling LuxDialoguesTWAddon v1.2.1
[10:15:30] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.3.2.1 b125
[10:15:30] [Server thread/INFO]: [LevelledMobs] Enabling commands
[10:15:30] [Server thread/INFO]: [LevelledMobs] Building reflection cache, use simple names: true
[10:15:30] [Server thread/INFO]: [LevelledMobs] Found Essentials, loading integration
[10:15:30] [Server thread/INFO]: [LevelledMobs] Using NMS version 1.21.4 for nametag support
[10:15:30] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[10:15:30] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[10:15:30] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[10:15:30] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[10:15:30] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[10:15:30] [Server thread/INFO]: [LevelledMobs] Current rules hash: 9b0f48e3273bb9cc29d2891ad33fb3410fec8cf1e77c2092ff670fd38f6d4ff5
[10:15:30] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[10:15:30] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[10:15:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.3.2.1 b125]
[10:15:30] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[10:15:30] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[10:15:30] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 86ms)
[10:15:30] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.6.1
[10:15:30] [Server thread/INFO]: ------------- Jobs -------------
[10:15:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.6.1]
[10:15:30] [Server thread/INFO]: PlaceholderAPI hooked.
[10:15:30] [Server thread/INFO]: Connected to database (SqLite)
[10:15:30] [Server thread/INFO]: Loaded 8 titles
[10:15:30] [Server thread/INFO]: Loaded 2 restricted areas!
[10:15:30] [Server thread/INFO]: Loaded 69 protected blocks timers
[10:15:30] [Server thread/INFO]: Loaded 1538 custom item names
[10:15:30] [Server thread/INFO]: Loaded 85 custom entity names
[10:15:30] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[10:15:30] [Server thread/INFO]: Loaded 122 custom enchant names
[10:15:30] [Server thread/INFO]: Loaded 46 custom enchant names
[10:15:30] [Server thread/INFO]: Loaded 16 custom color names
[10:15:30] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[10:15:30] [Server thread/INFO]: Loaded 4 shop items
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Hunter
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Farmer
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Enchanter
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Fisherman
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Crafter
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Explorer
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Miner
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Builder
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Brewer
[10:15:30] [Server thread/INFO]: Loaded 1 quests for Digger
[10:15:30] [Server thread/INFO]: Loaded 12 jobs
[10:15:30] [Server thread/INFO]: Loaded 0 boosted items
[10:15:30] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[10:15:30] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[10:15:30] [Server thread/INFO]: Duplicate in database for (Sentaku_Yujo) -> (f3fdf283-586a-4b81-baa3-cd511101ceea) <-> (9a5ae7cb-1c6a-3e6f-b399-072f7b16884c)
[10:15:30] [Server thread/INFO]: Preloaded 8 players data in 0.01
[10:15:30] [Server thread/INFO]: WorldGuard detected.
[10:15:30] [Server thread/INFO]: MythicMobs detected.
[10:15:30] [Server thread/INFO]: Registering listeners...
[10:15:30] [Server thread/INFO]: Registered MythicMobs listener.
[10:15:30] [Server thread/INFO]: Listeners registered successfully
[10:15:30] [Server thread/INFO]: Plugin has been enabled successfully.
[10:15:30] [Server thread/INFO]: ------------------------------------
[10:15:30] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.5.0
[10:15:30] [Server thread/INFO]: [Infiniteannouncements] [DEBUG] Registered command: InfiniteAnnouncements
[10:15:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: infiniteannouncements [1.0.0]
[10:15:30] [Server thread/INFO]: [GravesX] Enabling GravesX v4.9.8.2
[10:15:30] [Server thread/INFO]: [GravesX] Loading Libraries for GravesX
[10:15:30] [Server thread/INFO]: [GravesX] Loading library com.zaxxer.HikariCP version 6.3.0.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library com.zaxxer:HikariCP:6.3.0
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.javassist:javassist:3.29.2-GA
[10:15:30] [Server thread/INFO]: [GravesX] Loading library io.micrometer:micrometer-core:1.5.10
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.hdrhistogram:HdrHistogram:2.1.12
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.latencyutils:LatencyUtils:2.0.3
[10:15:30] [Server thread/INFO]: [GravesX] Loaded library com.zaxxer.HikariCP version 6.3.0 and shaded successfully.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.xerial.sqlite-jdbc version 3.50.3.0.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.xerial:sqlite-jdbc:3.50.3.0
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[10:15:30] [Server thread/INFO]: [GravesX] Loaded library org.xerial.sqlite-jdbc version 3.50.3.0 successfully.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.json.json version 20250517.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.json:json:20250517
[10:15:30] [Server thread/INFO]: [GravesX] Loaded library org.json.json version 20250517 successfully.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library com.github.oshi.oshi-core version 6.8.2.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library com.github.oshi:oshi-core:6.8.2
[10:15:30] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna:5.17.0
[10:15:30] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna-platform:5.17.0
[10:15:30] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:2.0.17
[10:15:30] [Server thread/INFO]: [GravesX] Loading library io.github.pandalxb:jLibreHardwareMonitor:1.0.5
[10:15:30] [Server thread/INFO]: [GravesX] Loading library io.github.pandalxb:jPowerShell:1.0.0
[10:15:30] [Server thread/INFO]: [GravesX] Loaded library com.github.oshi.oshi-core version 6.8.2 successfully.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library com.h2database.h2 version 2.3.232.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library com.h2database:h2:2.3.232
[10:15:30] [Server thread/INFO]: [GravesX] Loaded library com.h2database.h2 version 2.3.232 and shaded successfully.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-api version 4.24.0.
[10:15:30] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:26.0.2
[10:15:31] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-api version 4.24.0 and shaded successfully.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-minimessage version 4.24.0.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-minimessage:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:26.0.2
[10:15:31] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-minimessage version 4.24.0 and shaded successfully.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-serializer-gson version 4.24.0.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-json:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:option:1.1.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.jspecify:jspecify:1.0.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.google.code.gson:gson:2.8.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.google.auto.service:auto-service-annotations:1.1.1
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-commons:4.24.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:26.0.2
[10:15:31] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-serializer-gson version 4.24.0 and shaded successfully.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-platform-bukkit version 4.4.1.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-bukkit:4.4.1
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-api:4.4.1
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.21.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.21.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-bungeecord:4.4.1
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-legacy:4.21.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-nbt:4.21.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:26.0.2
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.21.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-json:4.21.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:option:1.1.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.jspecify:jspecify:1.0.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.google.auto.service:auto-service-annotations:1.1.1
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-commons:4.21.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson-legacy-impl:4.21.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-json-legacy-impl:4.21.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-facet:4.4.1
[10:15:31] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-viaversion:4.4.1
[10:15:31] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-platform-bukkit version 4.4.1 and shaded successfully.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.github.puregero.multilib version 1.2.4.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib:1.2.4
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:22.0.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-common:1.2.4
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-bukkit:1.2.4
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-multipaper:1.2.4
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-common:1.2.4
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-bukkit:1.2.4
[10:15:31] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-paper:1.2.4
[10:15:31] [Server thread/INFO]: [GravesX] Loaded library com.github.puregero.multilib version 1.2.4 and shaded successfully.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.apache.commons.commons-text version 1.12.0.
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-text:1.12.0
[10:15:31] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-lang3:3.14.0
[10:15:31] [Server thread/INFO]: [GravesX] Loaded library org.apache.commons.commons-text version 1.12.0 and shaded successfully.
[10:15:31] [Server thread/INFO]: [GravesX] Finished Loading Libraries for GravesX.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-b131. Economy is enabled.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-b131's permissions provider.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into ProtocolLib 5.4.0-SNAPSHOT-744.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into FastAsyncWorldEdit 2.13.2-SNAPSHOT-1149;107cd07.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into ItemsAdder 4.0.12.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into MiniMessage.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into Citizens 2.0.37-SNAPSHOT (build 3763).
[10:15:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gravesx [4.9.8.2]
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into PlaceholderAPI 2.11.6.
[10:15:31] [Server thread/WARN]: [GravesX] Compatibility: Essentials Detected, make sure you don't have the essentials.keepinv or essentials.keepxp permissions. This is not a bug.
[10:15:31] [Server thread/WARN]: [GravesX] Compatibility: Paper or a Paper fork detected. To ensure holograms disappear correctly when looting graves, make sure 'armor-stands-tick' or 'armor-stands.tick' is set to true. This is not a bug.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into LuckPerms 5.4.158.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into Geyser-Spigot 2.8.2-SNAPSHOT.
[10:15:31] [Server thread/INFO]: [GravesX] Integration: Hooked into floodgate 2.2.4-SNAPSHOT (b116-0e3163c).
[10:15:31] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Starting...
[10:15:31] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.pool.HikariPool] Graves H2 - Added connection conn0: url=jdbc:h2:file:C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\plugins\GravesX\data\graves.data user=SA
[10:15:31] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Start completed.
[10:15:31] [Server thread/WARN]: [GravesX] No SQLite database at plugins\GravesX\data\data.db; skipping migration.
[10:15:31] [Folia Async Scheduler Thread #15/INFO]: [GravesX] Loading grave maps...
[10:15:31] [Folia Async Scheduler Thread #15/INFO]: [GravesX] Found 0 grave maps to load into cache.
[10:15:31] [Folia Async Scheduler Thread #14/INFO]: [GravesX] Loading Block Map cache...
[10:15:31] [Folia Async Scheduler Thread #14/INFO]: [GravesX] Loaded 0 Blocks into Block Map Cache.
[10:15:31] [Folia Async Scheduler Thread #14/INFO]: [GravesX] Loading Entity Map Cache for armorstand...
[10:15:31] [Folia Async Scheduler Thread #12/INFO]: [GravesX] Loading Entity Map Cache for itemframe...
[10:15:31] [Folia Async Scheduler Thread #12/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for itemframe.
[10:15:31] [Folia Async Scheduler Thread #14/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for armorstand.
[10:15:31] [Folia Async Scheduler Thread #14/INFO]: [GravesX] Loading Holograms into Hologram Map Cache...
[10:15:31] [Folia Async Scheduler Thread #14/INFO]: [GravesX] Loaded 0 Holograms into Hologram Map Cache.
[10:15:31] [Folia Async Scheduler Thread #14/INFO]: [GravesX] Loading Entity Data Map Cache for citizensnpc...
[10:15:31] [Folia Async Scheduler Thread #14/INFO]: [GravesX] Loaded 0 entities into Entity Data Map Cache for citizensnpc.
[10:15:31] [Folia Async Scheduler Thread #12/INFO]: [GravesX] Loading Entity Data Map Cache for itemsadder...
[10:15:31] [Folia Async Scheduler Thread #12/INFO]: [GravesX] Loaded 0 entities into Entity Data Map Cache for itemsadder.
[10:15:31] [Server thread/INFO]: [GravesX] Metrics has been enabled. All metrics will be sent to https://bstats.org/plugin/bukkit/Graves/12849 and https://bstats.org/plugin/bukkit/GravesX/23069.
[10:15:31] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v6.3.3
[10:15:31] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[10:15:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentCratesPool - Starting...
[10:15:31] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] ExcellentCratesPool - Added connection org.sqlite.jdbc4.JDBC4Connection@532ba0fa
[10:15:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentCratesPool - Start completed.
[10:15:31] [Server thread/INFO]: [ExcellentCrates] Loaded 0 crate openings.
[10:15:31] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[10:15:31] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[10:15:32] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
[10:15:32] [Server thread/ERROR]: [nightcore] Invalid material 'null'. Found in 'C:\Users\telli\Desktop\Aetheria - Origin Survival\Aetheria\1.21.4\plugins\ExcellentCrates\milestones.yml' -> 'Content.Priority.Item'.
[10:15:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [6.3.3]
[10:15:32] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 203 ms!
[10:15:32] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.2
[10:15:32] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[10:15:32] [Server thread/INFO]: [eGlow] Enabling eGlow v3.4.3
[10:15:32] [Server thread/INFO]: [eGlow]: Loading main config.
[10:15:32] [Server thread/INFO]: [eGlow]: Loading messages config.
[10:15:32] [Server thread/INFO]: [eGlow]: Loading customeffects config.
[10:15:32] [Server thread/INFO]: eGlow Successfully loaded Playerdata database.
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.14.4
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 shop configs from /shops/
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 14 shop sections.
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.21.4...
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: RoseStacker found, integrating...
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using RoseStacker as spawner provider.
[10:15:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.1.0]
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[10:15:32] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 165ms to complete
[10:15:32] [Server thread/INFO]: [EasyCommandBlocker] Enabling EasyCommandBlocker v1.14.3
[10:15:32] [Server thread/INFO]: [EasyCommandBlocker] Has been enabled! Version: 1.14.3
[10:15:32] [Server thread/INFO]: [EasyCommandBlocker] Thanks for using my plugin!   ~Ajneb97
[10:15:32] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[10:15:32] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[10:15:32] [Server thread/INFO]: [DeluxeTags] 30 tags loaded
[10:15:32] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[10:15:32] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[10:15:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[10:15:32] [Server thread/INFO]: [DeluxeTags] ----------------------------
[10:15:32] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[10:15:32] [Server thread/INFO]: [DeluxeTags]  
[10:15:32] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[10:15:32] [Server thread/INFO]: [DeluxeTags] The latest version
[10:15:32] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[10:15:32] [Server thread/INFO]: [DeluxeTags]  
[10:15:32] [Server thread/INFO]: [DeluxeTags] ----------------------------
[10:15:32] [Server thread/INFO]: [DeathMessages] Enabling DeathMessages v1.4.20
[10:15:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deathmessages [1.4.20]
[10:15:32] [Server thread/INFO]: [DeathMessages] PlaceholderAPI Hook Enabled!
[10:15:32] [Server thread/INFO]: [DeathMessages] WorldGuard Hook Enabled!
[10:15:32] [Server thread/INFO]: [DeathMessages] MythicMobs Hook Enabled!
[10:15:32] [Server thread/INFO]: [DeathMessages] bStats Hook Enabled!
[10:15:32] [Server thread/INFO]: DeathMessages 1.4.20 successfully loaded!
[10:15:32] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.65.1
[10:15:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.65.1]
[10:15:32] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.65.1
[10:15:32] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[10:15:32] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.23.3
[10:15:32] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.23.3 Plugin Loading...
[10:15:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[10:15:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[10:15:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CommandPanels' to create a bStats instance!
[10:15:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [3.23.3]
[10:15:32] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.23.3 Plugin Loaded!
[10:15:32] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[10:15:32] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[10:15:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[10:15:32] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.3.5
[10:15:33] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[10:15:33] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[10:15:33] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[10:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.3.5]
[10:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.3.5]
[10:15:33] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[10:15:33] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[10:15:33] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[10:15:33] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[10:15:33] [Server thread/INFO]: [AuraSkills] Successfully registered hook MythicMobs
[10:15:33] [Server thread/INFO]: [AuraSkills] Loaded 159 config options in 78 ms
[10:15:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[10:15:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[10:15:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[10:15:33] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[10:15:33] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[10:15:33] [Server thread/INFO]: [ajParkour] Enabling ajParkour v2.12.10
[10:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajpk [2.12.10]
[10:15:33] [Server thread/INFO]: ajParkour v2.12.10 by ajgeiss0702 has been enabled!
[10:15:33] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.10.1
[10:15:34] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[10:15:34] [Server thread/INFO]: [ajLeaderboards] Loaded 5 boards
[10:15:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.10.1]
[10:15:34] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[10:15:34] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 by ajgeiss0702 enabled!
[10:15:34] [Server thread/INFO]: [spark] Starting background profiler...
[10:15:34] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[10:15:35] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[10:15:35] [Server thread/INFO]: [Geyser-Spigot] 
[10:15:35] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.8.2-b900 (git-master-efa41e0)
[10:15:35] [Server thread/INFO]: [Geyser-Spigot] 
[10:15:35] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[10:15:36] [Server thread/INFO]: [Geyser-Spigot] Started Geyser on UDP port 19132
[10:15:36] [Server thread/INFO]: [Geyser-Spigot] Done (1.197s)! Run /geyser help for help!
[10:15:36] [pool-99-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.10.1)
[10:15:36] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:15:36] [Server thread/INFO]: [MineXFarmRegen] Regions Not Found In Regions.yml
[10:15:36] [Server thread/INFO]: Done preparing level "world" (24.334s)
[10:15:36] [Server thread/INFO]: Running delayed init tasks
[10:15:36] [Craft Scheduler Thread - 14 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[10:15:36] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:15:36] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[10:15:36] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] [License] Store product licensed to: Sentaku (148815)
[10:15:36] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Fetching version information...
[10:15:36] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[10:15:36] [Craft Scheduler Thread - 20 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[10:15:36] [Craft Scheduler Thread - 25 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[10:15:36] [Craft Scheduler Thread - 44 - Vault/INFO]: [Vault] Checking for Updates ... 
[10:15:36] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[10:15:36] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[10:15:36] [ForkJoinPool.commonPool-worker-14/INFO]: [Geyser-Spigot] There's a new Geyser update available to support Bedrock version 1.21.100. Download it here: https://geysermc.org/download
[10:15:36] [Craft Scheduler Thread - 25 - DecentHolograms/INFO]: [DecentHolograms] Loaded 8 holograms!
[10:15:36] [Craft Scheduler Thread - 5 - sleep-most/INFO]: [sleep-most] UPDATE FOUND: A newer version of sleep-most is available to download!
[10:15:36] [Craft Scheduler Thread - 44 - Vault/INFO]: [Vault] No new version available
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 214 items
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] Used Blocks IDs:
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - REAL 0/188
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_NOTE 28/750
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_TRANSPARENT 0/63
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - FIRE 0/14
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] Used Font Images: 228/6608
[10:15:36] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] 
[10:15:36] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] Importing Erocavontic_Frozen_Gateway.bbmodel.
[10:15:36] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[10:15:36] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing Erocavontic_Celestial_Nexus.bbmodel.
[10:15:36] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[10:15:36] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing Erocavontic_Lunar_Runestone.bbmodel.
[10:15:36] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] 
[10:15:36] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] Importing Erocavontic_Candlelit_Passage.bbmodel.
[10:15:36] [Craft Scheduler Thread - 27 - MiniMOTD/INFO]: [MiniMOTD] There is an update available for MiniMOTD!
[10:15:36] [Craft Scheduler Thread - 27 - MiniMOTD/INFO]: [MiniMOTD] This server is running version v2.1.5, which is 3 versions outdated.
[10:15:36] [Craft Scheduler Thread - 27 - MiniMOTD/INFO]: [MiniMOTD] Download the latest version, v2.1.8 from GitHub at the link below:
[10:15:36] [Craft Scheduler Thread - 27 - MiniMOTD/INFO]: [MiniMOTD] https://github.com/jpenilla/MiniMOTD/releases/tag/v2.1.8
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 3 categories
[10:15:36] [Craft Scheduler Thread - 9 - RoseStacker/INFO]: [RoseStacker] Fetched 137 translation locales.
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [Content] Contents loaded successfully!
[10:15:36] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url: https://download.mc-packs.net/pack/095d02ce68d4f1bae76148bfeff293a659df731e.zip
[10:15:36] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[10:15:36] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[10:15:36] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Generator Profiled:
[10:15:36] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Import Phase: 269.4ms
[10:15:36] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Assets Phase: 37.3ms
[10:15:36] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Zipping Phase: 60.5ms
[10:15:37] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [Pack] LastEdit: 2025-08-05_00-55
[10:15:37] [Craft Scheduler Thread - 26 - ajParkour/INFO]: [ajParkour] You are up to date! (2.12.10)
[10:15:37] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [Pack] URL is valid (external). URL: https://download.mc-packs.net/pack/095d02ce68d4f1bae76148bfeff293a659df731e.zip
[10:15:37] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] ResourcePack
[10:15:37] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - Path: /1.21.4/plugins/ItemsAdder/output/generated.zip
[10:15:37] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - Download: https://download.mc-packs.net/pack/095d02ce68d4f1bae76148bfeff293a659df731e.zip
[10:15:37] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - Size: 5 MB/250 MB (2%)
[10:15:37] [Server thread/WARN]: [Typewriter] Extension 'RPGRegionsExtension' is missing external dependencies: 'RPGRegions'. Ignoring extension.
[10:15:37] [Server thread/INFO]: [Typewriter] 
---------------{ Loaded Extensions }---------------

BasicExtension       (0.8.0) 📚: 159 👂:  26 🔌:   0
CitizensExtension    (0.8.0) 📚:   2 👂:   2 🔌:   0
EntityExtension      (0.8.0) 📚: 183 👂:   1 🔌:   0
MythicMobsExtension  (0.8.0) 📚:   9 👂:   3 🔌:   0
QuestExtension       (0.8.0) 📚:  13 👂:   3 🔌:   2
RoadNetworkExtension (0.8.0) 📚:   4 👂:   0 🔌:   3
VaultExtension       (0.8.0) 📚:   9 👂:   0 🔌:   2
WorldGuardExtension  (0.8.0) 📚:   5 👂:   2 🔌:   1

--------------------------------------------------
[10:15:37] [Server thread/INFO]: [Typewriter] Loaded 0 entries from 0 pages.
[10:15:38] [Server thread/INFO]: [WorldGuard] Registering session handler com.typewritermc.worldguard.WorldGuardHandler
[10:15:38] [Server thread/INFO]: [Typewriter] Loaded 0 entry listeners
[10:15:38] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[10:15:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.30.0]
[10:15:38] [Server thread/INFO]: [SimplePets Debug] Plugin is on a server that is using Mojang Mappings
[10:15:38] [Server thread/INFO]: [SimplePets Debug] Found support for version(s): [1.21.3, 1.21.4, 1.21.5]
[10:15:38] [Server thread/INFO]: [SimplePets Debug] Targeting version: 1.21.4
[10:15:38] [Server thread/INFO]: [SimplePets Debug] Initializing Inventories...
[10:15:38] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Inventories Files...
[10:15:38] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[10:15:38] [Server thread/INFO]: [SimplePets ADDON] Loading addons in '5 SECONDS'
[10:15:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.31.1]
[10:15:38] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[10:15:38] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[10:15:38] [Server thread/WARN]: [ExcellentCrates] Problems in 'legendary' crate (plugins\ExcellentCrates\crates\legendary.yml):
[10:15:38] [Server thread/ERROR]: [ExcellentCrates] -> Some rewards has problems!
[10:15:38] [Server thread/WARN]: [ExcellentCrates] Problems in 'bad_luck_✘' reward (plugins\ExcellentCrates\crates\legendary.yml):
[10:15:38] [Server thread/ERROR]: [ExcellentCrates] -> No items to give!
[10:15:38] [Server thread/WARN]: [ExcellentCrates] Problems in 'bad_luck_✘1' reward (plugins\ExcellentCrates\crates\legendary.yml):
[10:15:38] [Server thread/ERROR]: [ExcellentCrates] -> No items to give!
[10:15:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eglow [3.4.3]
[10:15:38] [Server thread/INFO]: [AuraSkills] Loaded 15 skills with 323 total sources
[10:15:38] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[10:15:38] [Server thread/INFO]: [AuraSkills] Loaded 30 pattern rewards and 0 level rewards
[10:15:38] [Server thread/INFO]: [AuraSkills] Loaded 32 loot entries in 4 pools and 2 tables
[10:15:38] [Server thread/INFO]: [AuraSkills] Loaded 7 menus
[10:15:38] [Server thread/INFO]: [Citizens] Loaded 25 NPCs.
[10:15:39] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs...
[10:15:39] [Server thread/INFO]: [ItemsAdder] Reloaded 1 ItemsAdder Custom Entities Citizens NPCs.
[10:15:39] [Server thread/INFO]: [Mythic] Reloading plugin...
[10:15:39] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:15:39] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:15:39] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:15:39] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:15:39] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:15:39] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:15:39] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:15:39] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:15:39] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:15:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 9 mobs.
[10:15:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 vanilla mob overrides.
[10:15:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:15:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 11 skills.
[10:15:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:15:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 35 mythic items.
[10:15:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 drop tables.
[10:15:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[10:15:39] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[10:15:39] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.2]
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[10:15:39] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to a missing plugin: VotingPlugin
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[10:15:39] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 1 script loaded!
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.2]
[10:15:39] [Server thread/INFO]: 11 placeholder hook(s) registered!
[10:15:39] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/cosmetics.yml
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'hat1'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'hat2'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'bag1'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'bag2'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'wstick1'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'wstick2'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'balloon1'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'balloon2'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'balloon3'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'spray1'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found skipping cosmetic 'spray2'
[10:15:39] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 0
[10:15:39] [Server thread/INFO]: [MagicCosmetics] Registered colors: 9
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'contain-item'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'back-button-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'back-button-cancel-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'next-button-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'next-button-cancel-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'hat-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'bag-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'wstick-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'balloon-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'spray-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'color-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'pages-template'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'hat_menu'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'bag_menu'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'wstick_menu'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'balloon_menu'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Menu Item 'spray_menu'
[10:15:39] [Server thread/INFO]: [MagicCosmetics] Registered items: 0
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Token Item 'token1'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Token Item 'token2'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Token Item 'token3'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Token Item 'token4'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Token Item 'token5'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Token Item 'token6'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Token Item 'token7'
[10:15:39] [Server thread/WARN]: [MagicCosmetics] Resource (ItemsAdder) plugin Not Found, skipping Token Item 'token8'
[10:15:39] [Server thread/INFO]: [MagicCosmetics] Registered tokens: 0
[10:15:39] [Server thread/INFO]: [MagicCosmetics] Registered menus: 8
[10:15:39] [Server thread/INFO]: Done (45.486s)! For help, type "help"
[10:15:39] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2998ms or 59 ticks behind
[10:15:39] [Server thread/INFO]: [WildTools] Loading providers started...
[10:15:39] [Server thread/INFO]: [WildTools]  - Using EconomyShopGUI as PricesProvider.
[10:15:39] [Server thread/INFO]: [WildTools]  - Couldn't find any factions providers for tnt banks, using default one.
[10:15:39] [Server thread/INFO]: [WildTools] Using Vault as an economy provider.
[10:15:39] [Server thread/INFO]: [WildTools] Loading providers done (Took 26ms)
[10:15:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15.2-b216e2b]
[10:15:39] [Server thread/INFO]: [Quests] Successfully hooked into Essentials economy.
[10:15:39] [Server thread/INFO]: [Quests] 47 task types have been registered.
[10:15:39] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[10:15:39] [Server thread/INFO]: [Quests] 71 quests have been registered.
[10:15:39] [Server thread/INFO]: [GravesX] Registering Crash Handler...
[10:15:39] [Server thread/INFO]: [GravesX] Registered Crash Handler. Server will handle crashes in a separate thread.
[10:15:39] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[10:15:48] [User Authenticator #0/INFO]: UUID of player Sentaku_Yujo is f3fdf283-586a-4b81-baa3-cd511101ceea
[10:15:51] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo Sentaku_Yujo cp welcome_screen
[10:15:51] [Server thread/INFO]: Forcing Sentaku_Yujo to run: /cp welcome_screen
[10:15:51] [Server thread/INFO]: Error: Player not found.
[10:15:51] [Server thread/INFO]: [DiscordSRV] Player Sentaku_Yujo joined with silent joining permission, not sending a join message
[10:15:51] [Server thread/INFO]: Sentaku_Yujo[/127.0.0.1:51616] logged in with entity id 619 at ([Aetheria]199.14227586143417, 73.0, -70.27087956079737)
[10:15:51] [Server thread/INFO]: [+]  Sentaku_Yujo ʜᴀꜱ ᴄᴏɴɴᴇᴄᴛᴇᴅ.
[10:15:55] [Server thread/INFO]: Sentaku_Yujo issued server command: /menu
[10:16:02] [Server thread/INFO]: Sentaku_Yujo issued server command: /citizens reload
[10:16:02] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 9ba9bdab-3c7d-2356-b9a9-75b5840de68f
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 776b1e17-7e39-2e2e-8215-a80901321cc2
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 14c77850-777a-2552-98e3-ccebb932cb0f
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5998dc81-3129-2175-b704-f710df67b55c
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances dfd36e82-e89b-2215-a677-a27a86fc8232
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances f45a7f82-383e-2241-9275-bf9c32915800
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances f5aa58e0-4e99-2e0c-b2a4-6fea7951a764
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 8d656f24-ccbc-2c12-b5b2-767f4997a364
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances f9a8e821-ce03-2cd7-a415-d1042c89575d
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 16596015-e207-2fda-8970-01b904645041
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 0395cbdd-cc5b-2bca-b59a-f553f0504ee4
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5c7e8c9d-c48d-2080-b563-9a68c0bf733b
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 479bb2b6-6bcf-208f-9922-47c1a9cc33b3
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 9acf67f9-8ef3-2d44-b27f-742cebe9344e
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 9ce09a2e-dc46-2d4f-8889-6b1cb8013179
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances f7496069-69b9-2945-b9fe-d41104260ee7
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances debf0f14-c43d-2b59-89ad-2beadee2c71a
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 93cd979a-ed72-2030-a375-9077763b14e8
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances fa51b1af-e18e-265d-b51f-856a287c5331
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances dff922d9-76f9-2614-a86b-c1b1c1f2ea5c
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances b2d70e92-29d9-21e3-9655-1adbdccfa2df
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 3b89cb78-b70b-27ca-a3d2-6c4eb951e5ec
[10:16:02] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 817cc691-1254-243e-86cb-6a04f545c3a9
[10:16:29] [Server thread/INFO]: Stopping the server
[10:16:29] [Server thread/INFO]: Stopping server
[10:16:29] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.10.1
[10:16:29] [pool-106-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[10:16:29] [pool-106-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[10:16:29] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[10:16:29] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[10:16:29] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 disabled.
[10:16:29] [Server thread/INFO]: [ajParkour] Disabling ajParkour v2.12.10
[10:16:29] [Server thread/INFO]: [ajParkour] Removing all active players from parkour because the plugin is disabling.
[10:16:29] [Server thread/INFO]: ajParkour v2.12.10 by ajgeiss0702 has been disabled!
[10:16:29] [Server thread/INFO]: [AuraSkills] Disabling AuraSkills v2.3.5
[10:16:29] [Server thread/INFO]: [CommandPanels] Disabling CommandPanels v3.23.3
[10:16:29] [Server thread/INFO]: RockyHawk's CommandPanels Plugin Disabled, aww man.
[10:16:29] [Server thread/INFO]: [ConditionalEvents] Disabling ConditionalEvents v4.65.1
[10:16:29] [Server thread/INFO]: [ConditionalEvents] Has been disabled! Version: 4.65.1
[10:16:29] [Server thread/INFO]: [DeathMessages] Disabling DeathMessages v1.4.20
[10:16:29] [Server thread/INFO]: [DeluxeTags] Disabling DeluxeTags v1.8.2-Release
[10:16:29] [Server thread/INFO]: [EasyCommandBlocker] Disabling EasyCommandBlocker v1.14.3
[10:16:29] [Server thread/INFO]: [EasyCommandBlocker] Has been disabled! Version: 1.14.3
[10:16:29] [Server thread/INFO]: [EconomyShopGUI] Disabling EconomyShopGUI v6.14.4
[10:16:29] [Server thread/INFO]: [eGlow] Disabling eGlow v3.4.3
[10:16:29] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion eglow
[10:16:29] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin eGlow was disabled.
[10:16:29] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.21.2
[10:16:29] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v6.3.3
[10:16:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentCratesPool - Shutdown initiated...
[10:16:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentCratesPool - Shutdown completed.
[10:16:29] [Server thread/INFO]: [ExcellentEnchants] Disabling ExcellentEnchants v4.3.3
[10:16:29] [Server thread/INFO]: [GravesX] Disabling GravesX v4.9.8.2
[10:16:29] [Server thread/INFO]: [GravesX] Saving Grave inventories before shutting down...
[10:16:29] [Server thread/INFO]: [GravesX] Grave inventories saved.
[10:16:29] [Server thread/INFO]: [GravesX] Shutting Down GravesX...
[10:16:29] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Shutdown initiated...
[10:16:29] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Shutdown completed.
[10:16:29] [Server thread/INFO]: [GravesX] Unloading GraveManager...
[10:16:29] [Server thread/INFO]: [GravesX] Unloaded GraveManager Successfully.
[10:16:29] [Server thread/INFO]: [GravesX] Unloading IntegrationManager...
[10:16:29] [Server thread/INFO]: [GravesX] Unloaded IntegrationManager Successfully.
[10:16:29] [Server thread/INFO]: [GravesX] Unloading RecipeManager...
[10:16:29] [Server thread/INFO]: [GravesX] Unloaded RecipeManager Successfully.
[10:16:29] [Server thread/INFO]: [GravesX] Shutdown Completed :)
[10:16:29] [Server thread/INFO]: [Infiniteannouncements] Disabling Infiniteannouncements v2.5.0
[10:16:29] [Server thread/INFO]: [Jobs] Disabling Jobs v5.2.6.1
[10:16:29] [Server thread/INFO]: ------------- Jobs -------------
[10:16:29] [Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
[10:16:29] [Server thread/INFO]: Cleared boss bar cache
[10:16:29] [Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
[10:16:29] [Server thread/INFO]: Saved player data
[10:16:29] [Server thread/INFO]: Closed database connection
[10:16:29] [Server thread/INFO]: ------------------------------------
[10:16:29] [Server thread/INFO]: [LevelledMobs] Disabling LevelledMobs v4.3.2.1 b125
[10:16:29] [Server thread/INFO]: [LevelledMobs] Unregistering commands
[10:16:29] [Server thread/INFO]: [LevelledMobs] Tasks: Shutting down other async tasks...
[10:16:29] [Server thread/INFO]: [LevelledMobs] Shut-down complete (took 1ms)
[10:16:29] [Craft Scheduler Thread - 19 - LevelledMobs/INFO]: [LevelledMobs] Mob processing queue Manager has exited
[10:16:29] [Craft Scheduler Thread - 29 - LevelledMobs/INFO]: [LevelledMobs] Nametag update queue Manager has exited
[10:16:29] [Server thread/INFO]: [LuxDialoguesTWAddon] Disabling LuxDialoguesTWAddon v1.2.1
[10:16:29] [Server thread/INFO]: [MagicCosmetics] Disabling MagicCosmetics v3.1.1
[10:16:29] [Server thread/INFO]: [MagicCosmetics] Data for 0 NPCs have been saved.
[10:16:29] [Server thread/INFO]: [MineXFarmRegen] Disabling MineXFarmRegen v6.1.2
[10:16:29] [Server thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.1.5
[10:16:29] [Server thread/INFO]: [Quests] Disabling Quests v3.15.2-b216e2b
[10:16:29] [Server thread/INFO]: [PlayerAuctions] Disabling PlayerAuctions v1.31.1
[10:16:29] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.io.File.exists()" because "this.file" is null
[10:16:29] [Server thread/WARN]:     at com.olziedev.playerauctions.product.ProductConverter.unload(ProductConverter.java:94)
[10:16:29] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[10:16:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.b(PluginExpansionManager.java:305)
[10:16:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.b.c.shutdownExpansions(PluginExpansionManager.java:298)
[10:16:29] [Server thread/WARN]:     at PlayerAuctions.jar//com.olziedev.playerauctions.PlayerAuctions.onDisable(PlayerAuctions.java:86)
[10:16:29] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286)
[10:16:29] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237)
[10:16:29] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:161)
[10:16:29] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:97)
[10:16:29] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:541)
[10:16:29] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:627)
[10:16:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:1007)
[10:16:29] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:757)
[10:16:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1294)
[10:16:29] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[10:16:29] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[10:16:29] [Server thread/INFO]: [PlayerKits2] Disabling PlayerKits2 v1.18.3
[10:16:29] [Server thread/INFO]: [PlayerKits²] Has been disabled! Version: 1.18.3
[10:16:29] [Server thread/INFO]: [PlayerProfiles] Disabling PlayerProfiles v8.0.3
[10:16:29] [Server thread/INFO]: [ProtectionStones] Disabling ProtectionStones v2.10.5
[10:16:29] [Server thread/INFO]: [ResourcePackBroadcast] Disabling ResourcePackBroadcast v1.0.5
[10:16:29] [Server thread/INFO]: [Shopkeepers] Disabling Shopkeepers v2.23.10
[10:16:30] [Server thread/INFO]: [sleep-most] Disabling sleep-most v5.5.3
[10:16:30] [Server thread/INFO]: [TAB-Additions] Disabling TAB-Additions v2.1.3
[10:16:30] [Server thread/INFO]: [Tebex] Disabling Tebex v2.2.1
[10:16:30] [Server thread/INFO]: [TerraformGenerator] Disabling TerraformGenerator v21.0.0
[10:16:30] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v2.6.3
[10:16:30] [Server thread/INFO]:  
[10:16:30] [Server thread/INFO]: __________________________________________________________
[10:16:30] [Server thread/INFO]:  
[10:16:30] [Server thread/INFO]:                        TradeSystem [2.6.3]
[10:16:30] [Server thread/INFO]:  
[10:16:30] [Server thread/INFO]: Status:
[10:16:30] [Server thread/INFO]:  
[10:16:30] [Server thread/INFO]: MC-Version: Paper (1.21.4)
[10:16:30] [Server thread/INFO]:  
[10:16:30] [Server thread/INFO]:   > Cancelling all active trades
[10:16:30] [Server thread/INFO]:  
[10:16:30] [Server thread/INFO]: Finished (1ms)
[10:16:30] [Server thread/INFO]:  
[10:16:30] [Server thread/INFO]: __________________________________________________________
[10:16:30] [Server thread/INFO]:  
[10:16:30] [Server thread/INFO]: [UltraRepair] Disabling UltraRepair v4.2.5
[10:16:30] [Server thread/INFO]: UltraRepair v4.2.5 by Demeng has been disabled.
[10:16:30] [Server thread/INFO]: [WildTools] Disabling WildTools v2025.1
[10:16:30] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.9.6
[10:16:30] [Server thread/INFO]: [RoseStacker] Disabling RoseStacker v1.5.35
[10:16:30] [Server thread/INFO]: [EconomyBridge] Disabling EconomyBridge v1.2.1
[10:16:30] [Server thread/INFO]: [CMILib] Disabling CMILib v1.5.6.2
[10:16:30] [Server thread/INFO]: [SimplePets] Disabling SimplePets v5.0-BUILD-282
[10:16:30] [Server thread/INFO]: [SimplePets Debug] Saving player pets (if there are any)
[10:16:30] [Server thread/INFO]: [SimplePets Debug] Generated debug information while disabling
[10:16:30] [Server thread/INFO]: [LuxDialogues] Disabling LuxDialogues v1.2.1
[10:16:30] [Server thread/INFO]: LuxDialogues - Plugin disabled.
[10:16:30] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v4.0.12
[10:16:30] [Server thread/INFO]: [ItemsAdder] Despawned Citizens NPC 26 on ItemsAdder unload.
[10:16:30] [Server thread/INFO]: [TAB] Disabling TAB v5.2.5
[10:16:30] [Server thread/INFO]: [TAB] Disabled in 1ms
[10:16:30] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.30.0
[10:16:30] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Shutdown completed in 328ms
[10:16:30] [Server thread/INFO]: [HeadDatabase] Disabling HeadDatabase v4.21.2
[10:16:30] [Server thread/INFO]: [nightcore] Disabling nightcore v2.7.12.4
[10:16:30] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR4.0.8
[10:16:30] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.2
[10:16:30] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[10:16:30] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.9.5-f13ab4a1
[10:16:30] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[10:16:30] [Server thread/INFO]: [MythicMobs] - 
[10:16:30] [Server thread/INFO]: [MythicMobs] - Unloading Mythic...
[10:16:30] [Server thread/INFO]: [MythicMobs] - 
[10:16:30] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[10:16:30] [Server thread/INFO]: [MythicMobs] - Spawners saved and unloaded...
[10:16:30] [Server thread/INFO]: [MythicMobs] - Mobs saved and unloaded...
[10:16:30] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:16:30] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:16:30] [Server thread/INFO]: [MythicMobs] - Variables saved...
[10:16:30] [Server thread/INFO]: [MythicMobs] - All active settings have been saved!
[10:16:30] [Server thread/INFO]: [MythicMobs] - Mythic has been unloaded!
[10:16:30] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[10:16:30] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:16:30] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:16:30] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3763)
[10:16:30] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v11.0.5
[10:16:30] [Server thread/INFO]: [LibsDisguises] Outdated mappings cache, will rebuild.
[10:16:30] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.13
[10:16:30] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.13+82fdc65
[10:16:30] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[10:16:30] [Server thread/INFO]: [packetevents] Disabling packetevents v2.9.4
[10:16:30] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.6
[10:16:30] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.13.2-SNAPSHOT-1149;107cd07
[10:16:30] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[10:16:30] [Server thread/INFO]: [Geyser-Spigot] Disabling Geyser-Spigot v2.8.2-SNAPSHOT
[10:16:30] [Server thread/INFO]: [Geyser-Spigot] Shutting down Geyser.
[10:16:30] [Server thread/INFO]: [Geyser-Spigot] Geyser shutdown successfully.
[10:16:30] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v5.4.2
[10:16:30] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.4.0-SNAPSHOT-744
[10:16:30] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[10:16:30] [Server thread/INFO]: [floodgate] Disabling floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[10:16:30] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.158
[10:16:30] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[10:16:30] [Server thread/INFO]: [LuckPerms] Closing storage...
[10:16:30] [Server thread/INFO]: [LuckPerms] Goodbye!
[10:16:30] [Server thread/INFO]: [Typewriter] Disabling Typewriter v0.8.0
[10:16:30] [Server thread/INFO]: [WorldGuard] Unregistering session handler com.typewritermc.worldguard.WorldGuardHandler
[10:16:30] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v5.4.2
[10:16:30] [Server thread/INFO]: [ViaVersion] ViaVersion has been disabled; uninjected the platform and shut down the scheduler.
[10:16:30] [Server thread/INFO]: Saving players
[10:16:30] [Server thread/INFO]: Sentaku_Yujo lost connection: Server closed
[10:16:30] [Server thread/INFO]: Sentaku_Yujo left the game
[10:16:30] [WebSocketConnectReadThread-381/INFO]: [Geyser-Spigot] The skin uploader has been closed
[10:16:30] [Server thread/INFO]: Saving worlds
[10:16:30] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world' in 0.15s
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world'
[10:16:30] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'world_nether' in 0.00s
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world_nether'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world_nether'
[10:16:30] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'world_the_end' in 0.00s
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'world_the_end'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'world_the_end'
[10:16:30] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Origin]'/minecraft:origin
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Origin'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Origin'
[10:16:30] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Origin'
[10:16:31] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'Origin' in 0.04s
[10:16:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'Origin'
[10:16:31] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'Origin'
[10:16:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Aetheria]'/minecraft:aetheria
[10:16:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Aetheria'
[10:16:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Aetheria'
[10:16:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Aetheria'
[10:16:31] [Server thread/INFO]: [ChunkHolderManager] Saved 625 block chunks, 625 entity chunks, 0 poi chunks in world 'Aetheria' in 0.12s
[10:16:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'Aetheria'
[10:16:31] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'Aetheria'
[10:16:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[10:16:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[10:16:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[10:16:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (Origin): All chunks are saved
[10:16:31] [Server thread/INFO]: ThreadedAnvilChunkStorage (Aetheria): All chunks are saved
[10:16:31] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[10:16:31] [Server thread/INFO]: Waiting for I/O tasks to complete...
[10:16:31] [Server thread/INFO]: All I/O tasks to complete
[10:16:31] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of worker pool for up to 60s...
[10:16:31] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of I/O pool for up to 60s...