Paste #121266: Unnamed Server Log Paste

Date: 2024/03/24 16:04:13 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


[00:22:57] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[00:22:58] [ServerMain/INFO]: Loaded 1174 recipes
[00:22:58] [ServerMain/INFO]: Loaded 1271 advancements
[00:22:58] [Server thread/INFO]: Starting minecraft server version 1.20.4
[00:22:58] [Server thread/INFO]: Loading properties
[00:22:58] [Server thread/INFO]: This server is running Purpur version git-Purpur-2128 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: 236b06a on HEAD)
[00:22:59] [Server thread/INFO]: Server Ping Player Sample Count: 12
[00:22:59] [Server thread/INFO]: Using 4 threads for Netty based IO
[00:22:59] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[00:22:59] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 512 bits (int)
[00:22:59] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 512 bits (float)
[00:22:59] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[00:22:59] [Server thread/INFO]: Default game type: SURVIVAL
[00:22:59] [Server thread/INFO]: Generating keypair
[00:22:59] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[00:22:59] [Server thread/INFO]: Using epoll channel type
[00:22:59] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[00:22:59] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 10 libraries... please wait
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/dev/jorel/commandapi-bukkit-shade/9.3.0/commandapi-bukkit-shade-9.3.0.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-minimessage/4.15.0/adventure-text-minimessage-4.15.0.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-api/4.15.0/adventure-api-4.15.0.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-key/4.15.0/adventure-key-4.15.0.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-plain/4.15.0/adventure-text-serializer-plain-4.15.0.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-ansi/4.15.0/adventure-text-serializer-ansi-4.15.0.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/ansi/1.0.3/ansi-1.0.3.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/json/json/20220320/json-20220320.jar
[00:22:59] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[00:22:59] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Initializing Terra...
[00:22:59] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config.yml
[00:22:59] [Server thread/INFO]: [com.dfsek.terra.config.PluginConfigImpl] Loading config values from config.yml
[00:23:00] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading 37 Terra addons:
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]
        - [email protected]
        - [email protected]+ab60f14ff
