Paste #133897: Citizens Redo

Date: 2025/06/09 13:16:30 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
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642


[15:23:47] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-LTS; Eclipse Adoptium Temurin-21.0.7+6) on Linux 5.15.0-58-generic (amd64)
[15:23:47] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) for Minecraft 1.21.4
[15:23:47] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[15:23:48] [ServerMain/WARN]: [org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper] Failed to get hostname, using 'localhost'
java.net.UnknownHostException: a973a755-35dc-44c4-b09c-37a4becad290: a973a755-35dc-44c4-b09c-37a4becad290: Name or service not known
    at java.base/java.net.InetAddress.getLocalHost(InetAddress.java:1936) ~[?:?]
    at org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper.getHostname(DiscriminatingNameMapper.java:90) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper.<init>(DiscriminatingNameMapper.java:69) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NameMappers.discriminatingNameMapper(NameMappers.java:68) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NamedLockFactoryAdapterFactoryImpl.getManuallyCreatedNameMappers(NamedLockFactoryAdapterFactoryImpl.java:78) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NamedLockFactoryAdapterFactoryImpl.<init>(NamedLockFactoryAdapterFactoryImpl.java:107) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:159) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.DefaultSyncContextFactory.initService(DefaultSyncContextFactory.java:68) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.DefaultMetadataResolver.initService(DefaultMetadataResolver.java:123) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.apache.maven.repository.internal.DefaultVersionResolver.initService(DefaultVersionResolver.java:106) ~[maven-resolver-provider-3.9.6.jar:3.9.6]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.initService(DefaultRepositorySystem.java:158) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.bukkit.plugin.java.LibraryLoader.<init>(LibraryLoader.java:60) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.<clinit>(SpigotPluginProvider.java:38) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.type.PluginFileType.<clinit>(PluginFileType.java:40) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.getPluginName(FileProviderSource.java:148) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:111) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:59) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.lambda$prepareContext$1(DirectoryProviderSource.java:33) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.walkFiles(DirectoryProviderSource.java:64) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:31) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:17) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:14) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.Main.main(Main.java:111) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.net.UnknownHostException: a973a755-35dc-44c4-b09c-37a4becad290: Name or service not known
    at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) ~[?:?]
    at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:52) ~[?:?]
    at java.base/java.net.InetAddress$PlatformResolver.lookupByName(InetAddress.java:1211) ~[?:?]
    at java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1828) ~[?:?]
    at java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:1139) ~[?:?]
    at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1818) ~[?:?]
    at java.base/java.net.InetAddress.getLocalHost(InetAddress.java:1931) ~[?:?]
    ... 60 more
[15:23:49] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens.jar'...
[15:23:50] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens.jar' in 1482ms.
[15:23:51] [ServerMain/WARN]: [org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper] Failed to get hostname, using 'localhost'
java.net.UnknownHostException: a973a755-35dc-44c4-b09c-37a4becad290: a973a755-35dc-44c4-b09c-37a4becad290: Name or service not known
    at java.base/java.net.InetAddress.getLocalHost(InetAddress.java:1936) ~[?:?]
    at org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper.getHostname(DiscriminatingNameMapper.java:90) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper.<init>(DiscriminatingNameMapper.java:69) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NameMappers.discriminatingNameMapper(NameMappers.java:68) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NamedLockFactoryAdapterFactoryImpl.getManuallyCreatedNameMappers(NamedLockFactoryAdapterFactoryImpl.java:78) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NamedLockFactoryAdapterFactoryImpl.<init>(NamedLockFactoryAdapterFactoryImpl.java:107) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:159) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.DefaultSyncContextFactory.initService(DefaultSyncContextFactory.java:68) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.DefaultMetadataResolver.initService(DefaultMetadataResolver.java:123) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.apache.maven.repository.internal.DefaultVersionResolver.initService(DefaultVersionResolver.java:106) ~[maven-resolver-provider-3.9.6.jar:3.9.6]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.initService(DefaultRepositorySystem.java:158) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at io.papermc.paper.plugin.loader.library.impl.MavenLibraryResolver.<init>(MavenLibraryResolver.java:73) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at nightcore-2.7.6.1.jar/su.nightexpress.nightcore.NightCoreLoader.classloader(NightCoreLoader.java:14) ~[nightcore-2.7.6.1.jar:?]
    at io.papermc.paper.plugin.provider.type.paper.PaperPluginProviderFactory.build(PaperPluginProviderFactory.java:38) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.type.paper.PaperPluginProviderFactory.build(PaperPluginProviderFactory.java:23) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.type.PluginFileType.register(PluginFileType.java:72) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:95) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.Main.main(Main.java:111) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.net.UnknownHostException: a973a755-35dc-44c4-b09c-37a4becad290: Name or service not known
    at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) ~[?:?]
    at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:52) ~[?:?]
    at java.base/java.net.InetAddress$PlatformResolver.lookupByName(InetAddress.java:1211) ~[?:?]
    at java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1828) ~[?:?]
    at java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:1139) ~[?:?]
    at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1818) ~[?:?]
    at java.base/java.net.InetAddress.getLocalHost(InetAddress.java:1931) ~[?:?]
    ... 47 more
[15:23:51] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[15:23:51] [ServerMain/WARN]: [org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper] Failed to get hostname, using 'localhost'
java.net.UnknownHostException: a973a755-35dc-44c4-b09c-37a4becad290: a973a755-35dc-44c4-b09c-37a4becad290: Name or service not known
    at java.base/java.net.InetAddress.getLocalHost(InetAddress.java:1936) ~[?:?]
    at org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper.getHostname(DiscriminatingNameMapper.java:90) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper.<init>(DiscriminatingNameMapper.java:69) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NameMappers.discriminatingNameMapper(NameMappers.java:68) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NamedLockFactoryAdapterFactoryImpl.getManuallyCreatedNameMappers(NamedLockFactoryAdapterFactoryImpl.java:78) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NamedLockFactoryAdapterFactoryImpl.<init>(NamedLockFactoryAdapterFactoryImpl.java:107) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:159) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.DefaultSyncContextFactory.initService(DefaultSyncContextFactory.java:68) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.DefaultMetadataResolver.initService(DefaultMetadataResolver.java:123) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.apache.maven.repository.internal.DefaultVersionResolver.initService(DefaultVersionResolver.java:106) ~[maven-resolver-provider-3.9.6.jar:3.9.6]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.initService(DefaultRepositorySystem.java:158) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at io.papermc.paper.plugin.loader.library.impl.MavenLibraryResolver.<init>(MavenLibraryResolver.java:73) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at LogFilter-Paper-3.0.6.jar/me.adrianed.logfilter.paper.LogLoader.classloader(LogLoader.java:15) ~[LogFilter-Paper-3.0.6.jar:?]
    at io.papermc.paper.plugin.provider.type.paper.PaperPluginProviderFactory.build(PaperPluginProviderFactory.java:38) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.type.paper.PaperPluginProviderFactory.build(PaperPluginProviderFactory.java:23) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.type.PluginFileType.register(PluginFileType.java:72) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:95) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at net.minecraft.server.Main.main(Main.java:111) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.net.UnknownHostException: a973a755-35dc-44c4-b09c-37a4becad290: Name or service not known
    at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) ~[?:?]
    at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:52) ~[?:?]
    at java.base/java.net.InetAddress$PlatformResolver.lookupByName(InetAddress.java:1211) ~[?:?]
    at java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1828) ~[?:?]
    at java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:1139) ~[?:?]
    at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1818) ~[?:?]
    at java.base/java.net.InetAddress.getLocalHost(InetAddress.java:1931) ~[?:?]
    ... 47 more
[15:23:52] [ServerMain/INFO]: [PluginInitializerManager] Initialized 75 plugins
[15:23:52] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (4):
 - Gaia (2.0.4), LogFilter (3.0.6), PCGF_PluginLib (1.0.39.9-SNAPSHOT), nightcore (2.7.6.1)
[15:23:52] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (71):
 - AFKPlus (3.4.9), AFKPlusPrefix (1.3.5), AFKPlusRandomMessages (1.0.2), AdvancedPortals (2.5.0), Afkpluspapi (1.0.2), AltDetector (2.03), AnnouncerPlus (1.4.1), AutomaticBroadcast (1.9.0), BetterTeams (4.13.1), BugReport (0.13.0), ChatManager (4.0.3), Chunky (1.4.28), ChunkyBorder (1.2.23), Citizens (2.0.37-SNAPSHOT (build 3692)), CoreProtect (23.2-RC3), DailyRewardsPlus (1.4.6), DecentHolograms (2.8.17), DeluxeForms (1.4), DeluxeMenus (1.14.1-Release), DiscordSRV (1.29.0), EconomyBridge (1.2.1), Essentials (2.21.0), ExcellentCrates (6.2.0), ExcellentEnchants (4.3.3), ExcellentShop (4.16.3), FarmControl (1.3.0), GeoLocation (1.1), GravesX (4.9.7.3), IllegalStack (2.9.12a), InventoryRollbackPlus (1.7.3), ItemEdit (3.7.1), ItemJoin (6.1.3-RELEASE-b1085), LWC (2.4.0), LiteBans (2.17.2), LuckPerms (5.5.2), Minepacks (2.4.31.7-T20250421155916), Multiverse-Core (4.3.14), Multiverse-Inventories (4.2.6), Multiverse-Portals (4.2.3), MyCommand (5.7.5), NBTAPI (2.15.0), Orebfuscator (5.5.2), PAPIProxyBridge (1.8.1-3ca29f3), PhatLoots (5.6.7), PlaceholderAPI (2.11.6), PlayerPoints (3.3.2), PlayerStats (2.3), PlotSquared (7.5.3-Premium), Prison (3.3.0-alpha.19h), ProtocolLib (5.4.0-SNAPSHOT-748), PvPManager (3.39.4), RevEnchants (15.7), RevWEGApi (1.1), SimplePortals (1.7.6), SternalBoard (2.3.2), TigerReports (5.3.5), TigerReportsSupports (1.6.13), Vault (1.7.3-b131), VentureChat (3.7.1), ViaBackwards (5.3.2), ViaVersion (5.3.2), VotingPlugin (6.18.5-SNAPSHOT), Vulcan (2.9.6.1), WorldBorder (1.8.7), WorldEdit (7.3.14+7149-8bea01b), WorldGuard (7.0.13+82fdc65), WorldGuardExtraFlags (4.2.4-SNAPSHOT), XConomy (2.26.3), floodgate (2.2.4-SNAPSHOT (b116-0e3163c)), kotlin-stdlib (1.9.10), packetevents (2.8.0)
[15:23:56] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:23:56] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[15:23:56] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 274.3ms
[15:23:57] [ServerMain/INFO]: Loaded 1370 recipes
[15:23:57] [ServerMain/INFO]: Loaded 1481 advancements
[15:23:58] [Server thread/INFO]: Starting minecraft server version 1.21.4
[15:23:58] [Server thread/INFO]: Loading properties
[15:23:58] [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)
[15:23:58] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[15:23:58] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:23:58] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:23:58] [Server thread/INFO]: [MoonriseCommon] Paper is using 8 worker threads, 1 I/O threads
[15:23:58] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[15:23:58] [Server thread/INFO]: Default game type: SURVIVAL
[15:23:58] [Server thread/INFO]: Generating keypair
[15:23:58] [Server thread/INFO]: Starting Minecraft server on 173.240.148.4:25565
[15:23:58] [Server thread/INFO]: Using epoll channel type
[15:23:58] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[15:23:58] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[15:23:59] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loading 1 libraries... please wait
[15:23:59] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[15:23:59] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[15:23:59] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[15:23:59] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[15:23:59] [Server thread/INFO]: [SpigotLibraryLoader] [XConomy] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[15:23:59] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[15:24:09] [Server thread/WARN]: Legacy plugin WorldBorder v1.8.7 does not specify an api-version.
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[15:24:09] [Server thread/WARN]: Legacy plugin RevWEGApi v1.1 does not specify an api-version.
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loading 4 libraries... please wait
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.12/fastutil-8.5.12.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[15:24:09] [Server thread/WARN]: Legacy plugin RevEnchants v15.7 does not specify an api-version.
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-api/4.20.0/adventure-api-4.20.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-key/4.20.0/adventure-key-4.20.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.20.0/adventure-text-minimessage-4.20.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.20.0/adventure-text-serializer-gson-4.20.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.20.0/adventure-text-serializer-json-4.20.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-commons/4.20.0/adventure-text-serializer-commons-4.20.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.20.0/adventure-text-serializer-legacy-4.20.0.jar
[15:24:09] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loading 2 libraries... please wait
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/9.1.0/mysql-connector-j-9.1.0.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/4.26.1/protobuf-java-4.26.1.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.46.0.0/sqlite-jdbc-3.46.0.0.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loading 2 libraries... please wait
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/io/lettuce/lettuce-core/6.5.2.RELEASE/lettuce-core-6.5.2.RELEASE.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/io/netty/netty-common/4.1.115.Final/netty-common-4.1.115.Final.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/io/netty/netty-handler/4.1.115.Final/netty-handler-4.1.115.Final.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/io/netty/netty-resolver/4.1.115.Final/netty-resolver-4.1.115.Final.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/io/netty/netty-buffer/4.1.115.Final/netty-buffer-4.1.115.Final.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/io/netty/netty-transport-native-unix-common/4.1.115.Final/netty-transport-native-unix-common-4.1.115.Final.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/io/netty/netty-codec/4.1.115.Final/netty-codec-4.1.115.Final.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/io/netty/netty-transport/4.1.115.Final/netty-transport-4.1.115.Final.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/io/projectreactor/reactor-core/3.6.6/reactor-core-3.6.6.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/de/exlll/configlib-yaml/4.5.0/configlib-yaml-4.5.0.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/de/exlll/configlib-core/4.5.0/configlib-core-4.5.0.jar
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [PAPIProxyBridge] Loaded library /home/container/libraries/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar
[15:24:10] [Server thread/WARN]: Legacy plugin kotlin-stdlib v1.9.10 does not specify an api-version.
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [DeluxeForms] Loading 1 libraries... please wait
[15:24:10] [Server thread/INFO]: [SpigotLibraryLoader] [DeluxeForms] Loaded library /home/container/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[15:24:10] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.2
[15:24:10] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.2 is now loaded. Registering protocol transformers and injecting...
[15:24:10] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[15:24:10] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[15:24:11] [Server thread/INFO]: [ViaBackwards] Loading translations...
[15:24:11] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[15:24:11] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.2
[15:24:11] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[15:24:11] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.17.2
[15:24:11] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[15:24:11] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.14+7149-8bea01b
[15:24:13] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7bf4501d]
[15:24:13] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0
[15:24:13] [Server thread/INFO]: [XConomy] Loading server plugin XConomy v2.26.3
[15:24:13] [Server thread/INFO]: [PlotSquared] Loading server plugin PlotSquared v7.5.3-Premium
[15:24:13] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-748
[15:24:13] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.6.1
[15:24:13] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.3.2
[15:24:13] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[15:24:13] [Server thread/INFO]: [VentureChat] Loading server plugin VentureChat v3.7.1
[15:24:13] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[15:24:13] [Server thread/INFO]: [EconomyBridge] Loading server plugin EconomyBridge v1.2.1
[15:24:13] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.8.0
[15:24:14] [Server thread/INFO]: [WorldBorder] Loading server plugin WorldBorder v1.8.7
[15:24:14] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[15:24:14] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3692)
[15:24:14] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v6.2.0
[15:24:14] [Server thread/INFO]: [Multiverse-Inventories] Loading server plugin Multiverse-Inventories v4.2.6
[15:24:14] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
[15:24:14] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.15.0
[15:24:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[15:24:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[15:24:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[15:24:14] [Server thread/INFO]: [TigerReports] Loading server plugin TigerReports v5.3.5
[15:24:14] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[15:24:14] [Thread-14/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[15:24:15] [Server thread/INFO]: [floodgate] Took 718ms to boot Floodgate
[15:24:15] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.2-RC3
[15:24:15] [Server thread/INFO]: [RevWEGApi] Loading server plugin RevWEGApi v1.1
[15:24:15] [Server thread/INFO]: [RevWEGApi] runrunrunrunrun 
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevWEGApi) registered successfully
[15:24:15] [Server thread/WARN]: Nag author(s): '[RevilsTeam]' of 'RevWEGApi v1.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevEnchants-Mine) registered successfully
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevEnchants-Explosive) registered successfully
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevEnchants-JackHammer) registered successfully
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevEnchants-AutoMine) registered successfully
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevEnchants-AutoMiner) registered successfully
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevEnchants-Laser) registered successfully
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevEnchants-ThorHammer) registered successfully
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevEnchants-MeteorShower) registered successfully
[15:24:15] [Server thread/INFO]: [RevWEGApi] [STDOUT] [RevWEGApi] new world guard flag (RevEnchants-Nuke) registered successfully
[15:24:15] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.17
[15:24:15] [Server thread/INFO]: [AFKPlus] Loading server plugin AFKPlus v3.4.9
[15:24:15] [Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v4.3.3
[15:24:15] [Server thread/INFO]: [PCGF_PluginLib] Loading server plugin PCGF_PluginLib v1.0.39.9-SNAPSHOT
[15:24:15] [Server thread/INFO]: [PlayerStats] Loading server plugin PlayerStats v2.3
[15:24:15] [Server thread/INFO]: [ExcellentShop] Loading server plugin ExcellentShop v4.16.3
[15:24:15] [Server thread/INFO]: [Gaia] Loading server plugin Gaia v2.0.4
[15:24:15] [Server thread/INFO]: [LogFilter] Loading server plugin LogFilter v3.0.6
[15:24:15] [Server thread/INFO]: [LogFilter] Loading filter
[15:24:16] [Server thread/INFO]: [LogFilter] Correctly loaded Regular filter
[15:24:16] [Server thread/INFO]: [PhatLoots] Loading server plugin PhatLoots v5.6.7
[15:24:16] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v6.1.3-RELEASE-b1085
[15:24:16] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.2.23
[15:24:16] [Server thread/INFO]: [AutomaticBroadcast] Loading server plugin AutomaticBroadcast v1.9.0
[15:24:16] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.39.4
[15:24:16] [Server thread/INFO]: [IllegalStack] Loading server plugin IllegalStack v2.9.12a
[15:24:16] [Server thread/INFO]: [TigerReportsSupports] Loading server plugin TigerReportsSupports v1.6.13
[15:24:16] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-Release
[15:24:16] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version! The following Item options will not work: nbt_int, nbt_ints, nbt_string and nbt_strings.
[15:24:16] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18.5-SNAPSHOT
[15:24:16] [Server thread/INFO]: [GravesX] Loading server plugin GravesX v4.9.7.3
[15:24:16] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.6.1
[15:24:16] [Server thread/INFO]: [RevEnchants] Loading server plugin RevEnchants v15.7
[15:24:16] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v2.5.0
[15:24:16] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.3
[15:24:16] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[15:24:16] [Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.13.1
[15:24:16] [Server thread/INFO]: [BetterTeams] [BetterTeams] Checking if the file config.yml is up to date
[15:24:16] [Server thread/INFO]: [BetterTeams] [BetterTeams] File is up to date
[15:24:16] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.7.1
[15:24:16] [Server thread/INFO]: [SimplePortals] Loading server plugin SimplePortals v1.7.6
[15:24:16] [Server thread/INFO]: [AltDetector] Loading server plugin AltDetector v2.03
[15:24:16] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.3.2
[15:24:16] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.4.7
[15:24:16] [Server thread/INFO]: [PAPIProxyBridge] Loading server plugin PAPIProxyBridge v1.8.1-3ca29f3
[15:24:16] [Server thread/INFO]: [AFKPlusRandomMessages] Loading server plugin AFKPlusRandomMessages v1.0.2
[15:24:16] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.5.2
[15:24:16] [Server thread/INFO]: [kotlin-stdlib] Loading server plugin kotlin-stdlib v1.9.10
[15:24:16] [Server thread/INFO]: [AnnouncerPlus] Loading server plugin AnnouncerPlus v1.4.1
[15:24:16] [Server thread/INFO]: [DeluxeForms] Loading server plugin DeluxeForms v1.4
[15:24:16] [Server thread/INFO]: [AFKPlusPrefix] Loading server plugin AFKPlusPrefix v1.3.5
[15:24:16] [Server thread/INFO]: [SternalBoard] Loading server plugin SternalBoard v2.3.2
[15:24:16] [Server thread/INFO]: [DailyRewardsPlus] Loading server plugin DailyRewardsPlus v1.4.6
[15:24:16] [Server thread/INFO]: [Prison] Loading server plugin Prison v3.3.0-alpha.19h
[15:24:16] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.5
[15:24:16] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.7-T20250421155916
[15:24:16] [Server thread/INFO]: [Afkpluspapi] Loading server plugin Afkpluspapi v1.0.2
[15:24:16] [Server thread/INFO]: [LWC] Loading server plugin LWC v2.4.0
[15:24:16] [Server thread/INFO]: [GeoLocation] Loading server plugin GeoLocation v1.1
[15:24:16] [Server thread/INFO]: [ChatManager] Loading server plugin ChatManager v4.0.3
[15:24:16] [Server thread/INFO]: [FarmControl] Loading server plugin FarmControl v1.3.0
[15:24:16] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.7.3
[15:24:16] [Server thread/INFO]: [BugReport] Loading server plugin BugReport v0.13.0
[15:24:16] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:24:16] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.2
[15:24:17] [Server thread/INFO]:         __    
[15:24:17] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.2
[15:24:17] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[15:24:17] [Server thread/INFO]: 
[15:24:17] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:24:17] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[15:24:17] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[15:24:17] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[15:24:18] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[15:24:19] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:24:19] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:24:19] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3673ms)
[15:24:19] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[15:24:19] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[15:24:19] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:24:19] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[15:24:19] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:24:19] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.14+7149-8bea01b
[15:24:20] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:24:20] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:24:20] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21_4.PaperweightAdapter as the Bukkit adapter
[15:24:20] [Server thread/INFO]: [XConomy] Enabling XConomy v2.26.3
[15:24:20] [Server thread/INFO]: [XConomy] UUID-Mode: Default
[15:24:20] [Server thread/INFO]: [XConomy] Language: ENGLISH
[15:24:20] [Server thread/INFO]: [XConomy] Saving method - MySQL
[15:24:20] [Server thread/INFO]: [XConomy] MySQL successfully connected
[15:24:20] [Server thread/INFO]: [XConomy] XConomy successfully enabled
[15:24:20] [Server thread/INFO]: [XConomy] Found PlaceholderAPI
[15:24:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: xconomy [2.26.3]
[15:24:20] [Server thread/INFO]: [XConomy] PlaceholderAPI successfully hooked
[15:24:21] [Server thread/INFO]: [XConomy] ===== YiC =====
[15:24:21] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.5.3-Premium
[15:24:21] [Folia Async Scheduler Thread #0/INFO]: [XConomy] Is the latest version
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: en
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[15:24:21] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 1807978
[15:24:21] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[15:24:21] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: -19085102
[15:24:21] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[15:24:21] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: MySQL
[15:24:21] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[15:24:22] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[15:24:22] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using EssentialsX as a complementary UUID service
[15:24:22] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 19 UUIDs will be cached
[15:24:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [3]
[15:24:22] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[15:24:22] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-748
[15:24:22] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.6.1
[15:24:22] [Server thread/INFO]: [nightcore] Server version detected as 1.21.4. Using paper-bridge.
[15:24:22] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[15:24:22] [Server thread/INFO]: [nightcore] Found economy provider: XConomy
[15:24:22] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:24:22] [Server thread/INFO]: [nightcore] Time zone set as America/New_York
[15:24:22] [Server thread/INFO]: [nightcore] Plugin loaded in 97 ms!
[15:24:22] [Server thread/INFO]: [EconomyBridge] Enabling EconomyBridge v1.2.1
[15:24:22] [Server thread/INFO]: [EconomyBridge] Powered by nightcore
[15:24:22] [Server thread/INFO]: [EconomyBridge] Item Handler registered: 'dummy'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Item Handler registered: 'excellentcrates'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Vault detected! Loading currency...
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'vault'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_points'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_level'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'gold'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'diamond'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'emerald'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'endcrystal'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'tokens'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'legenddust'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'enchantedapple'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'tokenring'.
[15:24:22] [Server thread/ERROR]: Tried to load invalid item: 'Not a map: 1 missed input: {"minecraft:custom_model_data":1}'
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'fairydust'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'wizardmagic'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'dragonfire'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'bone'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'shulkershell'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'wandbits'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'cluster'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'shard'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Currency registered: 'specialapple'.
[15:24:22] [Server thread/INFO]: [EconomyBridge] Plugin loaded in 122 ms!
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v4.3.3
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Powered by nightcore
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Loaded 6 rarities.
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: auto_reel
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_catch
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: seasoned_angler
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: survivalist
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: river_master
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blast_mining
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: divine_touch
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: telekinesis
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: tunnel
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: veinminer
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: swiper
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thrifty
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: elemental_protection
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: fire_shield
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rebound
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: stopping_force
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lingering
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flare
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: soulbound
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: restore
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 41
[15:24:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [4.3.3]
[15:24:22] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 275 ms!
[15:24:22] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v6.1.3-RELEASE-b1085
[15:24:22] [Server thread/INFO]: [ItemJoin] Loading SQL driver: 9.1 (com.mysql.cj.jdbc.Driver)
[15:24:22] [Server thread/INFO]: [ItemJoin] Connected to MySQL database successfully (4.2 ms).
[15:24:23] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.3.2
[15:24:23] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:24:23] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:24:23] [Server thread/INFO]: [PlayerPoints] Data handler connected using MySQL.
[15:24:23] [Server thread/INFO]: [PlayerPoints] Vault enabled with priority set to Low
[15:24:23] [Server thread/INFO]: [EconomyBridge] PlayerPoints detected! Loading currency...
[15:24:23] [Server thread/INFO]: [EconomyBridge] Currency registered: 'playerpoints'.
[15:24:23] [Server thread/INFO]: [kotlin-stdlib] Enabling kotlin-stdlib v1.9.10*
[15:24:23] [Server thread/INFO]: [LWC] Enabling LWC v2.4.0
[15:24:23] [Server thread/INFO]: [LWC] Connecting to SQLite
[15:24:23] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[15:24:23] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[15:24:23] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[15:24:23] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[15:24:23] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[15:24:23] [Server thread/INFO]: Preparing level "KingdomGateway"
[15:24:24] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:24:24] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:25] [Server thread/INFO]: Preparing spawn area: 2%
[15:24:25] [Server thread/INFO]: Time elapsed: 712 ms
[15:24:25] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:24:25] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:25] [Server thread/INFO]: Time elapsed: 71 ms
[15:24:25] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.2
[15:24:25] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[15:24:25] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.17.2
[15:24:25] [Server thread/WARN]: [LiteBans] The duration limit group "apprentice" does not have the "tempban" option specified.
Note that tempban/tempmute durations will default to 27 seconds and the permission will default to none.
[15:24:25] [Server thread/INFO]: [LiteBans] Using system locale (en)
[15:24:25] [Server thread/INFO]: [LiteBans] Loaded 21 templates from templates.yml!
[15:24:25] [Server thread/INFO]: [LiteBans] Loading: mysql 8.0.29
[15:24:25] [Server thread/INFO]: [LiteBans] Connecting to database...
[15:24:25] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (137.7 ms).
[15:24:25] [Server thread/INFO]: [LiteBans] Database connection fully initialized (194.9 ms).
[15:24:25] [Server thread/INFO]: [LiteBans] v2.17.2 enabled. Startup took 198 ms.
[15:24:25] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[15:24:26] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0
[15:24:26] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[15:24:26] [Server thread/INFO]: [Essentials] No kits found to migrate.
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[15:24:26] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[15:24:26] [Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[15:24:26] [Server thread/INFO]: [Essentials] Using locale en_US
[15:24:27] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[15:24:27] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[15:24:27] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[15:24:27] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[15:24:27] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.3.2
[15:24:27] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[15:24:27] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.14" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[15:24:27] [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.
[15:24:27] [Server thread/INFO]: Preparing start region for dimension minecraft:wizardhideout
[15:24:27] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:27] [Server thread/INFO]: Time elapsed: 114 ms
[15:24:27] [Server thread/INFO]: Preparing start region for dimension minecraft:bank
[15:24:27] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:28] [Server thread/INFO]: Time elapsed: 70 ms
[15:24:28] [Server thread/INFO]: Preparing start region for dimension minecraft:thewilds
[15:24:28] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:28] [Server thread/INFO]: Time elapsed: 55 ms
[15:24:28] [Server thread/INFO]: Preparing start region for dimension minecraft:fairyland
[15:24:28] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:28] [Server thread/INFO]: Time elapsed: 196 ms
[15:24:28] [Server thread/INFO]: Preparing start region for dimension minecraft:prisonarena
[15:24:28] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:28] [Server thread/INFO]: Time elapsed: 56 ms
[15:24:28] [Server thread/INFO]: Preparing start region for dimension minecraft:pvppointzone
[15:24:28] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:28] [Server thread/INFO]: Time elapsed: 70 ms
[15:24:28] [Server thread/INFO]: Preparing start region for dimension minecraft:kingdomlevels
[15:24:28] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:28] [Server thread/INFO]: Time elapsed: 87 ms
[15:24:28] [Server thread/INFO]: Preparing start region for dimension minecraft:combat
[15:24:28] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:28] [Server thread/INFO]: Time elapsed: 46 ms
[15:24:29] [Server thread/INFO]: Preparing start region for dimension minecraft:dungeon
[15:24:29] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:29] [Server thread/INFO]: Time elapsed: 89 ms
[15:24:29] [Server thread/INFO]: Preparing start region for dimension minecraft:dragonlair
[15:24:29] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:29] [Server thread/INFO]: Time elapsed: 40 ms
[15:24:29] [Server thread/INFO]: Preparing start region for dimension minecraft:coaster
[15:24:29] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:29] [Server thread/INFO]: Time elapsed: 82 ms
[15:24:29] [Server thread/INFO]: [P2] Loading flags for area: Teambases
[15:24:29] [Server thread/INFO]: [P2] Area flags: []
[15:24:29] [Server thread/INFO]: [P2] Road flags: [player-interact;true, device-interact;true, villager-interact;true]
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name Teambases
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 8
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 41
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = dirt
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = deepslate_tile_slab
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = deepslate_tiles
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:quartz_block
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 32
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 17
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 49
[15:24:29] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'Teambases'
[15:24:29] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[15:24:29] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[15:24:29] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[15:24:29] [Server thread/INFO]: [P2] Loading flags for area: Teambases
[15:24:29] [Server thread/INFO]: [P2] Area flags: []
[15:24:29] [Server thread/INFO]: [P2] Road flags: [player-interact;true, device-interact;true, villager-interact;true]
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name Teambases
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 8
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 41
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = dirt
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = deepslate_tile_slab
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = deepslate_tiles
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:quartz_block
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 32
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 17
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 49
[15:24:29] [Server thread/INFO]: Preparing start region for dimension minecraft:teambases
[15:24:29] [Server thread/INFO]: Preparing spawn area: 0%
[15:24:29] [Server thread/INFO]: Time elapsed: 38 ms
[15:24:29] [Server thread/INFO]: [P2] Loading flags for area: Teambases
[15:24:29] [Server thread/INFO]: [P2] Area flags: []
[15:24:29] [Server thread/INFO]: [P2] Road flags: [player-interact;true, device-interact;true, villager-interact;true]
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name Teambases
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 8
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 41
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = dirt
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = deepslate_tile_slab
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = deepslate_tiles
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:quartz_block
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 32
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 17
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[15:24:29] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 49
[15:24:29] [Server thread/INFO]: [Multiverse-Core] 14 - World(s) loaded.
[15:24:29] [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.
[15:24:29] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[15:24:29] [Server thread/INFO]: [VentureChat] Enabling VentureChat v3.7.1
[15:24:29] [Server thread/INFO]: [VentureChat] - Initializing...
[15:24:29] [Server thread/INFO]: [VentureChat] - Config found! Loading file.
[15:24:29] [Server thread/INFO]: [VentureChat] - Checking for Vault...
[15:24:29] [Server thread/INFO]: [VentureChat] - Loading player data
[15:24:30] [Server thread/INFO]: [VentureChat] - Registering Listeners
[15:24:30] [Server thread/INFO]: [VentureChat] - Attaching to Executors
[15:24:30] [Server thread/INFO]: [VentureChat] - Establishing BungeeCord
[15:24:30] [Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[15:24:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: venturechat [3.7.1]
[15:24:30] [Server thread/INFO]: [VentureChat] - Enabled Successfully
[15:24:30] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomGateway) Blacklist loaded with 9 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomGateway) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomGateway) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomGateway) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomGateway) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KingdomGateway'
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomGateway_the_end) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomGateway_the_end) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomGateway_the_end) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomGateway_the_end) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KingdomGateway_the_end'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/INFO]: [WorldGuard] (WizardHideout) Blacklist loaded with 11 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (WizardHideout) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (WizardHideout) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (WizardHideout) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (WizardHideout) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WizardHideout'
[15:24:30] [Server thread/INFO]: [WorldGuard] (Bank) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Bank) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Bank) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Bank) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Bank'
[15:24:30] [Server thread/INFO]: [WorldGuard] (TheWilds) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (TheWilds) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (TheWilds) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (TheWilds) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TheWilds'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/INFO]: [WorldGuard] (fairyland) Blacklist loaded with 11 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (fairyland) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (fairyland) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (fairyland) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (fairyland) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'fairyland'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/INFO]: [WorldGuard] (prisonarena) Blacklist loaded with 11 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (prisonarena) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (prisonarena) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (prisonarena) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (prisonarena) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'prisonarena'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/INFO]: [WorldGuard] (PVPPointZone) Blacklist loaded with 1 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (PVPPointZone) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (PVPPointZone) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (PVPPointZone) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (PVPPointZone) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PVPPointZone'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no value blacklist.txt for 'Allowuse'
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomLevels) Blacklist loaded with 10 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomLevels) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomLevels) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomLevels) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (KingdomLevels) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KingdomLevels'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/INFO]: [WorldGuard] (Combat) Blacklist loaded with 11 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Combat) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Combat) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Combat) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Combat) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Combat'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no value blacklist.txt for 'ChestsUsage'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no value blacklist.txt for 'ShulkerUsage'
[15:24:30] [Server thread/INFO]: [WorldGuard] (Dungeon) Blacklist loaded with 26 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Dungeon) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Dungeon) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Dungeon) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Dungeon) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dungeon'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/INFO]: [WorldGuard] (dragonlair) Blacklist loaded with 11 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (dragonlair) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (dragonlair) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (dragonlair) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (dragonlair) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'dragonlair'
[15:24:30] [Server thread/INFO]: [WorldGuard] (Coaster) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Coaster) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Coaster) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Coaster) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Coaster'
[15:24:30] [Server thread/WARN]: [WorldGuard] Found option with no heading blacklist.txt for 'DenyUse'
[15:24:30] [Server thread/INFO]: [WorldGuard] (Teambases) Blacklist loaded with 1 entries.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Teambases) TNT ignition is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Teambases) Lighters are PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Teambases) Lava fire is PERMITTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] (Teambases) Fire spread is UNRESTRICTED.
[15:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Teambases'
[15:24:30] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:24:30] [Server thread/INFO]: [packetevents] Enabling packetevents v2.8.0
[15:24:30] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[15:24:30] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.8.7*
[15:24:30] [Server thread/INFO]: [WorldBorder] [CONFIG] Using elliptic/round border, knockback of 3.0 blocks, and timer delay of 5.
[15:24:30] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[15:24:30] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: -253.0 Y: 92.0 Z: 39.0
[15:24:30] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[15:24:30] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3692)
[15:24:30] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.8.0)
[15:24:30] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[15:24:31] [pool-125-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[15:24:31] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[15:24:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[15:24:31] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[15:24:31] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v6.2.0
[15:24:31] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[15:24:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[15:24:31] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@2f6159cb
[15:24:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[15:24:31] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate openings.
[15:24:31] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate keys.
[15:24:31] [Server thread/INFO]: [ExcellentCrates] Loaded 3 rarities!
[15:24:31] [Server thread/INFO]: [ExcellentCrates] Loaded 2 crates.
[15:24:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[15:24:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [6.2.0]
[15:24:31] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 544 ms!
[15:24:31] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.6
[15:24:31] [Server thread/INFO]: [Multiverse-Inventories 4.2.6] enabled.
[15:24:31] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
[15:24:31] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.15.0
[15:24:31] [Server thread/INFO]: [NBTAPI] Checking bindings...
[15:24:31] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[15:24:31] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[15:24:31] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[15:24:31] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[15:24:32] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[15:24:32] [pool-31-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached 100.0% of UUIDs
[15:24:32] [pool-31-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[15:24:32] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[15:24:32] [Server thread/INFO]: [TigerReports] Enabling TigerReports v5.3.5
[15:24:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:console-gateway(1121890456234627112)
[15:24:32] [Server thread/INFO]: [TigerReports] The plugin is using the prefixes and suffixes from the chat of Vault plugin to display player names.
[15:24:32] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[15:24:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling VentureChat hook
[15:24:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[15:24:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[15:24:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[15:24:32] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.2-RC3
[15:24:33] [Server thread/INFO]: [net.coreprotect.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:24:33] [Server thread/INFO]: [net.coreprotect.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@38a68b11
[15:24:33] [Server thread/INFO]: [net.coreprotect.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:24:33] [Server thread/INFO]: [CoreProtect] CoreProtect Edge has been successfully enabled! 
[15:24:33] [Server thread/INFO]: [CoreProtect] Using MySQL for data storage.
[15:24:33] [Server thread/INFO]: --------------------
[15:24:33] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[15:24:33] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[15:24:33] [Server thread/INFO]: --------------------
[15:24:33] [Server thread/INFO]: [RevWEGApi] Enabling RevWEGApi v1.1*
[15:24:33] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.17
[15:24:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[15:24:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[15:24:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[15:24:33] [Server thread/INFO]: [AFKPlus] Enabling AFKPlus v3.4.9
[15:24:33] [Server thread/INFO]: [AFKPlus] AFKPlus v.3.4.9 has been enabled!
[15:24:33] [Server thread/INFO]: [PCGF_PluginLib] Enabling PCGF_PluginLib v1.0.39.9-SNAPSHOT
[15:24:33] [Server thread/INFO]: [PCGF_PluginLib] Config file successfully loaded.
[15:24:33] [Server thread/INFO]: [PCGF_PluginLib] Item name language file successfully loaded. Language: english  Author: GeorgH93
[15:24:33] [Server thread/INFO]: [PCGF_PluginLib] Loading item translations ...
[15:24:33] [Server thread/INFO]: [PCGF_PluginLib] Finished loading item translations for 826 items.
[15:24:33] [Server thread/INFO]: [PCGF_PluginLib] Language file successfully loaded. Language: english  Author: GeorgH93
[15:24:33] [Server thread/INFO]: [PCGF_PluginLib]  PCGF_PluginLib v1.0.39.9-SNAPSHOT has been enabled!  :) 
[15:24:33] [Server thread/INFO]: [PlayerStats] Enabling PlayerStats v2.3
[15:24:33] [pool-133-thread-1/INFO]: [PlayerStats] Loaded 0 excluded players from file (1ms)
[15:24:33] [Server thread/INFO]: [PlayerStats] Enabled PlayerStats!
[15:24:33] [Server thread/INFO]: [ExcellentShop] Enabling ExcellentShop v4.16.3
[15:24:33] [Server thread/INFO]: [ExcellentShop] Powered by nightcore
[15:24:33] [pool-133-thread-1/INFO]: [PlayerStats] Loaded 15 offline players (194ms)
[15:24:33] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[15:24:33] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-3 - Added connection com.mysql.cj.jdbc.ConnectionImpl@41b17b85
[15:24:33] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[15:24:33] [Server thread/INFO]: [ExcellentShop] Loaded 1 product cart UIs!
[15:24:34] [Server thread/INFO]: [ExcellentShop] [Virtual Shop] Loaded 8 shop layouts.
[15:24:34] [Server thread/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[15:24:34] [Server thread/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[15:24:34] [Server thread/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[15:24:34] [Server thread/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[15:24:34] [Server thread/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[15:24:34] [Server thread/INFO]: [ExcellentShop] [Virtual Shop] Loaded 20 shops.
[15:24:34] [Server thread/INFO]: [ExcellentShop] [Auction] Allowed currencies: [tokenring, tokens, legenddust, shard, wandbits, dragonfire, shulkershell, fairydust, gold, cluster, enchantedapple, wizardmagic, specialapple, vault, emerald, xp_points, diamond, xp_level, bone, playerpoints, endcrystal]
[15:24:34] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Starting...
[15:24:34] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-4 - Added connection org.sqlite.jdbc4.JDBC4Connection@528d57f9
[15:24:34] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Start completed.
[15:24:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentshop [4.16.3]
[15:24:34] [Server thread/INFO]: [ExcellentShop] Plugin loaded in 899 ms!
[15:24:34] [Server thread/INFO]: [Gaia] Enabling Gaia v2.0.4
[15:24:34] [/INFO]: [Gaia] Successfully loaded 1 arena (103ms)
[15:24:34] [Server thread/INFO]: [LogFilter] Enabling LogFilter v3.0.6
[15:24:34] [Server thread/INFO]: [PhatLoots] Enabling PhatLoots v5.6.7
[15:24:34] [Server thread/INFO]: [PhatLoots] Listening for Citizens NPC deaths
[15:24:35] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.2.23
[15:24:35] [Server thread/INFO]: [AutomaticBroadcast] Enabling AutomaticBroadcast v1.9.0
[15:24:35] [Server thread/INFO]:    _____  _____
[15:24:35] [Server thread/INFO]:   |  _  || __  |  AutomaticBroadcast
[15:24:35] [Server thread/INFO]:   |     || __ -|    Version 1.9.0
[15:24:35] [Server thread/INFO]:   |__|__||_____|      by Pandaaa
[15:24:35] [Server thread/INFO]: 
[15:24:35] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.39.4
[15:24:35] [Server thread/INFO]: [PvPManager] Using player nametags: true
[15:24:35] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] PvPManager - Starting...
[15:24:35] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] PvPManager - Added connection com.mysql.cj.jdbc.ConnectionImpl@23b2a494
[15:24:35] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] PvPManager - Start completed.
[15:24:35] [Server thread/INFO]: [PvPManager] Connected to MYSQL database successfully
[15:24:35] [Server thread/INFO]: [PvPManager] Players stored: 201
[15:24:35] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[15:24:35] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[15:24:35] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[15:24:35] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[15:24:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [3.39.4]
[15:24:35] [Server thread/INFO]: [PvPManager] NPC spawning is supported in this version! (v1_21_R3)
[15:24:36] [Server thread/INFO]: [PvPManager] Auto Respawn is supported in this version! Using 1.15+ gamerules
[15:24:36] [Server thread/INFO]: [PvPManager] Starting border task with radius 6 and rate of 150ms
[15:24:36] [Server thread/INFO]: [PvPManager] PvPManager v3.39.4 enabled (573 ms)
[15:24:36] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.9.12a
[15:24:36] [Server thread/INFO]: [IllegalStack/IllegalStack] The following materials are allowed to have stacks larger than the vanilla size: POTION 
[15:24:36] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT an ArcLight hybrid environment, continuing as normal.
[15:24:36] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Forge hybrid environment, continuing as normal.
[15:24:36] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Fabric hybrid environment, continuing as normal.
[15:24:36] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is a Paper server, enabling Paper features.
[15:24:36] [Server thread/INFO]: [IllegalStack/IllegalStack] Server does NOT have Folia components, continuing as normal.
[15:24:36] [Server thread/INFO]: [IllegalStack/IllegalStack] Chat Components found! Enabling clickable commands in /istack
[15:24:36] [Server thread/INFO]: [IllegalStack/fListener] MC Version < 1.13 detected!
[15:24:36] [Server thread/INFO]: [IllegalStack/Listener113] Enabling 1.13+ Checks
[15:24:36] [Server thread/INFO]: [IllegalStack/IllegalStack] ZombieVillagerTransformChance is set to 65 *** Only really matters if the difficulty is set to HARD ***
[15:24:36] [Server thread/INFO]: [TigerReportsSupports] Enabling TigerReportsSupports v1.6.13
[15:24:36] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-Release
[15:24:36] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[15:24:36] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Found 'data' option for item: teststone in menu: basics_menu. This option is deprecated and will be removed soon. Please use 'damage' instead.
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'example' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplecd' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplenoperm' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'dailyrewards' in menu 'gateway' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'minesmenu' in menu 'gateway' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'pvparena' in menu 'gateway' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'ginfo' in menu 'gateway' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rules' in menu 'gateway' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'teambases' in menu 'gateway' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'gateway' in menu 'gateway' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'hub' in menu 'gateway' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'teams' in menu 'gateway' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'example' in menu 'pvpgames' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplecd' in menu 'pvpgames' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplenoperm' in menu 'pvpgames' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DYNASTY TEAM COMMANDS' in menu 'teams' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DYNASTY TEAM OWNER/ADMIN' in menu 'teams' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'plotworld' in menu 'mineplots' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'plotclaim' in menu 'mineplots' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'plothome' in menu 'mineplots' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'plotclear' in menu 'mineplots' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'plotdelete' in menu 'mineplots' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rankup' in menu 'minemenu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'availablemines' in menu 'minemenu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'smeltroom' in menu 'minemenu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[15:24:36] [Server thread/INFO]: [DeluxeMenus] 8 GUI menus loaded!
[15:24:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-Release]
[15:24:36] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[15:24:36] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18.5-SNAPSHOT
[15:24:36] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[15:24:36] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:24:38] [PvPManager Worker Thread - 11/INFO]: [PvPManager] Update available: 3.39.8 Current version: 3.39.4
[15:24:38] [PvPManager Worker Thread - 11/INFO]: [PvPManager] Follow the link to download: https://www.spigotmc.org/resources/pvpmanager.10610
[15:24:46] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@43a49754
[15:24:46] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:24:46] [Server thread/INFO]: [VotingPlugin] Using BungeeMethod: PLUGINMESSAGING
[15:24:46] [Server thread/INFO]: [VotingPlugin] Loaded plugin message channels: vp:vp
[15:24:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[15:24:46] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[15:24:47] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[15:24:47] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18.5-SNAPSHOT
[15:24:47] [Server thread/INFO]: [VotingPlugin] Using dev build, this is not a stable build, use at your own risk. Build number: 1723
[15:24:47] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from Best-Minecraft-Servers.co, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[15:24:47] [Server thread/INFO]: [EconomyBridge] VotingPlugin detected! Loading currency...
[15:24:47] [Server thread/INFO]: [EconomyBridge] Currency registered: 'votingplugin'.
[15:24:47] [Server thread/INFO]: [GravesX] Enabling GravesX v4.9.7.3
[15:24:47] [Server thread/INFO]: [GravesX] Loading Libraries for GravesX
[15:24:47] [Server thread/INFO]: [GravesX] Loading library com.zaxxer.HikariCP version 6.0.0.
[15:24:47] [Server thread/INFO]: [GravesX] Loading library com.zaxxer:HikariCP:6.0.0
[15:24:47] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[15:24:47] [Server thread/INFO]: [GravesX] Loading library org.javassist:javassist:3.29.2-GA
[15:24:47] [Server thread/INFO]: [GravesX] Loading library io.micrometer:micrometer-core:1.5.10
[15:24:47] [Server thread/INFO]: [GravesX] Loading library org.hdrhistogram:HdrHistogram:2.1.12
[15:24:47] [Server thread/INFO]: [GravesX] Loading library org.latencyutils:LatencyUtils:2.0.3
[15:24:47] [Server thread/INFO]: [GravesX] Loaded library com.zaxxer.HikariCP version 6.0.0 and shaded successfully.
[15:24:47] [Server thread/INFO]: [GravesX] Loading library org.xerial.sqlite-jdbc version 3.47.0.0.
[15:24:47] [Server thread/INFO]: [GravesX] Loading library org.xerial:sqlite-jdbc:3.47.0.0
[15:24:47] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[15:24:47] [Server thread/INFO]: [GravesX] Loaded library org.xerial.sqlite-jdbc version 3.47.0.0 successfully.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.oshi.oshi-core version 6.6.5.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.oshi:oshi-core:6.6.5
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna:5.15.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna-platform:5.15.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:2.0.16
[15:24:48] [Server thread/INFO]: [GravesX] Loaded library com.github.oshi.oshi-core version 6.6.5 successfully.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-api version 4.17.0.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[15:24:48] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-api version 4.17.0 and shaded successfully.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-minimessage version 4.17.0.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-minimessage:4.17.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[15:24:48] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-minimessage version 4.17.0 and shaded successfully.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-serializer-gson version 4.17.0.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.17.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-json:4.17.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:option:1.0.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.google.code.gson:gson:2.8.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.google.auto.service:auto-service-annotations:1.1.1
[15:24:48] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-serializer-gson version 4.17.0 and shaded successfully.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-platform-bukkit version 4.3.3.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-bukkit:4.3.3
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-api:4.3.3
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.13.1
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.13.1
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-bungeecord:4.3.3
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-legacy:4.13.1
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-nbt:4.13.1
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.0.1
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.13.1
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson-legacy-impl:4.13.1
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-facet:4.3.3
[15:24:48] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-viaversion:4.3.3
[15:24:48] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-platform-bukkit version 4.3.3 and shaded successfully.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.puregero.multilib version 1.2.4.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib:1.2.4
[15:24:48] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:22.0.0
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-common:1.2.4
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-bukkit:1.2.4
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-multipaper:1.2.4
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-common:1.2.4
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-bukkit:1.2.4
[15:24:48] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-paper:1.2.4
[15:24:48] [Server thread/INFO]: [GravesX] Loaded library com.github.puregero.multilib version 1.2.4 and shaded successfully.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library org.apache.commons.commons-text version 1.12.0.
[15:24:48] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-text:1.12.0
[15:24:49] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-lang3:3.14.0
[15:24:49] [Server thread/INFO]: [GravesX] Loaded library org.apache.commons.commons-text version 1.12.0 and shaded successfully.
[15:24:49] [Server thread/INFO]: [GravesX] Finished Loading Libraries for GravesX.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-b131. Economy is enabled.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-b131's permissions provider.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into ProtocolLib 5.4.0-SNAPSHOT-748.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into WorldEdit 7.3.14+7149-8bea01b.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into MiniMessage.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into Minedown Adventure.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into Citizens 2.0.37-SNAPSHOT (build 3692).
[15:24:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gravesx [4.9.7.3]
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into PlaceholderAPI 2.11.6.
[15:24:49] [Server thread/WARN]: [GravesX] Compatibility: World "KingdomLevels" has keepInventory set to true, Graves will not be created here unless a player has the "graves.keepinventory.bypass" permission.
[15:24:49] [Server thread/WARN]: [GravesX] Compatibility: Essentials Detected, make sure you don't have the essentials.keepinv or essentials.keepxp permissions.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into LuckPerms 5.5.2.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into CoreProtect 23.2-RC3.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into NBTAPI 2.15.0. Using NBTAPI 2.15.0 for handling Inventory NBT Data.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Failed to hook into Geyser-Spigot. Assuming the server runs behind a proxy.
[15:24:49] [Server thread/INFO]: [GravesX] Integration: Hooked into floodgate 2.2.4-SNAPSHOT (b116-0e3163c).
[15:24:49] [Server thread/WARN]: [GravesX] Database Option SQLITE is set for removal in a future release. Use H2 Database option instead for better reliance.
[15:24:49] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves SQLite - Starting...
[15:24:49] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.pool.HikariPool] Graves SQLite - Added connection org.sqlite.jdbc4.JDBC4Connection@c6f7ab
[15:24:49] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves SQLite - Start completed.
[15:24:49] [Server thread/INFO]: [GravesX] Metrics has been enabled. All metrics will be sent to https://bstats.org/plugin/bukkit/Graves/12849 and https://bstats.org/plugin/bukkit/GravesX/23069.
[15:24:49] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.6.1
[15:24:50] [Server thread/INFO]: [Vulcan] Starting Vulcan. Server Version: .1.21.4 detected!
[15:24:50] [Server thread/INFO]: [Vulcan] Floodgate 2.0 found. Enabling hook!
[15:24:50] [Server thread/INFO]: [Vulcan] BStats enabled!
[15:24:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.6.1]
[15:24:50] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[15:24:50] [Server thread/INFO]: [RevEnchants] Enabling RevEnchants v15.7*
[15:24:50] [Server thread/INFO]: [RevEnchants] *** support for Vault Loaded successfully. ***
[15:24:50] [Server thread/INFO]: [RevEnchants] *** support for PlaceholderAPI Loaded successfully. ***
[15:24:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: RevEnchants [1.0]
[15:24:50] [Server thread/INFO]: [RevEnchants] *** Currency RevToken registered successfully. ***
[15:24:50] [Server thread/INFO]: [RevEnchants] *** Currency RevGems registered successfully. ***
[15:24:50] [Server thread/INFO]: [RevEnchants] *** Currency TokenManager registered successfully. ***
[15:24:50] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v2.5.0
[15:24:50] [Server thread/INFO]: [AdvancedPortals] Loading Advanced Portals Core v2.5.0 for MC: 1.21.4
[15:24:51] [Server thread/INFO]: [AdvancedPortals] Advanced portals have been enabled!
[15:24:51] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[15:24:52] [Server thread/INFO]: [Multiverse-Portals] 119 - Portals(s) loaded
[15:24:52] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[15:24:52] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[15:24:52] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[15:24:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[15:24:52] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.13.1
[15:24:52] [Server thread/INFO]: [BetterTeams] MessageSender declared: com.booksaw.betterTeams.message.AdventureMessageSender@2044d097
[15:24:52] [Server thread/INFO]: [BetterTeams] [BetterTeams] Checking if the file messages.yml is up to date
[15:24:52] [Server thread/INFO]: [BetterTeams] [BetterTeams] File is up to date
[15:24:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.13.1]
[15:24:53] [Server thread/INFO]: [BetterTeams] Display team name config value: prefix
[15:24:53] [Server thread/INFO]: [BetterTeams] Loading below name. Type: PREFIX
[15:24:53] [Server thread/INFO]: [BetterTeams] teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@39bd44e2
[15:24:53] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.7.1
[15:24:53] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[15:24:53] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[15:24:53] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[15:24:53] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[15:24:53] [Server thread/INFO]: [ItemEdit] placeholders:
[15:24:53] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[15:24:53] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[15:24:53] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[15:24:53] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[15:24:53] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[15:24:53] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[15:24:53] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[15:24:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[15:24:53] [Server thread/INFO]: [ItemEdit] # Enabled (took 114 ms)
[15:24:53] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.6
[15:24:53] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 2ms)
[15:24:53] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_21_4R1!
[15:24:53] [Server thread/INFO]: [SimplePortals] Everything looks like it is up to date!
[15:24:53] [Server thread/INFO]: [AltDetector] Enabling AltDetector v2.03
[15:24:53] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:24:53] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:24:53] [Server thread/INFO]: [AltDetector] Using MySQL database, version 8.0.42-0ubuntu0.22.04.1, driver version mysql-connector-j-9.1.0 (Revision: cf2917ea44ae2e43a4514a33771035aa99de73bf)
[15:24:53] [Server thread/INFO]: [AltDetector] 0 records removed, expiration time 60 days.
[15:24:53] [Server thread/INFO]: [AltDetector] Metrics enabled if allowed by plugins/bStats/config.yml
[15:24:53] [Server thread/INFO]: [PAPIProxyBridge] Enabling PAPIProxyBridge v1.8.1-3ca29f3
[15:24:53] [Server thread/INFO]: [PAPIProxyBridge] Loaded messenger PLUGIN_MESSAGE
[15:24:53] [Server thread/INFO]: [PAPIProxyBridge] PAPIProxyBridge (Paper unspecified) has been enabled!
[15:24:53] [Server thread/INFO]: [AFKPlusRandomMessages] Enabling AFKPlusRandomMessages v1.0.2
[15:24:53] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.5.2
[15:24:53] [Server thread/INFO]: [AnnouncerPlus] Enabling AnnouncerPlus v1.4.1
[15:24:54] [Server thread/INFO]: [DeluxeForms] Enabling DeluxeForms v1.4
[15:24:55] [AnnouncerPlus-Async-Task-Thread-1/INFO]: [AnnouncerPlus] There is an update available for AnnouncerPlus!
[15:24:55] [AnnouncerPlus-Async-Task-Thread-1/INFO]: [AnnouncerPlus] This server is running version v1.4.1, which is 1 versions outdated.
[15:24:55] [AnnouncerPlus-Async-Task-Thread-1/INFO]: [AnnouncerPlus] Download the latest version, v1.4.2 from GitHub at the link below:
[15:24:55] [AnnouncerPlus-Async-Task-Thread-1/INFO]: [AnnouncerPlus] https://github.com/jpenilla/AnnouncerPlus/releases/tag/v1.4.2
[15:24:55] [Server thread/INFO]: [DeluxeForms] 9 forms loaded!
[15:24:55] [Server thread/INFO]: [DeluxeForms] Messages config loaded.
[15:24:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: DF [1.0]
[15:24:55] [Server thread/INFO]: [DeluxeForms] bStats metrics enabled!
[15:24:55] [Server thread/INFO]: [AFKPlusPrefix] Enabling AFKPlusPrefix v1.3.5
[15:24:55] [Server thread/INFO]: [AFKPlusPrefix] AFKPlusPrefix v.1.3.5 has been enabled!
[15:24:55] [Server thread/INFO]: [SternalBoard] Enabling SternalBoard v2.3.2
[15:24:55] [Server thread/INFO]: [INFO] Starting SternalBoard Plugin
[15:24:55] [Server thread/INFO]: [DailyRewardsPlus] Enabling DailyRewardsPlus v1.4.6
[15:24:55] [Server thread/INFO]: [DailyRewards+] Starting DailyRewards+!
[15:24:55] [Server thread/INFO]: [DailyRewardsPlus] [DailyRewards+] Establishing MySQL Connection Pool
[15:24:55] [Server thread/INFO]: [uhfinn.dailyrewardsplus.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:24:55] [Server thread/INFO]: [uhfinn.dailyrewardsplus.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@7d8e9ee8
[15:24:55] [Server thread/INFO]: [uhfinn.dailyrewardsplus.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:24:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: daily [1.0.0]
[15:24:55] [Server thread/INFO]: [DailyRewards+] Detected Placeholder API. Successfully enabled plugin support.
[15:24:55] [Server thread/INFO]: [DailyRewards+] Cleaning up...
[15:24:55] [Server thread/INFO]: [DailyRewards+] Accumulating player data for LeaderBoard placeholders, this task will run asynchronously.
[15:24:55] [Server thread/INFO]: [DailyRewards+] Detected version group as V1.20.5+[1214]. Applying necessary settings.
[15:24:55] [Server thread/INFO]: [DailyRewards+] Has started successfully!
[15:24:55] [Server thread/INFO]: [Prison] Enabling Prison v3.3.0-alpha.19h
[15:24:55] [Server thread/INFO]: | Prison |  -------------------- <  > ----------------------- (3.3.0-alpha.19h)
[15:24:55] [Server thread/INFO]: | Prison |   _____      _                 
[15:24:55] [Server thread/INFO]: | Prison |  |  __ \    (_)                
[15:24:55] [Server thread/INFO]: | Prison |  | |__) | __ _ ___  ___  _ __  
[15:24:55] [Server thread/INFO]: | Prison |  |  ___/ '__| / __|/ _ \| '_ \
[15:24:55] [Server thread/INFO]: | Prison |  | |   | |  | \__ \ (_) | | | |
[15:24:55] [Server thread/INFO]: | Prison |  |_|   |_|  |_|___/\___/|_| |_|
[15:24:55] [Server thread/INFO]: | Prison |  Loading Prison version: 3.3.0-alpha.19h
[15:24:55] [Server thread/INFO]: | Prison |  Running on platform: SpigotPlatform
[15:24:55] [Server thread/INFO]: | Prison |  Minecraft version: 1.21.4-232-12d8fe0 (MC: 1.21.4)
[15:24:55] [Server thread/INFO]: | Prison |  Server runtime: just now
[15:24:55] [Server thread/INFO]: | Prison |  Java Version: 21.0.7  Processor cores: 32 
[15:24:55] [Server thread/INFO]: | Prison |  Memory Max: 10.000 GB  Total: 1.539 GB  Free: 230.247 MB  Used: 1.314 GB
[15:24:55] [Server thread/INFO]: | Prison |  Total Server Disk Space: 1.833 TB  Usable: 1.475 TB  Free: 1.568 TB  Used: 270.953 GB
[15:24:55] [Server thread/INFO]: | Prison |  Prison's File Count: 870  Folder Count: 29  Disk Space: 8.330 MB  Other Objects: 0
[15:24:55] [Server thread/INFO]: | Prison |  Prison TPS Average: 0.00  Min: 20.00  Max: 20.00   Interval: 10 ticks  Samples: 0
[15:24:55] [Server thread/INFO]: | Prison |  .
[15:24:55] [Server thread/INFO]: | Prison |  Prison File System Check:
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison                                   dirs:   4  files:   6  totalFileSize:  82.255 KB 
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/backpacks                         dirs:   0  files:   2  totalFileSize:   1.024 KB 
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/backups                           dirs:   0  files:  10  totalFileSize:   5.608 MB 
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/data_storage                      dirs:   4  files:   1  totalFileSize: 143.190 KB 
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/data_storage/mines                dirs:   1  files:   0  totalFileSize:   0.000  
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/data_storage/playerCache          dirs:   0  files: 360  totalFileSize: 215.260 KB 
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/data_storage/ranksDb              dirs:   3  files:   0  totalFileSize:   0.000  
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/data_storage/ranksDb/ladders      dirs:   0  files:   3  totalFileSize:   3.571 KB 
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/data_storage/ranksDb/players      dirs:   0  files: 325  totalFileSize:   1.663 MB 
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/data_storage/ranksDb/ranks        dirs:   0  files:  82  totalFileSize:   9.880 KB 
[15:24:55] [Server thread/INFO]: | Prison |    plugins/Prison/module_conf                       dirs:   6  files:   0  totalFileSize:   0.000  
[15:24:55] [Server thread/INFO]: | Prison |  Enabling and starting...
[15:24:55] [Server thread/INFO]: | Prison |  Root command: /prison   fallback-prefix: prison
[15:24:55] [Server thread/INFO]: | Prison |  Enabled Prison v3.3.0-alpha.19h in 259 milliseconds.
[15:24:56] [Server thread/INFO]: | Prison |  Using version adapter tech.mcprison.prison.spigot.compat.Spigot_1_18
[15:24:56] [Server thread/INFO]: | Prison |  SpigotListener: Trying to register events
[15:24:56] [Server thread/INFO]: | Prison |  EssentialsEconomy is not directly enabled - Available as backup. 
[15:24:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: prison [3.3.0-alpha.19h]
[15:24:56] [Server thread/INFO]: | Prison |  Enabled Minepacks integration.
[15:24:56] [Server thread/INFO]: | Prison |  Mines Module enablement starting...
[15:24:56] [Server thread/INFO]: | Prison |  Mines Module enabled successfully in 178 milliseconds.
[15:24:56] [Server thread/INFO]: | Prison |  Ranks Module enablement starting...
[15:24:56] [Server thread/INFO]: | Prison |  Ranks: Loading Players...
[15:24:56] [Server thread/INFO]: | Prison |  Ranks: Finished Connecting Players to Ranks.
[15:24:56] [Server thread/INFO]: | Prison |  Ranks: Finished registering Rank Commands.
[15:24:56] [Server thread/INFO]: | Prison |  Loaded 3 ladders.
[15:24:56] [Server thread/INFO]: | Prison |  Loaded 82 total ranks.  default ranks: 26  prestige ranks: 30  other ranks: 26
[15:24:56] [Server thread/INFO]: | Prison |  Loaded 325 players.
[15:24:56] [Server thread/INFO]: | Prison |  Ranks by ladders:
[15:24:56] [Server thread/INFO]: | Prison |    default:  A (263),  B (17),  C (5),  D (7),  E (2),  F (4),  G (4),  H (5),  I (1),  J (1),  K (2),  L (1),  M (2),  N,  O (1), 
[15:24:56] [Server thread/INFO]:        P (1),  Q (2),  R,  S (2),  T (1),  U,  V,  W,  X,  Y (2),  Z (2)
[15:24:56] [Server thread/INFO]: | Prison |    BonusMines:  B1,  B2,  B3,  B4,  B5,  B6,  B7,  B8,  B9,  B10,  B11,  B12,  B13,  B14,  B15, 
[15:24:56] [Server thread/INFO]:        B16,  B17,  B18,  B19,  B20,  B21,  B22,  B23,  B24,  B25,  B26
[15:24:56] [Server thread/INFO]: | Prison |    prestiges:  P1 (2),  P2 (2),  P3,  P4,  P5,  P6,  P7,  P8,  P9,  P10,  p11,  p12,  p13,  p14,  p15, 
[15:24:56] [Server thread/INFO]:        p16,  p17,  p18,  p19,  p20,  p21,  p22,  p23,  p24,  p25,  p26,  p27,  p28,  p29,  p30
[15:24:56] [Server thread/INFO]: | Prison |    (*no-ladder*): 
[15:24:56] [Server thread/INFO]: | Prison |  Ranks Module enabled successfully in 277 milliseconds.
[15:24:56] [Server thread/INFO]: | Prison |  Sellall Module enablement starting...
[15:24:56] [Server thread/INFO]: | Prison |  Sellall Module enabled successfully in 127 milliseconds.
[15:24:57] [Server thread/INFO]: | Prison |  Utils Module enablement starting...
[15:24:57] [Server thread/INFO]: | Prison |  Utils Module enabled successfully in 19 milliseconds.
[15:24:57] [Server thread/INFO]: | Prison |  Loaded 34 mines and submitted with a 5000 millisecond offset timing for auto resets.
[15:24:57] [Server thread/INFO]: | Prison |  Startup Block Count Task Submitted to run in 3.0 seconds.
[15:24:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: prison [3.3.0-alpha.19h]
[15:24:57] [Server thread/INFO]: | Prison |  Total placeholders generated: 5721
[15:24:57] [Server thread/INFO]: | Prison |    PLAYER: 112
[15:24:57] [Server thread/INFO]: | Prison |    LADDERS: 100
[15:24:57] [Server thread/INFO]: | Prison |    RANKS: 1968
[15:24:57] [Server thread/INFO]: | Prison |    RANKPLAYERS: 984
[15:24:57] [Server thread/INFO]: | Prison |    STATSRANKS: 492
[15:24:57] [Server thread/INFO]: | Prison |    STATSPLAYERS: 30
[15:24:57] [Server thread/INFO]: | Prison |    MINES: 952
[15:24:57] [Server thread/INFO]: | Prison |    MINEPLAYERS: 164
[15:24:57] [Server thread/INFO]: | Prison |    PLAYERBLOCKS: 304
[15:24:57] [Server thread/INFO]: | Prison |    STATSMINES: 612
[15:24:57] [Server thread/INFO]: | Prison |    CUSTOM: 3
[15:24:57] [Server thread/INFO]: | Prison |    SUPRESS: 3
[15:24:57] [Server thread/INFO]: | Prison |    ALIAS: 2859
[15:24:57] [Server thread/INFO]: | Prison |    ONLY_DEFAULT_OR_PRESTIGES: 6
[15:24:57] [Server thread/INFO]: | Prison |  Total placeholders available to be Registered: 5718
[15:24:57] [Server thread/INFO]: | Prison |  A total of 29 Mines and Ranks have been linked together.
[15:24:57] [Server thread/INFO]: | Prison |  AutoManager: AutoFeatures and the Mine module are enabled. Prison will register the selected block break listeners.
[15:24:57] [Server thread/INFO]: | Prison |  AutoManager: Trying to register BlockBreakEvent
[15:24:57] [Server thread/INFO]: | Prison |  AutoManager: Trying to register ExplosiveBlockBreakEvent Listener
[15:24:57] [Server thread/INFO]: | Prison |  AutoManager: checking if loaded: RevEnchants ExplosiveEvent
[15:24:57] [Server thread/INFO]: | Prison |  AutoManager: Trying to register RevEnchants ExplosiveEvent
[15:24:57] [Server thread/INFO]: | Prison |  AutoManager: checking if loaded: RevEnchants JackHammerEvent
[15:24:57] [Server thread/INFO]: | Prison |  AutoManager: Trying to register RevEnchants JackHammerEvent
[15:24:57] [Server thread/INFO]: | Prison |  Mines Info:  Enabled: 34  Virtual: 0  Deleted: 0  AvgBlocks/Mine: 32,192
[15:24:57] [Server thread/INFO]: | Prison |  AutoManager: Enabled
[15:24:57] [Server thread/INFO]: | Prison |  .   Apply Block Breaks through Sync Tasks: true
[15:24:57] [Server thread/INFO]: | Prison |  .   Cancel all Block Break Events: false
[15:24:57] [Server thread/INFO]: | Prison |  .   Cancel All Block Break Events Block Drops: true
[15:24:57] [Server thread/INFO]: | Prison |  .   'org.bukkit.BlockBreakEvent' Priority: NORMAL Enabled
[15:24:57] [Server thread/INFO]: | Prison |  .   Prison's own 'ExplosiveBlockBreakEvent' Priority: NORMAL Enabled
[15:24:57] [Server thread/INFO]: | Prison |  .   RevEnchant 'ExplosiveEvent' Priority: NORMAL Enabled
[15:24:57] [Server thread/INFO]: | Prison |  .   RevEnchant 'JackHammerEvent' Priority: LOW Enabled
[15:24:57] [Server thread/INFO]: | Prison |  .   Auto Pickup: false
[15:24:57] [Server thread/INFO]: | Prison |  .   Auto Smelt: false
[15:24:57] [Server thread/INFO]: | Prison |  .   Auto Block: false
[15:24:57] [Server thread/INFO]: | Prison |  .   Include player inventory when smelting:Enabled
[15:24:57] [Server thread/INFO]: | Prison |  .   Include player inventory when blocking:Disabled
[15:24:57] [Server thread/INFO]: | Prison |  .   Calculate Fortune: true
[15:24:57] [Server thread/INFO]: | Prison |  .  .  Extended Bukkit Fortune Enabled: true
[15:24:57] [Server thread/INFO]: | Prison |  .   Calculate XP: true
[15:24:57] [Server thread/INFO]: | Prison |  .   Drop XP as Orbs: true
[15:24:57] [Server thread/INFO]: | Prison |  .   Calculate Food Exhustion: true
[15:24:57] [Server thread/INFO]: | Prison |  .   Calculate Additional Items in Drop: true   (like flint in gravel)
[15:24:57] [Server thread/INFO]: | Prison |  Prestiges Enabled: true
[15:24:57] [Server thread/INFO]: | Prison |  .   Reset Money: false
[15:24:57] [Server thread/INFO]: | Prison |  .   Reset Default Ladder: true
[15:24:57] [Server thread/INFO]: | Prison |  GUI Enabled: true
[15:24:57] [Server thread/INFO]: | Prison |  Sellall Enabled: true
[15:24:57] [Server thread/INFO]: | Prison |  Backpacks Enabled: false
[15:24:57] [Server thread/INFO]: | Prison |  Module: Mines : Enabled 
[15:24:57] [Server thread/INFO]: | Prison |  Module: Ranks : Enabled 
[15:24:57] [Server thread/INFO]: | Prison |  Module: Sellall : Enabled 
[15:24:57] [Server thread/INFO]: | Prison |  Module: Utils : Enabled 
[15:24:57] [Server thread/INFO]: | Prison |  Integrations:
[15:24:57] [Server thread/INFO]: | Prison |  . . Permissions:  LuckPerms (Vault)
[15:24:57] [Server thread/INFO]: | Prison |  . . Economy:  XConomy (Vault)
[15:24:57] [Server thread/INFO]: | Prison |  Integration Type: ECONOMY
[15:24:57] [Server thread/INFO]: | Prison |  . . XConomy (Vault) <Active> [URL]
[15:24:57] [Server thread/INFO]: | Prison |  Integration Type: PERMISSION
[15:24:57] [Server thread/INFO]: | Prison |  . . LuckPerms (Vault) <Active> 
[15:24:57] [Server thread/INFO]: | Prison |  . . LuckPerms (LuckPermsV5) <Active> [URL]
[15:24:57] [Server thread/INFO]: | Prison |  Integration Type: PLACEHOLDER
[15:24:57] [Server thread/INFO]: | Prison |  . . To list all or search for placeholders see: /prison placeholders
[15:24:57] [Server thread/INFO]: | Prison |  . . PlaceholderAPI <Active> [URL]
[15:24:57] [Server thread/INFO]: | Prison |  Integration Type: CUSTOMBLOCK
[15:24:57] [Server thread/INFO]: | Prison |  . . none
[15:24:57] [Server thread/INFO]: | Prison |  Integration Type: BACKPACK
[15:24:57] [Server thread/INFO]: | Prison |  . . Minepacks <Active> [URL]
[15:24:57] [Server thread/INFO]: | Prison |  . . ApiBackpacks <Active> [URL]
[15:24:57] [Server thread/INFO]: | Prison |  topNstats: topNs: 0  archives: 0  buildMs: 0.000  refreshMs: 0.000  saveMs: 0.000  loadMs: 0.000 
[15:24:57] [Server thread/INFO]: | Prison |  Locale Settings:
[15:24:57] [Server thread/INFO]: | Prison |  . . pseudo-Module: GUI-sellall  Locale: en_US.properties  Using this language file with no validation.  path: en_US.properties
[15:24:57] [Server thread/INFO]: | Prison |  Registered Plugins: 
[15:24:57] [Server thread/INFO]: | Prison |         AFKPlus (3.4.9 JavaSE_17)                     AFKPlusPrefix (1.3.5 JavaSE_11)                      
[15:24:57] [Server thread/INFO]: | Prison |         AFKPlusRandomMessages (1.0.2 JavaSE_8)        AdvancedPortals (2.5.0 JavaSE_8)                     
[15:24:57] [Server thread/INFO]: | Prison |         Afkpluspapi (1.0.2 JavaSE_8)                  AltDetector (2.03 JavaSE_8)                          
[15:24:57] [Server thread/INFO]: | Prison |         AnnouncerPlus (1.4.1 JavaSE_17)               AutomaticBroadcast (1.9.0 JavaSE_8)                  
[15:24:57] [Server thread/INFO]: | Prison |         BetterTeams (4.13.1 JavaSE_8)                 BugReport (0.13.0 JavaSE_17)                         
[15:24:57] [Server thread/INFO]: | Prison |         ChatManager (4.0.3)                           Chunky (1.4.28 JavaSE_21)                            
[15:24:57] [Server thread/INFO]: | Prison |         ChunkyBorder (1.2.23 JavaSE_21)               Citizens (2.0.37-SNAPSHOT (build 3692) JavaSE_8)     
[15:24:57] [Server thread/INFO]: | Prison |         CoreProtect (23.2-RC3 JavaSE_11)              DailyRewardsPlus (1.4.6 JavaSE_8)                    
[15:24:57] [Server thread/INFO]: | Prison |         DecentHolograms (2.8.17 JavaSE_8)             DeluxeForms (1.4 JavaSE_17)                          
[15:24:57] [Server thread/INFO]: | Prison |         DeluxeMenus (1.14.1-Release JavaSE_11)        DiscordSRV (1.29.0 JavaSE_8)                         
[15:24:57] [Server thread/INFO]: | Prison |         EconomyBridge (1.2.1 JavaSE_21)               Essentials (2.21.0 JavaSE_8)                         
[15:24:57] [Server thread/INFO]: | Prison |         ExcellentCrates (6.2.0 JavaSE_21)             ExcellentEnchants (4.3.3 JavaSE_21)                  
[15:24:57] [Server thread/INFO]: | Prison |         ExcellentShop (4.16.3 JavaSE_21)              FarmControl (1.3.0 JavaSE_17)                        
[15:24:57] [Server thread/INFO]: | Prison |         Gaia (2.0.4)                                  GeoLocation (1.1 JavaSE_17)                          
[15:24:57] [Server thread/INFO]: | Prison |         GravesX (4.9.7.3 JavaSE_11)                   IllegalStack (2.9.12a JavaSE_8)                      
[15:24:57] [Server thread/INFO]: | Prison |         InventoryRollbackPlus (1.7.3 JavaSE_8)        ItemEdit (3.7.1 JavaSE_8)                            
[15:24:57] [Server thread/INFO]: | Prison |         ItemJoin (6.1.3-RELEASE-b1085 JavaSE_8)       LWC (2.4.0 JavaSE_21)                                
[15:24:57] [Server thread/INFO]: | Prison |         LiteBans (2.17.2 JavaSE_8)                    LogFilter (3.0.6)                                    
[15:24:57] [Server thread/INFO]: | Prison |         LuckPerms (5.5.2 JavaSE_11)                   Minepacks (2.4.31.7-T20250421155916 JavaSE_8)        
[15:24:57] [Server thread/INFO]: | Prison |         Multiverse-Core (4.3.14 JavaSE_11)            Multiverse-Inventories (4.2.6 JavaSE_11)             
[15:24:57] [Server thread/INFO]: | Prison |         Multiverse-Portals (4.2.3 JavaSE_11)          MyCommand (5.7.5 JavaSE_8)                           
[15:24:57] [Server thread/INFO]: | Prison |         NBTAPI (2.15.0 JavaSE_8)                      Orebfuscator (5.5.2 JavaSE_17)                       
[15:24:57] [Server thread/INFO]: | Prison |         PAPIProxyBridge (1.8.1-3ca29f3)               PCGF_PluginLib (1.0.39.9-SNAPSHOT JavaSE_8)          
[15:24:57] [Server thread/INFO]: | Prison |         PhatLoots (5.6.7 JavaSE_17)                   PlaceholderAPI (2.11.6 JavaSE_8)                     
[15:24:57] [Server thread/INFO]: | Prison |         PlayerPoints (3.3.2 JavaSE_8)                 PlayerStats (2.3 JavaSE_16)                          
[15:24:57] [Server thread/INFO]: | Prison |         PlotSquared (7.5.3-Premium JavaSE_17)         Prison (3.3.0-alpha.19h JavaSE_8)                    
[15:24:57] [Server thread/INFO]: | Prison |         ProtocolLib (5.4.0-SNAPSHOT-748 JavaSE_17)    PvPManager (3.39.4 JavaSE_10)                        
[15:24:57] [Server thread/INFO]: | Prison |         RevEnchants (15.7 JavaSE_21)                  RevWEGApi (1.1 JavaSE_21)                            
[15:24:57] [Server thread/INFO]: | Prison |         SimplePortals (1.7.6 JavaSE_8)                SternalBoard (2.3.2 JavaSE_17)                       
[15:24:57] [Server thread/INFO]: | Prison |         TigerReports (5.3.5 JavaSE_8)                 TigerReportsSupports (1.6.13 JavaSE_8)               
[15:24:57] [Server thread/INFO]: | Prison |         Vault (1.7.3-b131 JavaSE_8)                   VentureChat (3.7.1 JavaSE_8)                         
[15:24:57] [Server thread/INFO]: | Prison |         ViaBackwards (5.3.2 JavaSE_17)                ViaVersion (5.3.2 JavaSE_17)                         
[15:24:57] [Server thread/INFO]: | Prison |         VotingPlugin (6.18.5-SNAPSHOT JavaSE_8)       Vulcan (2.9.6.1 J2SE_1_3)                            
[15:24:57] [Server thread/INFO]: | Prison |         WorldBorder (1.8.7 JavaSE_6)                  WorldEdit (7.3.14+7149-8bea01b JavaSE_21)            
[15:24:57] [Server thread/INFO]: | Prison |         WorldGuard (7.0.13+82fdc65 JavaSE_21)         WorldGuardExtraFlags (4.2.4-SNAPSHOT JavaSE_21)      
[15:24:57] [Server thread/INFO]: | Prison |         XConomy (2.26.3 JavaSE_8)                     floodgate (2.2.4-SNAPSHOT (b116-0e3163c) JavaSE_8)   
[15:24:57] [Server thread/INFO]: | Prison |         kotlin-stdlib (1.9.10 JavaSE_8)               nightcore (2.7.6.1 JavaSE_21)                        
[15:24:57] [Server thread/INFO]: | Prison |         packetevents (2.8.0 JavaSE_8)                
[15:24:57] [Server thread/INFO]: | Prison |  Prison Mine Bombs: 6[ CubeExplosion LargeExplosion MediumExplosion OofExplosion SmallExplosion WimpyExplosion ]
[15:24:57] [Server thread/INFO]: | Prison |  Prison Mine Bombs: 6[ CubeExplosion LargeExplosion MediumExplosion OofExplosion SmallExplosion WimpyExplosion ]
[15:24:57] [Server thread/INFO]: | Prison |  Prison - Finished loading.
[15:24:57] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.5
[15:24:57] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.5*-=-=-=-=-=-=-=-=-=-*
[15:24:57] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[15:24:57] [Server thread/INFO]: | Command file(s) found : 1
[15:24:57] [Server thread/INFO]: | Config : Ready.
[15:24:57] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[15:24:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[15:24:57] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[15:24:57] [Server thread/INFO]: | Custom commands loaded : 42
[15:24:57] [Server thread/INFO]: | You're running the latest version of MyCommand.
[15:24:57] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[15:24:57] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[15:24:57] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.7-T20250421155916
[15:24:57] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[15:24:57] [Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
[15:24:57] [Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
[15:24:57] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[15:24:57] [Server thread/INFO]: [at.pcgf.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[15:24:57] [Server thread/INFO]: [at.pcgf.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[15:24:57] [Server thread/INFO]: [Minepacks] Detected online mode in paper config: false
[15:24:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.31.7-T20250421155916]
[15:24:57] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[15:24:57] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[15:24:57] [Thread-58/INFO]: [Minepacks] Start downloading update: 2.4.32
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 10% of 233.5 kiB
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 20% of 233.5 kiB
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 30% of 233.5 kiB
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 40% of 233.5 kiB
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 50% of 233.5 kiB
[15:24:57] [Server thread/INFO]: [Afkpluspapi] Enabling Afkpluspapi v1.0.2
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 60% of 233.5 kiB
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 70% of 233.5 kiB
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 80% of 233.5 kiB
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 90% of 233.5 kiB
[15:24:57] [Thread-58/INFO]: [Minepacks] Downloading update: 100% of 233.5 kiB
[15:24:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: AFKPlus [3.4.9]
[15:24:57] [Thread-58/INFO]: [Minepacks] Finished updating.
[15:24:57] [Server thread/INFO]: [Afkpluspapi] Afkpluspapi v.1.0.2 has been enabled!
[15:24:57] [Server thread/INFO]: [GeoLocation] Enabling GeoLocation v1.1
[15:24:57] [Server thread/INFO]: [ChatManager] Enabling ChatManager v4.0.3
[15:24:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatmanager [4.0.3]
[15:24:58] [Server thread/INFO]: [FarmControl] Enabling FarmControl v1.3.0
[15:24:58] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.7.3
[15:24:58] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.4-232-12d8fe0 (MC: 1.21.4)
[15:24:58] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R3
[15:24:58] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: MySQL
[15:24:58] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[15:24:58] [Server thread/INFO]: [InventoryRollbackPlus] Tests completed: 5, Skipped: 0, Failed: 0
[15:24:58] [Server thread/INFO]: [InventoryRollbackPlus] All tests passed successfully.
[15:24:58] [Server thread/INFO]: [BugReport] Enabling BugReport v0.13.0
[15:24:58] [Server thread/INFO]: [BugReport] Connecting to remote database
[15:24:58] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Starting...
[15:24:59] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-5 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5734aad2
[15:24:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Start completed.
[15:24:59] [Server thread/INFO]: [BugReport] Connected to remote database
[15:24:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bugreports [0.13.0]
[15:24:59] [Server thread/INFO]: [BugReport] Found alternative language file: en_US.yml
[15:24:59] [Server thread/INFO]: [BugReport] Found en_US.yml
[15:24:59] [Server thread/INFO]: [BugReport] Getting keys from en_US.yml
[15:24:59] [Server thread/INFO]: [BugReport] Getting keys from en_US.yml
[15:24:59] [Server thread/INFO]: [BugReport] Checking for missing keys in en_US.yml
[15:24:59] [Server thread/INFO]: [BugReport] No missing keys found in en_US.yml
[15:24:59] [Server thread/INFO]: [BugReport] Loading en_US.yml
[15:24:59] [Server thread/WARN]: Could not register alias staff because it contains commands that do not exist: venturechat:staff
[15:25:00] [Server thread/INFO]: [spark] Starting background profiler...
[15:25:00] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:25:00] [Server thread/INFO]: Done preparing level "KingdomGateway" (37.049s)
[15:25:00] [Server thread/INFO]: Running delayed init tasks
[15:25:00] [Craft Scheduler Thread - 14 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[15:25:00] [Craft Scheduler Thread - 8 - ItemJoin/INFO]: [ItemJoin] Hooked into { Multiverse-Core, Multiverse-Inventories, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens, Vault }
[15:25:00] [Craft Scheduler Thread - 25 - AFKPlus/INFO]: [AFKPlus] AFKPlus file watcher started!
[15:25:00] [Craft Scheduler Thread - 19 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[15:25:00] [Craft Scheduler Thread - 8 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[15:25:00] [Craft Scheduler Thread - 32 - Prison/INFO]: | Prison |  Ranks: Finished First Join Checks: 1 ms
[15:25:00] [Craft Scheduler Thread - 38 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:25:00] [Craft Scheduler Thread - 37 - ItemJoin/INFO]: [ItemJoin] Checking for updates...
[15:25:00] [Craft Scheduler Thread - 16 - DailyRewardsPlus/INFO]: [DailyRewards+] Successfully acquired all player data for LeaderBoard.
[15:25:00] [Craft Scheduler Thread - 7 - GravesX/INFO]: [GravesX] Loading grave maps...
[15:25:00] [Craft Scheduler Thread - 38 - Vault/INFO]: [Vault] No new version available
[15:25:00] [Craft Scheduler Thread - 15 - VentureChat/INFO]: [shaded.com.zaxxer.hikari.HikariDataSource] HikariCP pool HikariPool-0 is starting.
[15:25:00] [Craft Scheduler Thread - 4 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] Congratulations! You are running the latest PlotSquared version
[15:25:00] [Craft Scheduler Thread - 21 - BetterTeams/WARN]: [BetterTeams] &4There is a new version of better teams released update here: (https://www.spigotmc.org/resources/better-teams.17129/)
[15:25:00] [Craft Scheduler Thread - 23 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: 
- https://www.spigotmc.org/resources/96927/
- https://modrinth.com/plugin/decentholograms
[15:25:00] [Craft Scheduler Thread - 19 - DecentHolograms/INFO]: [DecentHolograms] Loaded 146 holograms!
[15:25:00] [Craft Scheduler Thread - 8 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[15:25:00] [Craft Scheduler Thread - 37 - ItemJoin/INFO]: [ItemJoin] You are up to date!
[15:25:00] [Craft Scheduler Thread - 7 - GravesX/WARN]: [GravesX] Grave 1032a97b-a0d2-4065-868c-f3ac0d5cd4a2 at location World: fairyland, x: 49, y: 71, z: 449 is invalid. If this was caused by an addon, then report it to the plugin author. Reason: killer_type is null
[15:25:00] [Craft Scheduler Thread - 7 - GravesX/WARN]: [GravesX] Grave bfbf63a4-3470-4888-a9b9-0b7b07193ae5 at location World: PVPPointZone, x: -158, y: 64, z: 1074 is invalid. If this was caused by an addon, then report it to the plugin author. Reason: killer_type is null
[15:25:00] [Craft Scheduler Thread - 7 - GravesX/INFO]: [GravesX] Loaded 3 grave maps into cache.
[15:25:00] [Craft Scheduler Thread - 24 - AFKPlus/INFO]: [AFKPlus] There is no update available
[15:25:00] [Server thread/INFO]: [ItemJoin] 15/15 Custom item(s) loaded!
[15:25:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.3.2]
[15:25:00] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[15:25:01] [Server thread/WARN]: [ExcellentCrates] Problems in 'p1' crate (plugins/ExcellentCrates/crates/p1.yml):
[15:25:01] [Server thread/ERROR]: [ExcellentCrates] -> No rewards defined!
[15:25:01] [Server thread/ERROR]: [ExcellentCrates] -> Animation is invalid!
[15:25:01] [Server thread/WARN]: [ExcellentCrates] Problems in 'basic' crate (plugins/ExcellentCrates/crates/basic.yml):
[15:25:01] [Server thread/ERROR]: [ExcellentCrates] -> No rewards defined!
[15:25:01] [Server thread/ERROR]: [ExcellentCrates] -> Animation is invalid!
[15:25:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[15:25:01] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[15:25:01] [Server thread/INFO]: [GravesX] Registering Crash Handler...
[15:25:01] [Server thread/INFO]: [GravesX] Registered Crash Handler. Server will handle crashes in a separate thread.
[15:25:01] [Craft Scheduler Thread - 22 - TigerReports/INFO]: [TigerReports] The plugin is using a MySQL database.
[15:25:02] [Server thread/INFO]: [Citizens] Loaded 189 NPCs.
[15:25:02] [Server thread/INFO]: [Multiverse-Inventories] First run!
[15:25:02] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion prisonmines due to a missing plugin: PrisonMines
[15:25:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[15:25:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[15:25:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[15:25:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[15:25:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[15:25:02] [Server thread/INFO]: 5 placeholder hook(s) registered!
[15:25:02] [Server thread/INFO]: [TigerReports] The plugin is using BungeeCord.
[15:25:02] [Server thread/INFO]: Done (76.046s)! For help, type "help"
[15:25:02] [Craft Scheduler Thread - 8 - GravesX/INFO]: [GravesX] Loading Holograms into Hologram Map Cache...
[15:25:02] [Craft Scheduler Thread - 7 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for armorstand...
[15:25:02] [Craft Scheduler Thread - 24 - GravesX/INFO]: [GravesX] Loading Block Map cache...
[15:25:02] [Craft Scheduler Thread - 37 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for itemframe...
[15:25:02] [Craft Scheduler Thread - 35 - GravesX/INFO]: [GravesX] Loading Entity Data Map Cache for citizensnpc...
[15:25:02] [Craft Scheduler Thread - 7 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for armorstand.
[15:25:02] [Craft Scheduler Thread - 35 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Data Map Cache for citizensnpc.
[15:25:02] [Craft Scheduler Thread - 37 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for itemframe.
[15:25:02] [Craft Scheduler Thread - 24 - GravesX/INFO]: [GravesX] Loaded 3 Blocks into the Block Map Cache.
[15:25:02] [Craft Scheduler Thread - 8 - GravesX/INFO]: [GravesX] Loaded 9 Holograms into Hologram Map Cache.
[15:25:03] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[15:25:03] [Craft Scheduler Thread - 11 - Essentials/WARN]: [Essentials] There is a new EssentialsX version available for download: 2.21.1.
[15:25:03] [Craft Scheduler Thread - 11 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html?branch=stable
[15:25:03] [Craft Scheduler Thread - 11 - TigerReportsSupports/INFO]: [net.dv8tion.jda.api.JDA] Login Successful!
[15:25:04] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[15:25:04] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.api.JDA] Finished Loading!
[15:25:06] [Craft Scheduler Thread - 35 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[15:25:06] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[15:25:06] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[15:25:07] [Server thread/INFO]: [DeluxeForms] Product licensed for: %%__USERNAME__%%(%%__USER__%%)
[15:25:09] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2501ms or 50 ticks behind
[15:25:09] [Server thread/INFO]: | Prison |  MineReset startup air-count: Completed. [ 34 of  34]:  Mines not processed: 0
[15:25:11] [Craft Scheduler Thread - 21 - Prison/INFO]: | Prison |  Prison is up to date!  Current version: 3.3.0-alpha.19h.  Visit our discord server to get help and find pre-release versions. 
[15:25:13] [Server thread/INFO]: [RevEnchants] Successfully saved to all players data!
[15:25:21] [User Authenticator #0/INFO]: UUID of player StarGamerShalom is 9b8a7ce2-beb2-467d-a2cf-e8345a3c96d8
[15:25:23] [Server thread/INFO]: Player join event triggered
[15:25:23] [Server thread/INFO]: [VotingPlugin] Login: StarGamerShalom (9b8a7ce2-beb2-467d-a2cf-e8345a3c96d8)
[15:25:23] [Server thread/INFO]: StarGamerShalom[/73.175.96.106:60716] logged in with entity id 2710 at ([fairyland]-17.561222701564706, 205.0, 262.08394062988975)
[15:25:23] [Server thread/INFO]: Sending message: [GeoIP] StarGamerShalom from United States just joined!
[15:25:23] [Server thread/INFO]: [AltDetector] StarGamerShalom may be an alt of .EliyahTank, .MysteryMyka, EchoAb1
[15:25:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[15:25:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[15:25:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Prison' to create a bStats instance!
[15:25:31] [Server thread/INFO]: Enchants ยป Given Auto Reel enchanted book to StarGamerShalom.
[15:25:41] [Server thread/INFO]: StarGamerShalom issued server command: /deop StarGamerShalom
[15:25:41] [Server thread/INFO]: [Bandits StarGamerShalom: Made StarGamerShalom no longer a server operator]
[15:26:10] [Server thread/INFO]: Made StarGamerShalom a server operator
[15:26:33] [Server thread/INFO]: StarGamerShalom issued server command: /npc list 10
[15:26:45] [Server thread/INFO]: StarGamerShalom issued server command: /npc select 169
[15:26:50] [Server thread/INFO]: StarGamerShalom issued server command: /npc command
[15:33:33] [Server thread/INFO]: [RevEnchants] Successfully saved to all players data!
[15:35:56] [Server thread/INFO]: StarGamerShalom issued server command: /buglist
[15:36:23] [Server thread/WARN]: [BugReport] Error sending notification to Discord: Discord API error: HTTP/1.1 404 Not Found
Date: Mon, 09 Jun 2025 19:36:23 GMT
Content-Type: application/json
Content-Length: 45
Connection: close
Set-Cookie: __dcfduid=06ce878a456911f0a1151a8a9d807bd6; Expires=Sat, 08-Jun-2030 19:36:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax
strict-transport-security: max-age=31536000; includeSubDomains; preload
x-ratelimit-bucket: 3d2712a9e4fe17cc9d3fed4a8e672e5f
x-ratelimit-limit: 5
x-ratelimit-remaining: 4
x-ratelimit-reset: 1749497785
x-ratelimit-reset-after: 1
x-discord-features: webhooks
via: 1.1 google
alt-svc: h3=":443"; ma=86400
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=IPOgN%2FFaJT9OisCUi0akqCZj4stkskrf1bS3y9sQlvco%2Fpj0hzo%2Fsc%2BsjFgwqxHJDT6YX16V%2Fl8k30dU12uyRKwqejGw0EDP6GmeOhg6IqYZScH2GvZd4JTsMh%2Bx"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
X-Content-Type-Options: nosniff
Reporting-Endpoints: csp-sentry="https://o64374.ingest.sentry.io/api/5441894/security/?sentry_key=8fbbce30bf5244ec9429546beef21870&sentry_environment=stable"
Content-Security-Policy: frame-ancestors 'none'; default-src https://o64374.ingest.sentry.io; report-to csp-sentry; report-uri https://o64374.ingest.sentry.io/api/5441894/security/?sentry_key=8fbbce30bf5244ec9429546beef21870&sentry_environment=stable
Set-Cookie: __sdcfduid=06ce878a456911f0a1151a8a9d807bd67fcb7a26219110b29c55926da96ea5ac017c4f5179d9ab1375898451b78657b3; Expires=Sat, 08-Jun-2030 19:36:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax
Set-Cookie: __cfruid=1e3e834e9abdc3ae9f0c0ad8cb9de57f642c9183-1749497783; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None
Set-Cookie: _cfuvid=FWGXv07AWdLFu7kocjHBq5EzCyobKmaojLLn1mYaPmw-1749497783669-0.0.1.1-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None
Server: cloudflare
CF-RAY: 94d313db4d090f6c-EWR

{"message": "Unknown Message", "code": 10008}

[15:36:57] [Server thread/INFO]: StarGamerShalom issued server command: /mines blockEvent list y
[15:37:43] [Server thread/INFO]: StarGamerShalom issued server command: /mines blockEvent update Y 5 give {player} echo_shard 1;{msg} &f You Found a &f&lCommon Echo Shard!
[15:37:56] [Server thread/INFO]: StarGamerShalom issued server command: /buglist
[15:38:03] [Server thread/WARN]: [BugReport] Error sending notification to Discord: Discord API error: HTTP/1.1 404 Not Found
Date: Mon, 09 Jun 2025 19:38:03 GMT
Content-Type: application/json
Content-Length: 40
Connection: close
Set-Cookie: __dcfduid=4275ffac456911f0bce76a84074b5335; Expires=Sat, 08-Jun-2030 19:38:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax
strict-transport-security: max-age=31536000; includeSubDomains; preload
via: 1.1 google
alt-svc: h3=":443"; ma=86400
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=n8DH9hZhwbuNdVWy%2FRLIPdHlIkfC9zxg5drWWCOrPjEWyywTC%2FqRBx4uoLUyl%2B6UKq4I0KrDVYaSOfMXWJkIrdvex3%2Fli%2BxFjau%2F1E3lbRYWNMzX6U6JVaKOTj12"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
X-Content-Type-Options: nosniff
Reporting-Endpoints: csp-sentry="https://o64374.ingest.sentry.io/api/5441894/security/?sentry_key=8fbbce30bf5244ec9429546beef21870&sentry_environment=stable"
Content-Security-Policy: frame-ancestors 'none'; default-src https://o64374.ingest.sentry.io; report-to csp-sentry; report-uri https://o64374.ingest.sentry.io/api/5441894/security/?sentry_key=8fbbce30bf5244ec9429546beef21870&sentry_environment=stable
Set-Cookie: __sdcfduid=4275ffac456911f0bce76a84074b5335556a4fbcd257373c60d32cb3e8639816a3fbe3a07f96f583f4fddefe174a7390; Expires=Sat, 08-Jun-2030 19:38:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax
Set-Cookie: __cfruid=7a86972cb03259d16c948dfad97c1fdeb826248f-1749497883; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None
Set-Cookie: _cfuvid=EsyOWAiaPKKfLbPajMB8XMbCkz90.z.l5rEwBbr9xbQ-1749497883751-0.0.1.1-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None
Server: cloudflare
CF-RAY: 94d3164ccc894544-EWR

{"message": "404: Not Found", "code": 0}