[00:23:00] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Terra addons successfully loaded.
[00:23:00] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Finished initialization.
[00:23:00] [Server thread/INFO]: [eco] Initializing eco
[00:23:00] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loading 1 libraries... please wait
[00:23:00] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loaded library /home/********/libraries/dev/dejvokep/boosted-yaml-spigot/1.3/boosted-yaml-spigot-1.3.jar
[00:23:00] [Server thread/INFO]: [EcoEnchants] Initializing EcoEnchants
[00:23:00] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.116
[00:23:00] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[00:23:00] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.5-SNAPSHOT-651;a502287
[00:23:01] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@5e05cbec]
[00:23:01] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[00:23:01] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[00:23:01] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
[00:23:01] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.5.1-9aedaa15
[00:23:01] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[00:23:01] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[00:23:01] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3328)
[00:23:01] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.168.0
[00:23:01] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[00:23:01] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[00:23:01] [Server thread/INFO]: [Terra] Loading server plugin Terra v6.4.3-BETA+ab60f14ff
[00:23:01] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[00:23:01] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[00:23:01] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.6
[00:23:01] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.1
[00:23:01] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.8.6
[00:23:01] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.5.2
[00:23:01] [Server thread/INFO]: [eco] Loading server plugin eco v6.69.0
[00:23:01] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v3.7.1
[00:23:01] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[00:23:01] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.6.11.2
[00:23:01] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.19.0
[00:23:02] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (166 ms).
[00:23:02] [Server thread/INFO]: [Shopkeepers] Loading config.
[00:23:02] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[00:23:02] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[00:23:02] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[00:23:02] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.60
[00:23:02] [Server thread/INFO]: [AuxProtect] Loading server plugin AuxProtect v1.2.11.2
[00:23:02] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v7.3
[00:23:02] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[00:23:02] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.3-SNAPSHOT
[00:23:02] [Server thread/INFO]: [EcoEnchants] Loading server plugin EcoEnchants v12.3.5
[00:23:02] [Server thread/INFO]: [libreforge] Initializing libreforge
[00:23:02] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.56.5
[00:23:02] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[00:23:02] [Server thread/INFO]: [HMCWraps] Loading server plugin HMCWraps v1.4.3
[00:23:02] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15-b636bef
[00:23:02] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.14.1
[00:23:02] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.1.0 (build 854)
[00:23:02] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.0.0
[00:23:02] [Server thread/INFO]: [dDiscordBot] Loading server plugin dDiscordBot v0.7 (build 300)
[00:23:02] [Server thread/INFO]: [EZColors] Loading server plugin EZColors v2.2.4
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[00:23:02] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[00:23:02] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.9.0
[00:23:02] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[00:23:02] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.116
[00:23:03] [Server thread/INFO]:         __    
[00:23:03] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.116
[00:23:03] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[00:23:03] [Server thread/INFO]: 
[00:23:03] [Server thread/INFO]: [LuckPerms] Loading configuration...
[00:23:03] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[00:23:03] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[00:23:03] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[00:23:03] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 865ms)
[00:23:03] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[00:23:03] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[00:23:03] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[00:23:03] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[00:23:03] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[00:23:03] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.5-SNAPSHOT-651;a502287
[00:23:03] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[00:23:03] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[00:23:03] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[00:23:03] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[00:23:03] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R3.PaperweightFaweAdapter as the Bukkit adapter
[00:23:04] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
[00:23:04] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[00:23:04] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[00:23:04] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[00:23:04] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[00:23:04] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[00:23:04] [Server thread/INFO]: [NexEngine] Plugin loaded in 32 ms!
[00:23:04] [Server thread/INFO]: [Terra] Enabling Terra v6.4.3-BETA+ab60f14ff
[00:23:04] [Server thread/INFO]: [com.dfsek.terra.bukkit.TerraBukkitPlugin] Running on Minecraft version v1.20.3 with server implementation Purpur.
[00:23:04] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config packs...
[00:23:04] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: ReimagEND-v2.2.4.zip
[00:23:04] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "REIMAGEND:REIMAGEND"
[00:23:04] [ForkJoinPool.commonPool-worker-4/WARN]: [com.dfsek.terra.bukkit.handles.BukkitWorldHandle] Translating minecraft:grass to minecraft:short_grass. In 1.20.3 minecraft:grass was renamed to minecraft:short_grass. You are advised to perform this rename in your config backs as this translation will be removed in the next major version of Terra.
[00:23:04] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "REIMAGEND:REIMAGEND" v2.2.3 by Aureus, RogueShade in 851.843472ms.
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: default.zip
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "OVERWORLD:OVERWORLD"
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "OVERWORLD:OVERWORLD" v1.3.4 by Astrash, Sancires, Aureus in 292.836083ms.
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: void.zip
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "VOIDWORLD:VOIDWORLD"
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "VOIDWORLD:VOIDWORLD" v1.0.0 by Aureus in 1.787746ms.
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loaded packs.
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.AwfulBukkitHacks] Hacking biome registry...
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.AwfulBukkitHacks] Doing tag garbage....
[00:23:05] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.6
[00:23:05] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.2.5
[00:23:05] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[00:23:05] [Server thread/INFO]: [eco] Enabling eco v6.69.0
[00:23:05] [Server thread/INFO]: [eco] Loading eco
[00:23:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.69.0]
[00:23:05] [Server thread/INFO]: [eco] Loaded integrations: Oraxen, Vulcan, Denizen, MythicMobs, Vault, GriefPrevention, PlayerPoints, CMI, PlaceholderAPI, WorldGuard
[00:23:05] [Server thread/INFO]: [eco] Scanning for conflicts...
[00:23:05] [Server thread/INFO]: [eco] No conflicts found!
[00:23:05] [Server thread/INFO]: [EcoEnchants] Enabling EcoEnchants v12.3.5
[00:23:05] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants
[00:23:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoenchants [12.3.5]
[00:23:05] [Server thread/INFO]: [EcoEnchants] Loaded integrations: CMI
[00:23:05] [Server thread/INFO]: Preparing level "world"
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.NMSInjectListener] Preparing to take over the world: world
[00:23:05] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.NMSInjectListener] Successfully injected into world.
[00:23:06] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.NMSInjectListener] Preparing to take over the world: world_the_end
[00:23:06] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.NMSInjectListener] Successfully injected into world.
[00:23:06] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[00:23:06] [Server thread/INFO]: Time elapsed: 80 ms
[00:23:06] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[00:23:06] [Server thread/INFO]: Time elapsed: 13 ms
[00:23:06] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[00:23:06] [Server thread/INFO]: Time elapsed: 13 ms
[00:23:06] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[00:23:06] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[00:23:06] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[00:23:06] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[00:23:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[00:23:06] [Server thread/INFO]: [WorldGuard] Loading region data...
[00:23:06] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[00:23:06] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[00:23:06] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.5.1-9aedaa15
[00:23:06] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.4)...
[00:23:06] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[00:23:07] [Server thread/INFO]: [MythicMobs] Mythic GriefPrevention Support has been enabled!
[00:23:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[00:23:07] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[00:23:07] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[00:23:07] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[00:23:07] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[00:23:07] [Server thread/INFO]: [MythicMobs] Base directory /home/********/plugins/MythicMobs/SavedData
[00:23:07] [Server thread/INFO]: [MythicMobs] Module directory /home/********/plugins/MythicMobs/SavedData/worlds
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading Packs...
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading Items...
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading Skills...
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/********/plugins/MythicMobs/stats.yml
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[00:23:08] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[00:23:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 27 mobs.
[00:23:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 20 vanilla mob overrides.
[00:23:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[00:23:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 37 skills.
[00:23:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[00:23:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[00:23:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[00:23:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[00:23:08] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[00:23:08] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[00:23:08] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.5.1 ( build 9aedaa15 ) has been successfully loaded!
[00:23:08] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3328)
[00:23:08] [Server thread/INFO]: [Citizens] Loading external libraries
[00:23:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[00:23:08] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[00:23:08] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.168.0
[00:23:09] [Server thread/INFO]:  Version v1_20_R3 has been detected.
[00:23:09] [Server thread/INFO]:  Oraxen will use the NMSHandler for this version.
[00:23:09] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[00:23:09] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[00:23:09] [Server thread/INFO]:  Converting global lang file to individual language files...
[00:23:09] [Server thread/INFO]:  Verifying formatting for textures and models...
[00:23:09] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[00:23:09] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[00:23:09] [Server thread/INFO]: 
[00:23:09] [Server thread/INFO]:  Attempting to merge imported font files...
[00:23:09] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[00:23:09] [Server thread/INFO]:  The imported font files have not been deleted.
[00:23:09] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[00:23:09] [Server thread/INFO]: 
[00:23:09] [Server thread/INFO]:  Successfully loaded on Debian GNU/Linux 11 (bullseye)
[00:23:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oraxen [1.168.0]
[00:23:09] [Server thread/INFO]:  Plugin "PlaceholderAPI" detected, enabling hooks
[00:23:09] [Server thread/INFO]:  Plugin "MythicMobs" detected, enabling hooks
[00:23:09] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1803-REL)
[00:23:09] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1374), impl for Spigot v1.3.0-SNAPSHOT (build 1803-REL) 
[00:23:09] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.1 
[00:23:09] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[00:23:09] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[00:23:09] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[00:23:09] [Server thread/INFO]: +> [Denizen]  
[00:23:09] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[00:23:09] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[00:23:09] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[00:23:09] [Server thread/INFO]: +> [Denizen] version: 1.3.0-SNAPSHOT (build 1803-REL) 
[00:23:09] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[00:23:09] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[00:23:10] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[00:23:10] [Server thread/INFO]: +> [Denizen] Loaded 152 core commands and 30 core object types, at 691ms from start. 
[00:23:10] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[00:23:10] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 6ms, processing 4ms. 
[00:23:10] [Server thread/INFO]: +> [Denizen] Final full init took 717ms. 
[00:23:10] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[00:23:10] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[00:23:10] [Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: Plushies is not valid!
Skipping item: grass
[00:23:10] [Server thread/INFO]: [DeluxeMenus] 8 GUI menus loaded!
[00:23:10] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[00:23:10] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[00:23:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[00:23:10] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[00:23:10] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[00:23:10] [Server thread/INFO]: [GriefPrevention] 0 total claims loaded.
[00:23:10] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[00:23:10] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[00:23:10] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[00:23:10] [Server thread/INFO]: [GriefPrevention] Boot finished.
[00:23:10] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.8.6
[00:23:10] [Server thread/INFO]: [Vulcan] Server Version: 1.20.4 detected!
[00:23:10] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[00:23:10] [Server thread/INFO]: [Vulcan] BStats enabled!
[00:23:10] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[00:23:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.8.6]
[00:23:10] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[00:23:10] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.5.2
[00:23:10] [Server thread/INFO]: Server version: v1_20_R3 - 1.20.4 - purpur  git-Purpur-2128 (MC: 1.20.4)
[00:23:11] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[00:23:11] [Server thread/INFO]: CMI hooked.
[00:23:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [**.**.**.**]
[00:23:11] [Server thread/INFO]: PlaceholderAPI hooked.
[00:23:11] [Server thread/INFO]: Updated (EN) language file. Took 15ms
[00:23:11] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.7.1
[00:23:11] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[00:23:11] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[00:23:11] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_20_R3
[00:23:11] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[00:23:11] [Server thread/INFO]: [AuctionHouse] Loaded 1 listing
[00:23:11] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[00:23:11] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[00:23:11] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[00:23:11] [Server thread/INFO]: --------------------
[00:23:11] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[00:23:11] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[00:23:11] [Server thread/INFO]: --------------------
[00:23:11] [Server thread/INFO]: [CMI] Enabling CMI v9.6.11.2
[00:23:11] [Server thread/INFO]: _______________________________________________________
[00:23:11] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[00:23:11] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[00:23:11] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[00:23:11] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[00:23:11] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[00:23:11] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[00:23:11] [Server thread/INFO]: _______________________________________________________
[00:23:11] [Server thread/INFO]: Integrating PaperSpigot async methods
[00:23:11] [Server thread/INFO]: Vault found. (Loaded: true)
[00:23:11] [Server thread/INFO]: Citizens found. (Loaded: true)
[00:23:11] [Server thread/INFO]: 53 Enabled and 6 Disabled modules
[00:23:11] [Server thread/INFO]: Loaded (1) portals into memory. Took 8ms
[00:23:11] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[00:23:11] [Server thread/INFO]: Permission plugin: LuckPerms5.4.116
[00:23:11] [Server thread/INFO]: Initialized Cipher256 AES
[00:23:11] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 18ms
[00:23:11] [Server thread/INFO]: Loaded (1) custom text's into memory. Took 1ms
[00:23:11] [Server thread/INFO]: (RandomTeleportation) Can't find world with (spawn) name
[00:23:11] [Server thread/INFO]: 3.42.0 data base type detected
[00:23:11] [Server thread/INFO]: Started SqLite data base. Took 53ms
[00:23:11] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: CMIEconomy
[00:23:11] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 0ms
[00:23:11] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[00:23:11] [Server thread/INFO]: Loaded (3) cooldowns into memory. Took 0ms
[00:23:11] [Server thread/INFO]: Loaded (144) custom mob heads into memory. Took 6ms
[00:23:11] [Server thread/INFO]: Loaded (6) warmups into memory. Took 0ms
[00:23:11] [Server thread/INFO]: Initializing BungeeCord
[00:23:11] [Server thread/INFO]: Loaded (5) kits into memory. Took 118ms
[00:23:11] [Server thread/INFO]: Loaded (7) ranks into memory. Took 5ms
[00:23:11] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 1ms
[00:23:11] [Server thread/INFO]: Loaded (46) player data into memory. Took 8ms
[00:23:11] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 0ms
[00:23:11] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[00:23:11] [Server thread/INFO]: Loaded (2) custom alias into memory. Took 1ms
[00:23:11] [Server thread/INFO]: Registered events. Took 47ms
[00:23:11] [Server thread/INFO]: Loaded (4) event action commands into memory. Took 2ms
[00:23:12] [Server thread/INFO]: Loaded (EN) language file into memory. Took 52ms
[00:23:12] [Server thread/INFO]: Loaded (245) worth values into memory. Took 8ms
[00:23:12] [Server thread/INFO]: Loaded (3) warps into memory. Took 1ms
[00:23:12] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[00:23:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [**.**.**.**]
[00:23:12] [Server thread/INFO]: PlaceholderAPI hooked.
[00:23:12] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[00:23:12] [Server thread/INFO]: Starting world timer.
[00:23:12] [Server thread/INFO]: Initializing world manager.
[00:23:12] [Server thread/INFO]: Loaded (4) schedules into memory. Took 3ms
[00:23:12] [Server thread/INFO]: Loaded GeoLiteCity
[00:23:12] [Server thread/INFO]: Loaded (3) holograms into memory. Took 19ms
[00:23:12] [Server thread/INFO]: Loaded (3) skin cache entries into memory. Took 0ms
[00:23:12] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 0ms
[00:23:12] [Server thread/INFO]: Version 9.6.11.2 has been enabled
[00:23:12] [Server thread/INFO]: _______________________________________________________
[00:23:12] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[00:23:12] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.19.0
[00:23:12] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[00:23:12] [Server thread/INFO]: [Shopkeepers] Loading the data of 6 shopkeepers ...
[00:23:12] [Server thread/INFO]: [spark] Enabling spark v1.10.60
[00:23:12] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[00:23:12] [Server thread/INFO]: [spark] Starting background profiler...
[00:23:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.60]
[00:23:12] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[00:23:12] [Server thread/INFO]: [AuxProtect] Enabling AuxProtect v1.2.11.2
[00:23:12] [Server thread/INFO]: [AuxProtect] No donor key
[00:23:12] [Server thread/INFO]: [AuxProtect] Vault hooked
[00:23:12] [Server thread/INFO]: [AuxProtect] AuctionHouse hooked
[00:23:12] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v7.3
[00:23:12] [Server thread/INFO]: [AntiPopup] Config enabled.
[00:23:12] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[00:23:12] [Server thread/INFO]: [AntiPopup] Hooked on 1.20.4
[00:23:12] [Server thread/INFO]: [AntiPopup] Commands registered.
[00:23:12] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[00:23:12] [Server thread/INFO]: [TAB] Enabling TAB v4.1.3-SNAPSHOT
[00:23:12] [Server thread/INFO]: [TAB] Loaded NMS hook in 53ms
[00:23:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.3-SNAPSHOT]
[00:23:12] [Server thread/INFO]: [TAB] Enabled in 80ms
[00:23:12] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[00:23:12] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[00:23:12] [Server thread/INFO]: [DeluxeTags] 27 tags loaded
[00:23:12] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[00:23:12] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[00:23:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[00:23:12] [Server thread/INFO]: [DeluxeTags] ----------------------------
[00:23:12] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[00:23:12] [Server thread/INFO]: [DeluxeTags]  
[00:23:12] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[00:23:12] [Server thread/INFO]: [DeluxeTags] The latest version
[00:23:12] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[00:23:12] [Server thread/INFO]: [DeluxeTags]  
[00:23:12] [Server thread/INFO]: [DeluxeTags] ----------------------------
[00:23:12] [Server thread/INFO]: [HMCWraps] Enabling HMCWraps v1.4.3
[00:23:12] [Server thread/INFO]: [HMCWraps] Plugin 'PlaceholderAPI' found. Initializing hook.
[00:23:12] [Server thread/INFO]: [HMCWraps] Plugin 'Oraxen' found. Initializing hook.
[00:23:12] [Server thread/INFO]: [HMCWraps] Loaded all configuration files and wraps. (86 wraps)
[00:23:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hmcwraps [1.4.3]
[00:23:12] [Server thread/INFO]: [Quests] Enabling Quests v3.15-b636bef
[00:23:12] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[00:23:12] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.14.1
[00:23:12] [Server thread/INFO]: [LiteBans] Using system locale (en)
[00:23:12] [Server thread/INFO]: [LiteBans] Loaded 3 templates from templates.yml!
[00:23:12] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[00:23:12] [Server thread/INFO]: [LiteBans] Connecting to database...
[00:23:12] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[00:23:13] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[00:23:13] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (79.2 ms).
[00:23:13] [Server thread/INFO]: [LiteBans] Database connection fully initialized (81.4 ms).
[00:23:13] [Server thread/INFO]: [LiteBans] v2.14.1 enabled. Startup took 138 ms.
[00:23:13] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.1.0 (build 854)
[00:23:13] [Server thread/INFO]: +> [Depenizen] Depenizen loading... 
[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'CoreProtect'! 
[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'LuckPerms'! 
[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldEdit'! 
[00:23:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: denizen [2.0.0]
[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'PlaceholderAPI'! 
[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'PlayerPoints'! 
[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldGuard'! 
[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Shopkeepers'! 
[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'MythicMobs'! 
[00:23:13] [Server thread/INFO]:  ERROR!
                 Error Message: Unable to register property 'QuestsPlayerProperties'! 
[00:23:13] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/player/Quester
[Error Continued]   java.base/java.lang.Class.getDeclaredMethods0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3402)
[Error Continued]   java.base/java.lang.Class.privateGetPublicMethods(Class.java:3427)
[Error Continued]   java.base/java.lang.Class.getMethods(Class.java:2019)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.objects.properties.PropertyParser.registerProperty(PropertyParser.java:249)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:29)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.player.Quester
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[Error Continued]   java.base/java.lang.Class.getDeclaredMethods0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3402)
[Error Continued]   java.base/java.lang.Class.privateGetPublicMethods(Class.java:3427)
[Error Continued]   java.base/java.lang.Class.getMethods(Class.java:2019)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.objects.properties.PropertyParser.registerProperty(PropertyParser.java:249)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:29)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)

[00:23:13] [Server thread/INFO]: Additional Error Info: Could not register command com.denizenscript.depenizen.bukkit.commands.quests.QuestsCommand, exception follows... 
[00:23:13] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/player/Quester
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.newInstance(Class.java:626)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.scripts.commands.CommandRegistry.registerCommand(CommandRegistry.java:159)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:30)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.player.Quester
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.newInstance(Class.java:626)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.scripts.commands.CommandRegistry.registerCommand(CommandRegistry.java:159)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:30)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)

[00:23:13] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerCompletesQuestScriptEvent': 
[00:23:13] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPreCompleteQuestEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2271)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:31)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPreCompleteQuestEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2271)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:31)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)

[00:23:13] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerFailsQuestScriptEvent': 
[00:23:13] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPreFailQuestEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2271)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:32)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPreFailQuestEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2271)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:32)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)

[00:23:13] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerStartsQuestScriptEvent': 
[00:23:13] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPreStartQuestEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2271)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:33)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPreStartQuestEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2271)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:33)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)

[00:23:13] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerQuestStageChangeScriptEvent': 
[00:23:13] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPostChangeStageEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2271)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:34)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPostChangeStageEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3373)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2271)
[Error Continued]   Denizen-1.3.0-b1803-REL.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:34)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b854.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:651)
[Error Continued]   org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:562)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:678)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:438)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[Error Continued]   net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1148)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:833)

[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Quests'! 
[00:23:13] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'GriefPrevention'! 
[00:23:13] [Server thread/INFO]: +> [Depenizen] Depenizen loaded! 10 plugin bridge(s) loaded (of 42 available) 
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.0.0
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[00:23:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.0.0]
[00:23:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[00:23:13] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@1b0ddfa0
[00:23:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Loaded 0 crate keys.
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Loaded 0 crates.
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[00:23:13] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 125 ms!
[00:23:13] [Server thread/INFO]: [dDiscordBot] Enabling dDiscordBot v0.7 (build 300)
[00:23:13] [Server thread/INFO]: +> [DenizenDisco...] dDiscordBot loaded! 
[00:23:13] [Server thread/INFO]: +> [JDA] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". 
[00:23:13] [Server thread/INFO]: +> [JDA] SLF4J: Defaulting to no-operation (NOP) logger implementation 
[00:23:13] [Server thread/INFO]: +> [JDA] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. 
[00:23:13] [Server thread/INFO]: [EZColors] Enabling EZColors v2.2.4
[00:23:13] [Server thread/INFO]:  Successfully downloaded 12 languages from the cloud!
[00:23:13] [Server thread/INFO]:  Loading EZColors v2.2.4!
[00:23:13] [Server thread/INFO]:  Found a compatible version. Hooking into V1_20_R3!
[00:23:13] [Server thread/INFO]:  Using HIGHEST as the Chat Listener.
[00:23:13] [Server thread/INFO]:  Found PlaceholderAPI. Loading hook!
[00:23:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ezcolors [1.0.0]
[00:23:13] [Server thread/INFO]:  Successfully Loaded EZColors v2.2.4 in 658ms!
[00:23:13] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[00:23:14] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[00:23:14] [Server thread/INFO]: [ajLeaderboards] Loaded 3 boards
[00:23:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[00:23:14] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[00:23:14] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[00:23:14] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.9.0
[00:23:14] [Server thread/INFO]: [libreforge] Enabling libreforge v4.56.5
[00:23:14] [Server thread/INFO]: [libreforge] Loading libreforge
[00:23:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.56.5]
[00:23:14] [Server thread/INFO]: [libreforge] Loaded integrations: Citizens, TAB, Vault, WorldGuard, Terra
[00:23:14] [Server thread/INFO]: [libreforge] 
[00:23:14] [Server thread/INFO]: [libreforge] Hey, what's this plugin doing here? I didn't install it!
[00:23:14] [Server thread/INFO]: [libreforge] libreforge is the effects system for plugins like EcoEnchants,
[00:23:14] [Server thread/INFO]: [libreforge] EcoJobs, EcoItems, etc. If you're looking for config options for
[00:23:14] [Server thread/INFO]: [libreforge] things like cooldown messages, lrcdb, and stuff like that, you'll
[00:23:14] [Server thread/INFO]: [libreforge] find it under /plugins/libreforge
[00:23:14] [Server thread/INFO]: [libreforge] 
[00:23:14] [Server thread/INFO]: [libreforge] Don't worry about updating libreforge, it's handled automatically!
[00:23:14] [Server thread/INFO]: [libreforge] 
[00:23:14] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[00:23:14] [Server thread/INFO]: Running delayed init tasks
[00:23:14] [Craft Scheduler Thread - 10 - AuxProtect/INFO]: [AuxProtect] Connecting to database...
[00:23:14] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[00:23:14] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[00:23:14] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[00:23:14] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[00:23:14] [Craft Scheduler Thread - 10 - AuxProtect/INFO]: [AuxProtect] Connected!
[00:23:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.2.6]
[00:23:14] [Craft Scheduler Thread - 10 - AuxProtect/INFO]: [AuxProtect] Init done. There are currently 195072 rows.
[00:23:14] [Server thread/INFO]: Loaded 1174 recipes
[00:23:14] [Server thread/INFO]: Loaded 1271 advancements
[00:23:15] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[00:23:15] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Vault for Vault's Economy API
[00:23:15] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LuckPerms for Vault's Chat API
[00:23:15] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[00:23:15] [Server thread/INFO]: [Citizens] Loaded 7 NPCs.
[00:23:15] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[00:23:15] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&a> with '', and cached result. 
[00:23:15] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[00:23:15] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[00:23:15] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.NMSInjectListener] Preparing to take over the world: spawn
[00:23:15] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.NMSInjectListener] Successfully injected into world.
[00:23:15] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[00:23:15] [Server thread/INFO]: Time elapsed: 396 ms
[00:23:15] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[00:23:15] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[00:23:15] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[00:23:15] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[00:23:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[00:23:15] [Server thread/INFO]: Reloading Citizens...
[00:23:15] [Server thread/INFO]: Citizens reloaded.
[00:23:15] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2024/03/24 00:23:09 
[00:23:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[00:23:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: griefprevention [1.7.0]
[00:23:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[00:23:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[00:23:15] [Server thread/INFO]: 4 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[00:23:15] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[00:23:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionhouse [3.7.1]
[00:23:15] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[00:23:15] [Server thread/INFO]: [CMI] Missing (spawn) world loaded. Recalculating spawn portal position
[00:23:15] [Server thread/INFO]: Done (17.179s)! For help, type "help"
[00:23:15] [Craft Scheduler Thread - 0 - Vault/INFO]: [Vault] Checking for Updates ... 
[00:23:15] [Server thread/INFO]: [eco] Loaded eco
[00:23:15] [Craft Scheduler Thread - 0 - Vault/INFO]: [Vault] No new version available
[00:23:15] [Server thread/INFO]: [EcoEnchants] Loaded EcoEnchants
[00:23:16] [Server thread/INFO]: [libreforge] Loaded libreforge
[00:23:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15-b636bef]
[00:23:16] [Server thread/INFO]: +> [JDA] SLF4J: Failed to load class "org.slf4j.impl.StaticMDCBinder". 
[00:23:16] [Server thread/INFO]: +> [JDA] SLF4J: Defaulting to no-operation MDCAdapter implementation. 
[00:23:16] [Server thread/INFO]: +> [JDA] SLF4J: See http://www.slf4j.org/codes.html#no_static_mdc_binder for further details. 
[00:23:16] [Server thread/INFO]: +> [JDA] [pool-73-thread-1] INFO JDA - Login Successful! 
[00:23:16] [Server thread/INFO]: +> [JDA] [JDA MainWS-ReadThread] INFO WebSocketClient - Connected to WebSocket 
[00:23:17] [Craft Scheduler Thread - 1 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=ee824352cde8a2cd3f99e982913b00ffd8ff8fac in 2539 ms
[00:23:17] [Server thread/INFO]: +> [JDA] [JDA MainWS-ReadThread] INFO JDA - Finished Loading! 
[00:23:33] [Server thread/INFO]: Flufzs (/**.**.**.**:51878) lost connection: Disconnected
[00:23:33] [User Authenticator #0/INFO]: Disconnecting Flufzs (/**.**.**.**:51878): Authentication servers are down. Please try again later, sorry!
[00:23:33] [User Authenticator #0/ERROR]: Couldn't verify username because servers are unavailable
[00:23:46] [User Authenticator #0/INFO]: Disconnecting Flufzs (/**.**.**.**:51892): Authentication servers are down. Please try again later, sorry!
[00:23:46] [User Authenticator #0/ERROR]: Couldn't verify username because servers are unavailable
[00:23:46] [Server thread/INFO]: Flufzs (/**.**.**.**:51892) lost connection: Authentication servers are down. Please try again later, sorry!
[00:23:53] [User Authenticator #0/INFO]: Disconnecting Flufzs (/**.**.**.**:51903): Authentication servers are down. Please try again later, sorry!
[00:23:53] [User Authenticator #0/ERROR]: Couldn't verify username because servers are unavailable
[00:23:53] [Server thread/INFO]: Flufzs (/**.**.**.**:51903) lost connection: Authentication servers are down. Please try again later, sorry!
[00:23:59] [User Authenticator #0/INFO]: Disconnecting Flufzs (/**.**.**.**:51908): Authentication servers are down. Please try again later, sorry!
[00:23:59] [User Authenticator #0/ERROR]: Couldn't verify username because servers are unavailable
[00:23:59] [Server thread/INFO]: Flufzs (/**.**.**.**:51908) lost connection: Authentication servers are down. Please try again later, sorry!
[00:24:06] [User Authenticator #0/INFO]: Disconnecting Flufzs (/**.**.**.**:51914): Authentication servers are down. Please try again later, sorry!
[00:24:06] [User Authenticator #0/ERROR]: Couldn't verify username because servers are unavailable
[00:24:06] [Server thread/INFO]: Flufzs (/**.**.**.**:51914) lost connection: Authentication servers are down. Please try again later, sorry!
[00:24:10] [User Authenticator #0/INFO]: UUID of player Flufzs is f73102d2-be04-4288-8b38-dc1298f870e3
[00:24:10] [Server thread/INFO]: [+] Flufzs
[00:24:10] [Server thread/INFO]: Flufzs[/**.**.**.**:51924] logged in with entity id 94 at ([spawn]273.57603576351096, 71.37607948239862, -249.53907671163515)
[00:24:18] [Server thread/INFO]: Flufzs issued server command: /help
[00:25:01] [Server thread/INFO]: Flufzs issued server command: /shop
[00:25:03] [Server thread/INFO]: Flufzs issued server command: /buy colors
[00:25:30] [Server thread/INFO]: Flufzs has completed the challenge [A Furious Cocktail]
[00:25:30] [Server thread/INFO]: Flufzs has completed the challenge [How Did We Get Here?]
[00:25:33] [Server thread/INFO]: Flufzs has completed the challenge [Great View From Up Here]
[00:26:35] [Server thread/INFO]:  Command not found! Try /help for help.
[00:26:35] [Server thread/INFO]: Spread 1 player(s) around 56.0, 40.0 with an average distance of 0.00 blocks apart
[00:26:44] [Server thread/INFO]: Flufzs issued server command: /summon pig
[00:26:44] [Server thread/INFO]: [Flufzs: Summoned new Pig]
[00:26:49] [Server thread/INFO]: You can't do this in this game mode
[00:27:41] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:27:44] [Server thread/INFO]: Flufzs issued server command: /help
[00:28:08] [Server thread/INFO]: Flufzs issued server command: /lp editor
[00:29:19] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (default)
[00:29:19] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add ecoenchants.command.gui true
[00:29:19] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (default)
[00:29:19] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add ecoenchants.command.enchantinfo true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.tempban true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.checkmute true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.mutelist true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.mute true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.lastuuid true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.tempmute true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.kick true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.checkban true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.warn true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.warnings true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.banlist true
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (moderator)
[00:31:33] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.history true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.geoip true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.ban true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.admin true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.staffhistory true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.dupeip true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.unban true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.unwarn true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.unmute true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.staffrollback true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.ipreport true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.ipban true
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > (Flufzs) [G] (admin)
[00:33:30] [luckperms-worker-6/INFO]: [LP] LOG > webeditor add litebans.ipmute true
[00:33:53] [Server thread/INFO]: Flufzs issued server command: /kit
[00:36:29] [Server thread/INFO]: Flufzs issued server command: /seen
[00:36:31] [Server thread/INFO]: Flufzs issued server command: /seen Flufzs
[00:37:20] [Server thread/INFO]: Flufzs issued server command: /help
[00:37:33] [Server thread/INFO]:  Command not found! Try /help for help.
[00:37:33] [Server thread/INFO]: Spread 1 player(s) around 56.0, 40.0 with an average distance of 0.00 blocks apart
[00:37:48] [Server thread/INFO]: You can't do this in this game mode
[00:39:51] [Server thread/INFO]: Flufzs issued server command: /top
[00:44:12] [Server thread/INFO]: Flufzs issued server command: /o inv
[00:44:48] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:45:05] [Server thread/INFO]: Flufzs issued server command: /help
[00:45:06] [Server thread/INFO]: Flufzs issued server command: /warp
[00:45:08] [Server thread/INFO]: Flufzs issued server command: /help
[00:45:09] [Server thread/INFO]: Flufzs issued server command: /quests
[00:45:17] [Server thread/INFO]: Flufzs issued server command: /gms
[00:45:24] [Server thread/INFO]:  Command not found! Try /help for help.
[00:45:24] [Server thread/INFO]: Spread 1 player(s) around 56.0, 40.0 with an average distance of 0.00 blocks apart
[00:45:34] [Server thread/INFO]: Flufzs issued server command: /fly
[00:45:51] [Server thread/INFO]: Flufzs issued server command: /world end
[00:45:52] [Tuinity Chunk System Worker #0/WARN]: [com.dfsek.terra.bukkit.world.BukkitProtoWorld] Detected world access at coordinates out of bounds: (689, -1, 2192) accessed for region [43, 137]
[00:45:58] [Server thread/INFO]: Flufzs issued server command: /gmc
[00:45:58] [Server thread/INFO]: Flufzs fell out of the world
[00:46:01] [Server thread/INFO]: Flufzs issued server command: /world end
[00:46:15] [Server thread/INFO]: Flufzs issued server command: /flyspeed 10
[00:46:19] [Async Chat Thread - #1/INFO]: [] [☯] Flufzs » NIGGEr NIggeR nigGEr nIGGEr nIgger NiggeR niGgEr NIGgER nIGgER NigGEr NIgGER nIGGEr NIggeR NIgger NIGgeR nIGgER NiGGeR NigGer NIgGEr NIGGeR NIggER NigGeR NIGgeR 
[00:46:19] [Async Chat Thread - #0/INFO]: [] [☯] Flufzs » NiGgeR nIggEr NIGGer nigGer NiggER nIGGER nIGger nIGGer nIGGER nIGGEr niGgER NiggER nIGger NiGGer NIggER NIGGer nIGGeR nIggEr nigger nigGER NIGgER NIggER NigGeR 
[00:46:19] [Async Chat Thread - #1/INFO]: [] [☯] Flufzs » NiGGer NIggER niggER NIGGeR NIGGEr nIGGEr niGger niggEr NiGGer nIGgER NIgGER NIGgeR nIGgER NIggEr NIgGER NiGgeR NigGer NIggeR niggER nIgGer niGGEr NIggER NiggER 
[00:46:19] [Async Chat Thread - #0/INFO]: [] [☯] Flufzs » niGgeR NiggER niGgeR NIgGEr niggEr nIgger nIggEr NIGgeR NiggEr nIGGeR NiGgEr NIGGEr NIGGER nigGER niGGeR niggEr niGgeR NIGGEr nIGgeR NigGer nigGeR NIGgeR nIGgER 
[00:46:19] [Async Chat Thread - #1/INFO]: [] [☯] Flufzs » nIGGEr nIgGer nIgGer Nigger niGGEr nigGeR nIGGer Nigger NIGger nIGGer niggEr nIgGeR niGGEr NiGger niggeR nigGeR NIGGer NIGgeR niGGer niGGer nIGGeR nIGgER NIggER 
[00:46:21] [Async Chat Thread - #0/INFO]: [] [☯] Flufzs » nIGGeR niggER NiGGer NIGGEr niggER Nigger NiggEr NIGgER nIGgER NiggER nIGgeR nIgGER NigGer nIGgeR NIggER nIgGER niGGEr nigGER NIGgeR NiGgeR NIGGeR NiGGER NiggER 
[00:46:22] [Async Chat Thread - #1/INFO]: [] [☯] Flufzs » nigGER niGgER nIggeR NIgger nIGGeR NIgger NiGger nigGEr niGGeR NIgGEr nIGger NigGER niggER NIGgER NiGGEr NiGGer nIgGER NiGGER niGGeR nIGGEr NIgger NiGgER nIgGEr 
[00:47:27] [Server thread/INFO]: Flufzs issued server command: /o inv
[00:47:39] [Server thread/INFO]: Flufzs issued server command: /o inv
[00:47:48] [Server thread/INFO]: Flufzs issued server command: /flyspeed 1
[00:48:08] [Server thread/INFO]: Flufzs issued server command: /flyspeed 5
[00:49:50] [Server thread/INFO]: Flufzs issued server command: /back
[00:51:17] [Server thread/INFO]: Flufzs has reached the goal [The End... Again...]
[00:51:40] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:55:21] [Server thread/INFO]: Flufzs issued server command: /effect clear
[00:56:08] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:56:08] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:56:08] [Server thread/WARN]: Flufzs moved too quickly! 0.0,-44.252590078867826,0.0
[00:56:09] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:56:09] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:56:09] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:56:10] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:56:10] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:56:41] [Server thread/INFO]: Flufzs issued server command: /effect clear
[00:56:44] [Server thread/INFO]: Flufzs issued server command: /spawn
[00:56:48] [Thread-15/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.OfflinePlayer.getUniqueId()" because the return value of "org.bukkit.block.Skull.getOwningPlayer()" is null
[00:56:48] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.database.logger.SkullPlaceLogger.log(SkullPlaceLogger.java:34)
[00:56:48] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.BlockPlaceProcess.process(BlockPlaceProcess.java:20)
[00:56:48] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.Process.processConsumer(Process.java:140)
[00:56:48] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.Consumer.run(Consumer.java:133)
[00:56:48] [Thread-15/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[00:56:49] [Thread-15/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.OfflinePlayer.getUniqueId()" because the return value of "org.bukkit.block.Skull.getOwningPlayer()" is null
[00:56:49] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.database.logger.SkullBreakLogger.log(SkullBreakLogger.java:32)
[00:56:49] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.BlockBreakProcess.process(BlockBreakProcess.java:21)
[00:56:49] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.Process.processConsumer(Process.java:137)
[00:56:49] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.Consumer.run(Consumer.java:133)
[00:56:49] [Thread-15/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[00:56:57] [Thread-15/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.OfflinePlayer.getUniqueId()" because the return value of "org.bukkit.block.Skull.getOwningPlayer()" is null
[00:56:57] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.database.logger.SkullPlaceLogger.log(SkullPlaceLogger.java:34)
[00:56:57] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.BlockPlaceProcess.process(BlockPlaceProcess.java:20)
[00:56:57] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.Process.processConsumer(Process.java:140)
[00:56:57] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.Consumer.run(Consumer.java:133)
[00:56:57] [Thread-15/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[00:56:58] [Thread-15/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.OfflinePlayer.getUniqueId()" because the return value of "org.bukkit.block.Skull.getOwningPlayer()" is null
[00:56:58] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.database.logger.SkullBreakLogger.log(SkullBreakLogger.java:32)
[00:56:58] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.BlockBreakProcess.process(BlockBreakProcess.java:21)
[00:56:58] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.Process.processConsumer(Process.java:137)
[00:56:58] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.Consumer.run(Consumer.java:133)
[00:56:58] [Thread-15/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[00:57:04] [Thread-15/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.OfflinePlayer.getUniqueId()" because the return value of "org.bukkit.block.Skull.getOwningPlayer()" is null
[00:57:04] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.database.logger.SkullPlaceLogger.log(SkullPlaceLogger.java:34)
[00:57:04] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.BlockPlaceProcess.process(BlockPlaceProcess.java:20)
[00:57:04] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.process.Process.processConsumer(Process.java:140)
[00:57:04] [Thread-15/WARN]:     at CoreProtect-22.2.jar//net.coreprotect.consumer.Consumer.run(Consumer.java:133)
[00:57:04] [Thread-15/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[01:00:21] [Server thread/INFO]: Flufzs has reached the goal [Sky's the Limit]
[01:02:08] [Async Chat Thread - #3/INFO]: [] [☯] Flufzs » Jaeger
[01:02:21] [Server thread/INFO]: Flufzs issued server command: /npc sel
[01:02:38] [Server thread/INFO]: Flufzs issued server command: /npc rename &cJaeger
[01:03:36] [Server thread/INFO]: Flufzs issued server command: /gms
[01:03:48] [Server thread/INFO]: Flufzs issued server command: /gmc
[01:04:44] [Server thread/INFO]: Flufzs issued server command: /o inv
[01:05:28] [Server thread/INFO]: Flufzs issued server command: /o inv
[01:08:08] [Server thread/INFO]: Flufzs issued server command: /ex reload
[01:08:08] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_37_FrTruly' with player 'Flufzs' and NPC '7/Jaeger'... 
[01:08:08] [Server thread/INFO]: +- Queue 'EXCOMMAND_37_FrTruly' Executing: (line 1) reload ---------+ 
[01:08:08] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[01:08:08] [Server thread/INFO]: Completing queue 'EXCOMMAND_37_FrTruly' in 2ms. 
[01:08:08] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[01:08:08] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 24ms, processing 2ms. 
[01:08:08] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[01:08:08] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&a> with '', and cached result. 
[01:08:08] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[01:08:09] [Server thread/INFO]: Flufzs issued server command: /website
[01:08:25] [Server thread/INFO]: Flufzs issued server command: /ex reload
[01:08:25] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_39_ThermalFf' with player 'Flufzs' and NPC '7/Jaeger'... 
[01:08:25] [Server thread/INFO]: +- Queue 'EXCOMMAND_39_ThermalFf' Executing: (line 1) reload ---------+ 
[01:08:25] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[01:08:25] [Server thread/INFO]: Completing queue 'EXCOMMAND_39_ThermalFf' in 1ms. 
[01:08:25] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[01:08:25] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 9ms, processing 1ms. 
[01:08:25] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[01:08:25] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&a> with '', and cached result. 
[01:08:25] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[01:08:26] [Server thread/INFO]: Flufzs issued server command: /website
[01:08:36] [Server thread/INFO]: Flufzs issued server command: /ex reload
[01:08:36] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_41_InquisitorImmunology' with player 'Flufzs' and NPC '7/Jaeger'... 
[01:08:36] [Server thread/INFO]: +- Queue 'EXCOMMAND_41_InquisitorImmunology' Executing: (line 1) reload ---------+ 
[01:08:36] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[01:08:36] [Server thread/INFO]: Completing queue 'EXCOMMAND_41_InquisitorImmunology' in 1ms. 
[01:08:36] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[01:08:36] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 7ms, processing 1ms. 
[01:08:36] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[01:08:36] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&a> with '', and cached result. 
[01:08:36] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[01:08:37] [Server thread/INFO]: Flufzs issued server command: /website
[01:08:53] [Server thread/INFO]: Flufzs issued server command: /ex reload
[01:08:53] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_43_MilEstimated' with player 'Flufzs' and NPC '7/Jaeger'... 
[01:08:53] [Server thread/INFO]: +- Queue 'EXCOMMAND_43_MilEstimated' Executing: (line 1) reload ---------+ 
[01:08:53] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[01:08:53] [Server thread/INFO]: Completing queue 'EXCOMMAND_43_MilEstimated' in 0ms. 
[01:08:53] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[01:08:53] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 26ms, processing 1ms. 
[01:08:53] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[01:08:53] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&a> with '', and cached result. 
[01:08:53] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[01:08:54] [Server thread/INFO]: Flufzs issued server command: /website
[01:09:26] [Server thread/INFO]: Flufzs issued server command: /ex reloa
[01:09:26] [Server thread/INFO]:  ERROR while executing command 'RELOA'!
                 Error Message: Unknown command 'RELOA'. 
[01:09:26] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_45_FortifierDeck' with player 'Flufzs' and NPC '7/Jaeger'... 
[01:09:26] [Server thread/INFO]: +- Queue 'EXCOMMAND_45_FortifierDeck' Executing: (line 1) reloa ---------+ 
[01:09:26] [Server thread/INFO]: +- Executing command: RELOA ---------+ 
[01:09:26] [Server thread/INFO]:  ERROR in queue 'EXCOMMAND_45_FortifierDeck' while executing command 'RELOA' with player 'Flufzs' with NPC 'n@7 (Jaeger)'!
                 Error Message: RELOA is an invalid command! Are you sure it loaded? 
[01:09:26] [Server thread/INFO]: +---------------------+ 
[01:09:26] [Server thread/INFO]: Completing queue 'EXCOMMAND_45_FortifierDeck' in 1ms. 
[01:09:27] [Server thread/INFO]: Flufzs issued server command: /ex reload
[01:09:27] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_46_TucsonHeat' with player 'Flufzs' and NPC '7/Jaeger'... 
[01:09:27] [Server thread/INFO]: +- Queue 'EXCOMMAND_46_TucsonHeat' Executing: (line 1) reload ---------+ 
[01:09:27] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[01:09:27] [Server thread/INFO]: Completing queue 'EXCOMMAND_46_TucsonHeat' in 1ms. 
[01:09:27] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[01:09:27] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 26ms, processing 1ms. 
[01:09:27] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[01:09:27] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&a> with '', and cached result. 
[01:09:27] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[01:09:29] [Server thread/INFO]: Flufzs issued server command: /store
[01:09:44] [Server thread/INFO]: Flufzs issued server command: /ex reload
[01:09:44] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_48_PubInduction' with player 'Flufzs' and NPC '7/Jaeger'... 
[01:09:44] [Server thread/INFO]: +- Queue 'EXCOMMAND_48_PubInduction' Executing: (line 1) reload ---------+ 
[01:09:44] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[01:09:44] [Server thread/INFO]: Completing queue 'EXCOMMAND_48_PubInduction' in 0ms. 
[01:09:44] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[01:09:44] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 13ms, processing 1ms. 
[01:09:44] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[01:09:44] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&a> with '', and cached result. 
[01:09:44] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[01:09:45] [Server thread/INFO]: Flufzs issued server command: /store
[01:09:54] [Server thread/INFO]: Flufzs issued server command: /ex reload
[01:09:54] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_50_CraftWays' with player 'Flufzs' and NPC '7/Jaeger'... 
[01:09:54] [Server thread/INFO]: +- Queue 'EXCOMMAND_50_CraftWays' Executing: (line 1) reload ---------+ 
[01:09:54] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[01:09:54] [Server thread/INFO]: Completing queue 'EXCOMMAND_50_CraftWays' in 1ms. 
[01:09:55] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[01:09:55] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 43ms, processing 1ms. 
[01:09:55] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[01:09:55] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&a> with '', and cached result. 
[01:09:55] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[01:09:55] [Server thread/INFO]: Flufzs issued server command: /store
[01:10:00] [Server thread/INFO]: Flufzs issued server command: /lockdown
[01:10:03] [Server thread/INFO]: Flufzs issued server command: /lockdown a
[01:10:03] [Server thread/WARN]: [LiteBans] Task #107645 for LiteBans v2.14.1 generated an exception
java.lang.AssertionError: Main server thread is not permitted to perform database queries.
    at litebans.kI.b(kI.java:627) ~[LiteBans.jar:?]
    at litebans.kI.a(kI.java:652) ~[LiteBans.jar:?]
    at litebans.kI.a(kI.java:650) ~[LiteBans.jar:?]
    at litebans.hp.run(hp.java:120) ~[LiteBans.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1667) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1546) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[01:10:06] [Server thread/INFO]: Flufzs issued server command: /lockdown end
[01:10:06] [Server thread/WARN]: [LiteBans] Task #107677 for LiteBans v2.14.1 generated an exception
java.lang.AssertionError: Main server thread is not permitted to perform database queries.
    at litebans.kI.b(kI.java:627) ~[LiteBans.jar:?]
    at litebans.kI.a(kI.java:652) ~[LiteBans.jar:?]
    at litebans.kI.a(kI.java:650) ~[LiteBans.jar:?]
    at litebans.hp.run(hp.java:120) ~[LiteBans.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1667) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:486) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1546) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:326) ~[purpur-1.20.4.jar:git-Purpur-2128]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[01:10:38] [Server thread/INFO]: Flufzs issued server command: /ex reload
[01:10:38] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_52_ImpossibleBeautiful' with player 'Flufzs' and NPC '7/Jaeger'... 
[01:10:38] [Server thread/INFO]: +- Queue 'EXCOMMAND_52_ImpossibleBeautiful' Executing: (line 1) reload ---------+ 
[01:10:38] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[01:10:38] [Server thread/INFO]: Completing queue 'EXCOMMAND_52_ImpossibleBeautiful' in 0ms. 
[01:10:38] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[01:10:38] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 34ms, processing 1ms. 
[01:10:38] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[01:10:38] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&a> with '', and cached result. 
[01:10:38] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[01:10:40] [Server thread/INFO]: Flufzs issued server command: /report
[01:39:05] [Server thread/INFO]: Flufzs issued server command: /o reload all
[01:39:05] [Server thread/INFO]:  Updating all items in player-inventories...
[01:39:05] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[01:39:05] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[01:39:05] [Server thread/INFO]:  Converting global lang file to individual language files...
[01:39:05] [Server thread/INFO]:  Verifying formatting for textures and models...
[01:39:05] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[01:39:05] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[01:39:05] [Server thread/INFO]: 
[01:39:05] [Server thread/INFO]:  Attempting to merge imported font files...
[01:39:05] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[01:39:05] [Server thread/INFO]:  The imported font files have not been deleted.
[01:39:05] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[01:39:05] [Server thread/INFO]: 
[01:39:05] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[01:39:08] [Craft Scheduler Thread - 80 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=d74cf8611b07235692f377f0def7737d9b3b96cf in 2517 ms
[01:39:14] [Server thread/INFO]: Flufzs issued server command: /o inv
[01:45:53] [Server thread/INFO]: Flufzs issued server command: /o reload all
[01:45:54] [Server thread/INFO]:  Updating all items in player-inventories...
[01:45:54] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[01:45:54] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[01:45:54] [Server thread/INFO]:  Converting global lang file to individual language files...
[01:45:54] [Server thread/INFO]:  Verifying formatting for textures and models...
[01:45:54] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[01:45:54] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[01:45:54] [Server thread/INFO]: 
[01:45:54] [Server thread/INFO]:  Attempting to merge imported font files...
[01:45:54] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[01:45:54] [Server thread/INFO]:  The imported font files have not been deleted.
[01:45:54] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[01:45:54] [Server thread/INFO]: 
[01:45:54] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[01:45:55] [Craft Scheduler Thread - 90 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=fa40b55542503bbf840acb2641622a0c354a8239 in 1600 ms
[01:46:01] [Server thread/INFO]: Flufzs issued server command: /o inv
[01:49:57] [Server thread/INFO]:  Command not found! Try /help for help.
[01:49:57] [Server thread/INFO]: Spread 1 player(s) around 56.0, 40.0 with an average distance of 0.00 blocks apart
[01:49:59] [Server thread/INFO]: Flufzs issued server command: /bcak
[01:50:01] [Server thread/INFO]: Flufzs issued server command: /spawn
[01:50:12] [Server thread/INFO]: You can't do this in this game mode
[02:05:12] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:05:12] [Server thread/INFO]:  Updating all items in player-inventories...
[02:05:12] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:05:12] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:05:12] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:05:12] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:05:12] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:05:12] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:05:12] [Server thread/INFO]: 
[02:05:12] [Server thread/INFO]:  Attempting to merge imported font files...
[02:05:12] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:05:12] [Server thread/INFO]:  The imported font files have not been deleted.
[02:05:12] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:05:12] [Server thread/INFO]: 
[02:05:12] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:05:14] [Craft Scheduler Thread - 107 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1718 ms
[02:05:22] [Server thread/INFO]: Flufzs issued server command: /o inv
[02:06:57] [Server thread/INFO]: Flufzs issued server command: /help
[02:08:58] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:08:58] [Server thread/INFO]:  Updating all items in player-inventories...
[02:08:58] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:08:58] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:08:58] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:08:58] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:08:58] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:08:58] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:08:59] [Server thread/INFO]: 
[02:08:59] [Server thread/INFO]:  Attempting to merge imported font files...
[02:08:59] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:08:59] [Server thread/INFO]:  The imported font files have not been deleted.
[02:08:59] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:08:59] [Server thread/INFO]: 
[02:08:59] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:09:00] [Craft Scheduler Thread - 105 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1843 ms
[02:09:15] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:09:15] [Server thread/INFO]:  Updating all items in player-inventories...
[02:09:15] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:09:15] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:09:15] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:09:15] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:09:15] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:09:15] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:09:15] [Server thread/INFO]: 
[02:09:15] [Server thread/INFO]:  Attempting to merge imported font files...
[02:09:15] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:09:15] [Server thread/INFO]:  The imported font files have not been deleted.
[02:09:15] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:09:15] [Server thread/INFO]: 
[02:09:15] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:09:17] [Craft Scheduler Thread - 95 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1694 ms
[02:09:22] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:09:22] [Server thread/INFO]:  Updating all items in player-inventories...
[02:09:22] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:09:22] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:09:22] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:09:22] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:09:22] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:09:22] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:09:22] [Server thread/INFO]: 
[02:09:22] [Server thread/INFO]:  Attempting to merge imported font files...
[02:09:22] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:09:22] [Server thread/INFO]:  The imported font files have not been deleted.
[02:09:22] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:09:22] [Server thread/INFO]: 
[02:09:22] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:09:23] [Craft Scheduler Thread - 112 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1559 ms
[02:09:37] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:09:37] [Server thread/INFO]:  Updating all items in player-inventories...
[02:09:37] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:09:37] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:09:37] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:09:37] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:09:37] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:09:37] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:09:37] [Server thread/INFO]: 
[02:09:37] [Server thread/INFO]:  Attempting to merge imported font files...
[02:09:37] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:09:37] [Server thread/INFO]:  The imported font files have not been deleted.
[02:09:37] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:09:37] [Server thread/INFO]: 
[02:09:37] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:09:39] [Craft Scheduler Thread - 110 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1629 ms
[02:09:53] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:09:53] [Server thread/INFO]:  Updating all items in player-inventories...
[02:09:53] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:09:53] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:09:53] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:09:53] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:09:53] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:09:53] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:09:53] [Server thread/INFO]: 
[02:09:53] [Server thread/INFO]:  Attempting to merge imported font files...
[02:09:53] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:09:53] [Server thread/INFO]:  The imported font files have not been deleted.
[02:09:53] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:09:53] [Server thread/INFO]: 
[02:09:54] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:09:55] [Craft Scheduler Thread - 114 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1563 ms
[02:10:35] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:10:36] [Server thread/INFO]:  Updating all items in player-inventories...
[02:10:36] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:10:36] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:10:36] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:10:36] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:10:36] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:10:36] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:10:36] [Server thread/INFO]: 
[02:10:36] [Server thread/INFO]:  Attempting to merge imported font files...
[02:10:36] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:10:36] [Server thread/INFO]:  The imported font files have not been deleted.
[02:10:36] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:10:36] [Server thread/INFO]: 
[02:10:36] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:10:37] [Craft Scheduler Thread - 108 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1626 ms
[02:10:49] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:10:49] [Server thread/INFO]:  Updating all items in player-inventories...
[02:10:49] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:10:49] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:10:49] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:10:49] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:10:49] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:10:49] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:10:49] [Server thread/INFO]: 
[02:10:49] [Server thread/INFO]:  Attempting to merge imported font files...
[02:10:49] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:10:49] [Server thread/INFO]:  The imported font files have not been deleted.
[02:10:49] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:10:49] [Server thread/INFO]: 
[02:10:49] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:10:51] [Craft Scheduler Thread - 110 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1614 ms
[02:11:13] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:11:13] [Server thread/INFO]:  Updating all items in player-inventories...
[02:11:13] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:11:13] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:11:13] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:11:13] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:11:13] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:11:13] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:11:13] [Server thread/INFO]: 
[02:11:13] [Server thread/INFO]:  Attempting to merge imported font files...
[02:11:13] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:11:13] [Server thread/INFO]:  The imported font files have not been deleted.
[02:11:13] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:11:13] [Server thread/INFO]: 
[02:11:13] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:11:15] [Craft Scheduler Thread - 112 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1738 ms
[02:13:21] [Server thread/INFO]: Flufzs issued server command: /give barrier
[02:16:15] [Server thread/INFO]: Flufzs issued server command: /o inv
[02:17:23] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:17:23] [Server thread/INFO]:  Updating all items in player-inventories...
[02:17:24] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:17:24] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:17:24] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:17:24] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:17:24] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:17:24] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:17:24] [Server thread/INFO]: 
[02:17:24] [Server thread/INFO]:  Attempting to merge imported font files...
[02:17:24] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:17:24] [Server thread/INFO]:  The imported font files have not been deleted.
[02:17:24] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:17:24] [Server thread/INFO]: 
[02:17:24] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:17:25] [Craft Scheduler Thread - 114 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=98b2701d67dee1e012a79b25e28c6f254cca92c8 in 1567 ms
[02:17:32] [Server thread/INFO]: Flufzs issued server command: /o inv
[02:41:41] [Server thread/INFO]: Flufzs issued server command: /help
[02:49:32] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:49:32] [Server thread/INFO]:  CustomModelData 1008 is already assigned to another item with this material but different model
[02:49:32] [Server thread/INFO]:  Removing custom model data from other.yml: undercum1
[02:49:32] [Server thread/INFO]:  Updating all items in player-inventories...
[02:49:32] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:49:32] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:49:32] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:49:32] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:49:32] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:49:32] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:49:32] [Server thread/INFO]: 
[02:49:32] [Server thread/INFO]:  Attempting to merge imported font files...
[02:49:32] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:49:32] [Server thread/INFO]:  The imported font files have not been deleted.
[02:49:32] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:49:32] [Server thread/INFO]: 
[02:49:32] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:49:34] [Craft Scheduler Thread - 129 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=ed21cc5678bc428becd50cfa08c6fbc78a854a29 in 1653 ms
[02:49:40] [Server thread/INFO]: Flufzs issued server command: /o inv
[02:51:52] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:51:52] [Server thread/INFO]:  Updating all items in player-inventories...
[02:51:52] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:51:52] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:51:52] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:51:52] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:51:52] [Server thread/INFO]:  Found invalid texture-path inside model-file assets/minecraft/models/other/undercum1.json: undercon1
[02:51:52] [Server thread/INFO]:  Verify that you have a texture in said path.
[02:51:52] [Server thread/INFO]:  Found invalid texture-path inside model-file assets/minecraft/models/other/undercum1.json: undercon1
[02:51:52] [Server thread/INFO]:  Verify that you have a texture in said path.
[02:51:52] [Server thread/INFO]:  Pack contains malformed texture(s) and/or model(s)
[02:51:52] [Server thread/INFO]:  These need to be fixed, otherwise the resourcepack will be broken
[02:51:52] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:51:52] [Server thread/INFO]:  Attempting to exclude malformed textures from atlas-file
[02:51:52] [Server thread/INFO]: 
[02:51:52] [Server thread/INFO]:  Attempting to merge imported font files...
[02:51:52] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:51:52] [Server thread/INFO]:  The imported font files have not been deleted.
[02:51:52] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:51:52] [Server thread/INFO]: 
[02:51:52] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:51:54] [Craft Scheduler Thread - 133 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=c10fc7ffcf328031966f1b982bd092026ecd3a97 in 1547 ms
[02:53:50] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:53:50] [Server thread/INFO]:  CustomModelData 1008 is already assigned to another item with this material but different model
[02:53:50] [Server thread/INFO]:  Removing custom model data from other.yml: undercum1
[02:53:50] [Server thread/INFO]:  Updating all items in player-inventories...
[02:53:50] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:53:50] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:53:50] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:53:50] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:53:50] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:53:50] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:53:50] [Server thread/INFO]: 
[02:53:50] [Server thread/INFO]:  Attempting to merge imported font files...
[02:53:50] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:53:50] [Server thread/INFO]:  The imported font files have not been deleted.
[02:53:50] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:53:50] [Server thread/INFO]: 
[02:53:51] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:53:52] [Craft Scheduler Thread - 148 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=728799931427f8f2a5218bdf0dfb182b729f309a in 1543 ms
[02:54:18] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:54:18] [Server thread/INFO]:  CustomModelData 1008 is already assigned to another item with this material but different model
[02:54:18] [Server thread/INFO]:  Removing custom model data from other.yml: undercum1
[02:54:18] [Server thread/INFO]:  Updating all items in player-inventories...
[02:54:18] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:54:18] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:54:18] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:54:18] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:54:18] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:54:18] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:54:18] [Server thread/INFO]: 
[02:54:18] [Server thread/INFO]:  Attempting to merge imported font files...
[02:54:18] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:54:18] [Server thread/INFO]:  The imported font files have not been deleted.
[02:54:18] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:54:18] [Server thread/INFO]: 
[02:54:18] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:54:20] [Craft Scheduler Thread - 149 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=728799931427f8f2a5218bdf0dfb182b729f309a in 1616 ms
[02:54:39] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:54:39] [Server thread/INFO]:  CustomModelData 1008 is already assigned to another item with this material but different model
[02:54:39] [Server thread/INFO]:  Removing custom model data from other.yml: undercum1
[02:54:39] [Server thread/INFO]:  Updating all items in player-inventories...
[02:54:39] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:54:39] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:54:39] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:54:39] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:54:39] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:54:39] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:54:39] [Server thread/INFO]: 
[02:54:39] [Server thread/INFO]:  Attempting to merge imported font files...
[02:54:39] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:54:39] [Server thread/INFO]:  The imported font files have not been deleted.
[02:54:39] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:54:39] [Server thread/INFO]: 
[02:54:39] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:54:41] [Craft Scheduler Thread - 128 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=728799931427f8f2a5218bdf0dfb182b729f309a in 1597 ms
[02:55:21] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:55:21] [Server thread/INFO]:  CustomModelData 1008 is already assigned to another item with this material but different model
[02:55:21] [Server thread/INFO]:  Removing custom model data from other.yml: undercum1
[02:55:21] [Server thread/INFO]:  Updating all items in player-inventories...
[02:55:21] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:55:21] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:55:21] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:55:21] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:55:21] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:55:21] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:55:21] [Server thread/INFO]: 
[02:55:21] [Server thread/INFO]:  Attempting to merge imported font files...
[02:55:21] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:55:21] [Server thread/INFO]:  The imported font files have not been deleted.
[02:55:21] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:55:21] [Server thread/INFO]: 
[02:55:21] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:55:23] [Craft Scheduler Thread - 147 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=728799931427f8f2a5218bdf0dfb182b729f309a in 1570 ms
[02:55:48] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:55:48] [Server thread/INFO]:  CustomModelData 1008 is already assigned to another item with this material but different model
[02:55:48] [Server thread/INFO]:  Removing custom model data from other.yml: undercum1
[02:55:48] [Server thread/INFO]:  Updating all items in player-inventories...
[02:55:49] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:55:49] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:55:49] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:55:49] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:55:49] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:55:49] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:55:49] [Server thread/INFO]: 
[02:55:49] [Server thread/INFO]:  Attempting to merge imported font files...
[02:55:49] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:55:49] [Server thread/INFO]:  The imported font files have not been deleted.
[02:55:49] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:55:49] [Server thread/INFO]: 
[02:55:49] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:55:50] [Craft Scheduler Thread - 148 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=728799931427f8f2a5218bdf0dfb182b729f309a in 1592 ms
[02:56:02] [User Authenticator #1/INFO]: UUID of player Nerotsui is a6954838-7fbb-43e7-b7a3-aff29fc0439c
[02:56:02] [Server thread/INFO]: Disconnecting Nerotsui (/**.**.**.**:63336): You are not whitelisted on this server!
[02:56:02] [Server thread/INFO]: Nerotsui (/**.**.**.**:63336) lost connection: You are not whitelisted on this server!
[02:57:44] [Server thread/INFO]: Flufzs issued server command: /o inv
[02:58:39] [Server thread/INFO]: Flufzs issued server command: /o reload all
[02:58:39] [Server thread/INFO]:  CustomModelData 1008 is already assigned to another item with this material but different model
[02:58:39] [Server thread/INFO]:  Removing custom model data from other.yml: undercum1
[02:58:39] [Server thread/INFO]:  Updating all items in player-inventories...
[02:58:39] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[02:58:39] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[02:58:39] [Server thread/INFO]:  Converting global lang file to individual language files...
[02:58:39] [Server thread/INFO]:  Verifying formatting for textures and models...
[02:58:39] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[02:58:39] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[02:58:39] [Server thread/INFO]: 
[02:58:39] [Server thread/INFO]:  Attempting to merge imported font files...
[02:58:39] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[02:58:39] [Server thread/INFO]:  The imported font files have not been deleted.
[02:58:39] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[02:58:39] [Server thread/INFO]: 
[02:58:39] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[02:58:40] [Craft Scheduler Thread - 141 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=728799931427f8f2a5218bdf0dfb182b729f309a in 1629 ms
[03:00:12] [Server thread/INFO]: Flufzs issued server command: /give barrier
[03:08:21] [Server thread/INFO]: Flufzs issued server command: /o reload all
[03:08:21] [Server thread/INFO]:  Updating all items in player-inventories...
[03:08:21] [Server thread/INFO]:  Slicing gui-textures to 1.20.2-format...
[03:08:21] [Server thread/INFO]:  Successfully sliced gui-textures for 1.20.2
[03:08:21] [Server thread/INFO]:  Converting global lang file to individual language files...
[03:08:21] [Server thread/INFO]:  Verifying formatting for textures and models...
[03:08:21] [Server thread/INFO]:  No broken models or textures were found in the resourcepack
[03:08:21] [Server thread/INFO]:  Generating atlas-file for 1.19.3+ Resource Pack format
[03:08:21] [Server thread/INFO]: 
[03:08:21] [Server thread/INFO]:  Attempting to merge imported font files...
[03:08:21] [Server thread/INFO]:  Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[03:08:21] [Server thread/INFO]:  The imported font files have not been deleted.
[03:08:21] [Server thread/INFO]:  If anything seems wrong, there might be conflicting unicodes assigned.
[03:08:21] [Server thread/INFO]: 
[03:08:22] [Server thread/INFO]:  Automatic upload of the resource pack is enabled, uploading...
[03:08:23] [Craft Scheduler Thread - 151 - Oraxen/INFO]:  Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=17b09609a021937fde7bf3d8fe21244e6f48b200 in 1624 ms
[03:08:29] [Server thread/INFO]: Flufzs issued server command: /o inv
[03:08:43] [Server thread/INFO]: Flufzs issued server command: /o inv
[03:12:44] [Server thread/INFO]: Flufzs issued server command: /o inv
[03:13:08] [Server thread/INFO]: Flufzs issued server command: /playtime
[03:13:18] [Server thread/INFO]: Flufzs lost connection: Disconnected
[03:13:18] [Server thread/INFO]: [-] Flufzs
[06:23:15] [Craft Scheduler Thread - 318 - Vault/INFO]: [Vault] Checking for Updates ... 
[06:23:15] [Craft Scheduler Thread - 318 - Vault/INFO]: [Vault] No new version available
[12:23:15] [Craft Scheduler Thread - 642 - Vault/INFO]: [Vault] Checking for Updates ... 
[12:23:15] [Craft Scheduler Thread - 642 - Vault/INFO]: [Vault] No new version available
[17:07:06] [User Authenticator #2/INFO]: Disconnecting LotBandit (/**.**.**.**:63815): Authentication servers are down. Please try again later, sorry!
[17:07:06] [User Authenticator #2/ERROR]: Couldn't verify username because servers are unavailable
[17:07:06] [Server thread/INFO]: LotBandit (/**.**.**.**:63815) lost connection: Authentication servers are down. Please try again later, sorry!