Paste #115910: Unnamed Server Log Paste

Date: 2023/10/02 00:44:23 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


[09:42:04] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[09:42:05] [ServerMain/INFO]: Loaded 7 recipes
[09:42:06] [Server thread/INFO]: Starting minecraft server version 1.19.4
[09:42:06] [Server thread/WARN]: ****************************
[09:42:06] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[09:42:06] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[09:42:06] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[09:42:06] [Server thread/WARN]: ****************************
[09:42:06] [Server thread/INFO]: Loading properties
[09:42:06] [Server thread/INFO]: This server is running Paper version git-Paper-550 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: 483368e on ver/1.19.4)
[09:42:06] [Server thread/INFO]: Server Ping Player Sample Count: 12
[09:42:06] [Server thread/INFO]: Using 4 threads for Netty based IO
[09:42:06] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[09:42:06] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[09:42:06] [Server thread/INFO]: Default game type: SURVIVAL
[09:42:06] [Server thread/INFO]: Generating keypair
[09:42:06] [Server thread/INFO]: Starting Minecraft server on 185.229.237.36:26300
[09:42:06] [Server thread/INFO]: Using epoll channel type
[09:42:06] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[09:42:06] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[09:42:06] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'CMILib' for files 'plugins/CMILib1.4.2.0.jar' and 'plugins/CMILib1.4.1.2.jar' in 'plugins'
[09:42:06] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'CMILib' for files 'plugins/CMILib1.4.1.1.jar' and 'plugins/CMILib1.4.2.0.jar' in 'plugins'
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /root/Desktop/syer-mc-prison/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /root/Desktop/syer-mc-prison/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /root/Desktop/syer-mc-prison/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /root/Desktop/syer-mc-prison/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /root/Desktop/syer-mc-prison/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /root/Desktop/syer-mc-prison/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /root/Desktop/syer-mc-prison/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /root/Desktop/syer-mc-prison/libraries/org/json/json/20220320/json-20220320.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /root/Desktop/syer-mc-prison/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[09:42:07] [Server thread/INFO]: [DiscordSRV] Unknown user language IT.
[09:42:07] [Server thread/INFO]: [DiscordSRV] If you fluently speak IT as well as English, see the GitHub repo to translate it!
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 2 libraries... please wait
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /root/Desktop/syer-mc-prison/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[09:42:07] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /root/Desktop/syer-mc-prison/libraries/net/bytebuddy/byte-buddy/1.14.5/byte-buddy-1.14.5.jar
[09:42:08] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loading 4 libraries... please wait
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/org/json/json/20220320/json-20220320.jar
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/com/mysql/mysql-connector-j/8.0.32/mysql-connector-j-8.0.32.jar
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/org/xerial/snappy/snappy-java/1.1.9.1/snappy-java-1.1.9.1.jar
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar
[09:42:10] [Server thread/INFO]: [SpigotLibraryLoader] [HuskSync] Loaded library /root/Desktop/syer-mc-prison/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[09:42:10] [Server thread/WARN]: Legacy plugin IPWhitelist v1.7 does not specify an api-version.
[09:42:10] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[09:42:10] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[09:42:10] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.5-SNAPSHOT-503;83a4987
[09:42:12] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@a3eb9fb]
[09:42:12] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[09:42:12] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[09:42:12] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.7+216b061
[09:42:12] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.2-SNAPSHOT-b870
[09:42:12] [Server thread/INFO]: [HolographicDisplays] Loading server plugin HolographicDisplays v3.0.2
[09:42:12] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0
[09:42:13] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.4.0-SNAPSHOT-00859d1f
[09:42:13] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[09:42:13] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[09:42:13] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.32-SNAPSHOT (build 3178)
[09:42:13] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.6.2-SNAPSHOT
[09:42:13] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.6.2-20230907.154001-13.jar'
[09:42:13] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_19_R3
[09:42:13] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[09:42:13] [Server thread/INFO]: [BossShopPro] Loading server plugin BossShopPro v2.0.9
[09:42:13] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.2.8-SNAPSHOT (build 6844-DEV)
[09:42:13] [Server thread/INFO]: [MMOCore] Loading server plugin MMOCore v1.12.1-SNAPSHOT
[09:42:13] [Server thread/INFO]: [MMOCore] Plugin file is called 'MMOCore-1.12.1-20230910.222629-14.jar'
[09:42:13] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[09:42:13] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.1.1
[09:42:13] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.4
[09:42:13] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.9.4.jar'
[09:42:13] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[09:42:13] [Server thread/INFO]: [fake-block] Loading server plugin fake-block v2.0.2
[09:42:13] [Server thread/INFO]: [Effect Library] Loading server plugin EffectLib v9.0
[09:42:13] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.5.0.8
[09:42:13] [Server thread/INFO]: [Towny] Loading server plugin Towny v0.99.1.0
[09:42:13] [Server thread/INFO]: [BetonQuest] Loading server plugin BetonQuest v2.0.0-DEV-706
[09:42:13] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.0
[09:42:13] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.24
[09:42:13] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.10 build-18/04/2023
[09:42:13] [Server thread/INFO]: [MysqlPlayerDataBridge] Loading server plugin MysqlPlayerDataBridge v4.9.2
[09:42:13] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[09:42:13] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.47
[09:42:13] [Server thread/INFO]: [BetonQuestGUI] Loading server plugin BetonQuestGUI v1.1.0-BQ2.0.0-706-DEV
[09:42:13] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.3.2
[09:42:13] [Server thread/INFO]: [WorldGuard-Towny] Loading server plugin WorldGuard-Towny v${project.version}
[09:42:13] [Server thread/INFO]: [HappyHud] Loading server plugin HappyHUD v0.3.4-SNAPSHOT
[09:42:13] [Server thread/INFO]: [DynamicShop] Loading server plugin DynamicShop v3.15.2
[09:42:13] [Server thread/INFO]: [CosmeticsCore] Loading server plugin CosmeticsCore v1.2.2e
[09:42:13] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.2.0
[09:42:13] [Server thread/INFO]: [Arceon] Loading server plugin Arceon v0.4.2_1.16+
[09:42:13] [Server thread/INFO]: [SimpleJsonConfig] Loading server plugin SimpleJsonConfig v1.3.2
[09:42:13] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[09:42:13] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[09:42:13] [Server thread/INFO]: [CommandDefender] Loading server plugin CommandDefender v2.1.6 b34
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading server plugin CustomFishing v2.0.0
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency org.apache.commons:commons-pool2:2.11.1
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency redis.clients:jedis:5.0.0
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency dev.dejvokep:boosted-yaml:1.3.1
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency com.zaxxer:HikariCP:5.0.1
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency net.objecthunter:exp4j:0.4.8
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency org.mariadb.jdbc:mariadb-java-client:3.2.0
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency mysql:mysql-connector-java:8.0.30
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency commons-io:commons-io:2.13.0
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency com.google.code.gson:gson:2.10.1
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency com.h2database:h2:2.2.220
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency org.mongodb:mongodb-driver-sync:4.10.2
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency org.mongodb:mongodb-driver-core:4.10.2
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency org.mongodb:bson:4.10.2
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency org.xerial:sqlite-jdbc:3.42.0.0
[09:42:13] [Server thread/INFO]: [CustomFishing] Loading dependency dev.jorel:commandapi-bukkit-shade:9.1.0
[09:42:13] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v1.7.0-SNAPSHOT
[09:42:13] [Server thread/INFO]: [FreedomChat] Loading server plugin FreedomChat v1.4.2
[09:42:13] [Server thread/INFO]: [VoxelSniper] Loading server plugin VoxelSniper v8.6.0
[09:42:13] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.2
[09:42:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[09:42:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[09:42:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[09:42:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'LuckPerms' to create a bStats instance!
[09:42:13] [Server thread/INFO]: [Images] Loading server plugin Images v2.2.9
[09:42:13] [Server thread/INFO]: [DamageIndicator] Loading server plugin DamageIndicator v1.5.0
[09:42:13] [Server thread/INFO]: [VoidSpawn] Loading server plugin VoidSpawn v1.20.0
[09:42:13] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.2
[09:42:13] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.0.3
[09:42:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcpets [1.0.0]
[09:42:13] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[09:42:13] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[09:42:13] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.7.0
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[09:42:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[09:42:13] [Server thread/INFO]: [NashornJs] Loading server plugin NashornJs v1.1.2
[09:42:13] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name nashorn
[09:42:13] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name Nashorn
[09:42:13] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name js
[09:42:13] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name JS
[09:42:13] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name JavaScript
[09:42:13] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name javascript
[09:42:13] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name ECMAScript
[09:42:13] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name ecmascript
[09:42:13] [Server thread/INFO]: [HeadBlocks] Loading server plugin HeadBlocks v2.3.2
[09:42:13] [Server thread/INFO]: [RunAsOP] Loading server plugin RunAsOP v1
[09:42:13] [Server thread/INFO]: [syer_MineHaste] Loading server plugin syer_MineHaste v1.0-SNAPSHOT
[09:42:13] [Server thread/INFO]: [LightAPI] Loading server plugin LightAPI vbukkit-5.3.0 (build SNAPSHOT)
[09:42:13] [Server thread/INFO]: <LightAPI>: [INFO] Preparing LightAPI...
[09:42:13] [Server thread/INFO]: <LightAPI>: [INFO] Preparing done!
[09:42:13] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v5.2.5-RELEASE-b850
[09:42:13] [Server thread/INFO]: [HuskSync] Loading server plugin HuskSync v2.2.4
[09:42:13] [Server thread/INFO]: [MIReplacer] Loading server plugin MIReplacer v3.0
[09:42:13] [Server thread/INFO]: [AdvancedModreq] Loading server plugin AdvancedModreq v6.1.4
[09:42:13] [Server thread/INFO]: [GooP] Loading server plugin Gunging_Ootilities_Plugin v1.10.9
[09:42:13] [Server thread/INFO]: [DiscordSRV] API listener gunging.ootilities.gunging_ootilities_plugin.compatibilities.GooPDiscordSRV subscribed (2 methods)
[09:42:13] [Thread-12/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package de.tr7zw.nbtapi' seems to be outdated!
[09:42:13] [Thread-12/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.2' Newest Version: 2.12.0'
[09:42:13] [Thread-12/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[09:42:13] [Server thread/INFO]: [GooP-Containers] Loading server plugin GooP_Containers v1.0
[09:42:13] [Server thread/INFO]: [IPWhitelist] Loading server plugin IPWhitelist v1.7
[09:42:13] [Server thread/INFO]: [EpicPluginLib] Loading server plugin EpicPluginLib v2.4.2
[09:42:13] [Server thread/INFO]: [Drop2InventoryPlus] Loading server plugin Drop2InventoryPlus v4.1.1
[09:42:13] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.0.0 (build 833)
[09:42:13] [Server thread/INFO]: [ForceResourcepacks] Loading server plugin ForceResourcepacks v1.11.42 (build 651)
[09:42:13] [Server thread/INFO]: Found WorldGuard! Using handler 7. Resourcepacks per region will work!
[09:42:13] [Server thread/INFO]: [CitizensGUI] Loading server plugin CitizensGUI v1.11
[09:42:13] [Server thread/INFO]: [Mines] Loading server plugin Mines v1.0-DEV
[09:42:13] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.19.4-v2-SNAPSHOT
[09:42:18] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v0.9.2
[09:42:18] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[09:42:18] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[09:42:19] [Server thread/INFO]:         __    
[09:42:19] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[09:42:19] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[09:42:19] [Server thread/INFO]: 
[09:42:19] [Server thread/INFO]: [LuckPerms] Loading configuration...
[09:42:20] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[09:42:20] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[09:42:20] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[09:42:21] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[09:42:21] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[09:42:22] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[09:42:22] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3852ms)
[09:42:22] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[09:42:22] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[09:42:22] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[09:42:22] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[09:42:22] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[09:42:22] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.5-SNAPSHOT-503;83a4987
[09:42:22] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[09:42:22] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[09:42:22] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[09:42:22] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[09:42:23] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[09:42:23] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 67 build(s) out of date.
You are running build 503, the latest version is build 570.
Update at https://www.spigotmc.org/resources/13932/
[09:42:23] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[09:42:23] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[09:42:23] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0
[09:42:23] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.0
[09:42:23] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.24
[09:42:23] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.10 build-18/04/2023
[09:42:23] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[09:42:23] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R3
[09:42:23] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[09:42:23] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[09:42:23] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[09:42:23] [Server thread/INFO]: [NexEngine] Using 'en' language.
[09:42:23] [Server thread/INFO]: [NexEngine] Plugin loaded in 81 ms!
[09:42:23] [Server thread/INFO]: [SimpleJsonConfig] Enabling SimpleJsonConfig v1.3.2
[09:42:23] [Server thread/INFO]: [SimpleJSONConfig] »» Enabling SimpleJsonConfig - 2DevsStudio
[09:42:23] [Server thread/INFO]: [NashornJs] Enabling NashornJs v1.1.2
[09:42:23] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v5.2.5-RELEASE-b850
[09:42:24] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.19.4-v2-SNAPSHOT
[09:42:24] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paper (git-Paper-550) : v1_19_R3 (Minecraft 1.19.4)
[09:42:24] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[09:42:24] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[09:42:25] [Server thread/INFO]: [BKCommonLib] If you need syntax help visit javadocs.a.b.v1_2_3.net
[09:42:25] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.19.4-v2-SNAPSHOT (build: 1549) enabled! (1.386s)
[09:42:25] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[09:42:25] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[09:42:25] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[09:42:25] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[09:42:25] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[09:42:25] [Server thread/INFO]: Preparing level "world"
[09:42:25] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[09:42:25] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[09:42:26] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[09:42:26] [Server thread/INFO]: Time elapsed: 208 ms
[09:42:26] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[09:42:26] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[09:42:26] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[09:42:27] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[09:42:27] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[09:42:27] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[09:42:27] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[09:42:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[09:42:27] [Server thread/INFO]: [WorldGuard] Loading region data...
[09:42:27] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.2-SNAPSHOT-b870
[09:42:27] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.2-SNAPSHOT-b870" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[09:42:27] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[09:42:27] [Server thread/INFO]: Preparing start region for dimension minecraft:lobby_prison_towny
[09:42:28] [Server thread/INFO]: Time elapsed: 409 ms
[09:42:28] [Server thread/INFO]: [WorldGuard] (lobby_prison_towny) TNT ignition is PERMITTED.
[09:42:28] [Server thread/INFO]: [WorldGuard] (lobby_prison_towny) Lighters are PERMITTED.
[09:42:28] [Server thread/INFO]: [WorldGuard] (lobby_prison_towny) Lava fire is blocked.
[09:42:28] [Server thread/INFO]: [WorldGuard] (lobby_prison_towny) Fire spread is UNRESTRICTED.
[09:42:28] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby_prison_towny'
[09:42:28] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: hub_towny
[09:42:28] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[09:42:28] [Server thread/INFO]: Preparing start region for dimension minecraft:temp_mine
[09:42:28] [Server thread/INFO]: Time elapsed: 217 ms
[09:42:28] [Server thread/INFO]: [WorldGuard] (temp_mine) TNT ignition is PERMITTED.
[09:42:28] [Server thread/INFO]: [WorldGuard] (temp_mine) Lighters are PERMITTED.
[09:42:28] [Server thread/INFO]: [WorldGuard] (temp_mine) Lava fire is blocked.
[09:42:28] [Server thread/INFO]: [WorldGuard] (temp_mine) Fire spread is UNRESTRICTED.
[09:42:28] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'temp_mine'
[09:42:28] [Server thread/INFO]: Could not set generator for world 'world': Plugin 'VoidGenerator' does not exist
[09:42:28] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: lobby
[09:42:28] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[09:42:28] [Server thread/INFO]: [Multiverse-Core] 3 - World(s) loaded.
[09:42:28] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[09:42:28] [Server thread/INFO]: [Multiverse-Core] Version 4.3.2-SNAPSHOT-b870 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[09:42:28] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.2
[09:42:29] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.4.0-SNAPSHOT-00859d1f
[09:42:29] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.4)...
[09:42:29] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[09:42:30] [Server thread/INFO]: [MythicMobs] Mythic HolographicDisplays Support has been enabled!
[09:42:30] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[09:42:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythic [5.0.0]
[09:42:30] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[09:42:30] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[09:42:30] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[09:42:30] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[09:42:30] [Server thread/INFO]: [MythicMobs] Base directory /root/Desktop/syer-mc-prison/plugins/MythicMobs/SavedData
[09:42:30] [Server thread/INFO]: [MythicMobs] Module directory /root/Desktop/syer-mc-prison/plugins/MythicMobs/SavedData/worlds
[09:42:32] [Server thread/INFO]: [MythicMobs] Loading Packs...
[09:42:32] [Server thread/INFO]: [MythicMobs] Loading Items...
[09:42:32] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[09:42:32] [Server thread/INFO]: [MythicMobs] Loading Skills...
[09:42:32] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[09:42:32] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[09:42:33] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[09:42:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 124 mobs.
[09:42:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 vanilla mob overrides.
[09:42:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[09:42:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 359 skills.
[09:42:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[09:42:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 140 mythic items.
[09:42:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[09:42:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 35 mob spawners.
[09:42:33] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[09:42:33] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[09:42:33] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.4.0 ( build 00859d1f ) has been successfully loaded!
[09:42:33] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[09:42:33] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[09:42:33] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3178)
[09:42:33] [Server thread/INFO]: [Citizens] Loading external libraries
[09:42:33] [Server thread/INFO]: [Citizens] No translation for system language (it_IT): defaulting to English
[09:42:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[09:42:33] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[09:42:33] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.6.2-SNAPSHOT
[09:42:34] [Server thread/INFO]: [MythicLib] Hooked onto HolographicDisplays
[09:42:34] [Server thread/INFO]: [MythicLib] Hooked onto CMI
[09:42:34] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[09:42:34] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[09:42:34] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[09:42:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythiclib [1.6.2-SNAPSHOT]
[09:42:34] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[09:42:34] [Server thread/INFO]: [BossShopPro] Enabling BossShopPro v2.0.9
[09:42:34] [Server thread/INFO]: [BossShopPro] Loading data...
[09:42:34] [Server thread/INFO]: [BossShopPro] Hooked into PlaceholderAPI.
[09:42:34] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.8-SNAPSHOT (build 6844-DEV)
[09:42:34] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1355), impl for Spigot v1.2.8-SNAPSHOT (build 6844-DEV) 
[09:42:34] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.6 
[09:42:34] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[09:42:34] [Server thread/WARN]: [Denizen] Debug is disabled in the Denizen config. This is almost always a mistake, and should not be done in the majority of cases.
[09:42:35] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.12.1-SNAPSHOT
[09:42:35] [Server thread/INFO]: [io.lumine.mythic.lib.sql.hikari.HikariDataSource] MMO-hikari - Starting...
[09:42:35] [Server thread/INFO]: [io.lumine.mythic.lib.sql.hikari.HikariDataSource] MMO-hikari - Start completed.
[09:42:35] [Server thread/INFO]: [MMOCore] Hooked onto Vault
[09:42:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmocore [1.12.1-SNAPSHOT]
[09:42:35] [Server thread/INFO]: [MMOCore] Hooked onto PlaceholderAPI
[09:42:35] [Server thread/INFO]: [MMOCore] Hooked onto Citizens
[09:42:35] [Server thread/INFO]: [MMOCore] Hooked onto WorldGuard
[09:42:35] [Server thread/INFO]: [MMOCore] Hooked onto MythicMobs
[09:42:36] [Server thread/WARN]: [MMOCore] Could not initialize party module: Plugin 'PARTIES' is not installed
[09:42:36] [Server thread/WARN]: [MMOCore] Hooked guilds onto MMOCore
[09:42:36] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[09:42:36] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.1.1
[09:42:36] [Server thread/INFO]: Server version: v1_19_R3 - 1.19.4 - paper
[09:42:37] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[09:42:37] [pool-45-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[09:42:37] [Server thread/INFO]: CMI hooked.
[09:42:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.4.1.1]
[09:42:37] [Server thread/INFO]: PlaceholderAPI hooked.
[09:42:37] [Server thread/INFO]: Updated (EN) language file. Took 20ms
[09:42:37] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.4
[09:42:37] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[09:42:37] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[09:42:37] [Server thread/INFO]: [MMOItems] Hooked onto MMOCore
[09:42:37] [Server thread/INFO]: [MMOItems] Now using MMOCore as RPG core plugin
[09:42:37] [Server thread/INFO]: [MMOItems TOOL OLD_FISHINGROD] Could not load base item data 'custom-fishing-power': Could not find stat with ID 'CUSTOM_FISHING_POWER'
[09:42:37] [Server thread/INFO]: [MMOItems TOOL SCRAP_SHOVEL] Could not load base item data 'custom-teststat': Could not find stat with ID 'CUSTOM_TESTSTAT'
[09:42:37] [Server thread/INFO]: [MMOItems Item Templates] Loading template modifiers, please wait..
[09:42:37] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[09:42:37] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[09:42:37] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[09:42:37] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[09:42:37] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'scrap_axe' from crafting station 'anvil': Invalid MMOItem TOOL SCRAP_HATCHET: No such MMOItem for Type TOOL. 
[09:42:37] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'iron_axe' from crafting station 'anvil': Invalid MMOItem TOOL IRON_HATCHET: No such MMOItem for Type TOOL. 
[09:42:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmoitems [6.9.4]
[09:42:37] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[09:42:37] [Server thread/INFO]: [MMOItems] Hooked onto BossShopPro
[09:42:37] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[09:42:37] [Server thread/INFO]: [fake-block] Enabling fake-block v2.0.2
[09:42:37] [Server thread/INFO]: [Effect Library] Enabling EffectLib v9.0
[09:42:37] [Server thread/INFO]: [CMI] Enabling CMI v9.5.0.8
[09:42:37] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[09:42:37] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[09:42:37] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[09:42:37] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[09:42:37] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[09:42:37] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[09:42:37] [Server thread/INFO]: _______________________________________________________
[09:42:37] [Server thread/INFO]:   Integrating PaperSpigot async methods
[09:42:37] [Server thread/INFO]:   Citizens found.
[09:42:37] [Server thread/INFO]:   24 Enabled and 34 Disabled modules
[09:42:37] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.40
[09:42:37] [Server thread/INFO]:   Initialized Cipher256 AES
[09:42:37] [Server thread/INFO]:   Loaded (60) regular alias into memory. Took 25ms
[09:42:37] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 1ms
[09:42:38] [Server thread/INFO]:   Detected Java17
[09:42:38] [Server thread/INFO]:   8.0.33 data base type detected
[09:42:38] [Server thread/INFO]:   Started MySQL data base. Took 222ms
[09:42:38] [Server thread/INFO]:   Enabled Towny support
[09:42:38] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[09:42:38] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 0ms
[09:42:38] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[09:42:38] [Server thread/INFO]:   Loaded (144) custom mob heads into memory. Took 10ms
[09:42:38] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 22ms
[09:42:38] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (lobby) name
[09:42:38] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (hub_towny) name
[09:42:38] [Server thread/INFO]:   Enabling BungeeCord Support
[09:42:38] [Server thread/INFO]:   Initializing BungeeCord
[09:42:38] [Server thread/INFO]:   Loaded (1) kits into memory. Took 4ms
[09:42:38] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 8ms
[09:42:38] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 2ms
[09:42:38] [Server thread/INFO]:   
Attention! Found 1 duplicates in database. Same name, different UUID. This can cause some minor issues. Please remove one of them from database with /cmi removeuser [uuid] or /cmi removeuser duplicates 
Yriokiri 717a29b8-7476-4d29-ba64-b9c157b9bf83 last seen: 50 min 16 sec  
Yriokiri e87be2db-71a7-34d3-9a67-066bd2bd529b last seen: Unknown
[09:42:38] [Server thread/INFO]:   Loaded (319) player data into memory. Took 75ms
[09:42:38] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 1ms
[09:42:38] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[09:42:38] [Server thread/INFO]:   Loaded (17) custom alias into memory. Took 2ms
[09:42:38] [Server thread/INFO]:   Registered events. Took 83ms
[09:42:38] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 2ms
[09:42:38] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[09:42:38] [Server thread/INFO]:   Updated (EN) language file. Took 81ms
[09:42:38] [Server thread/INFO]:   Can't load worth value for wood
[09:42:38] [Server thread/INFO]:   Can't load worth value for rawfish
[09:42:38] [Server thread/INFO]:   Can't load worth value for storageminecart
[09:42:38] [Server thread/INFO]:   Can't load worth value for stationarywater
[09:42:38] [Server thread/INFO]:   Can't load worth value for woodplate
[09:42:38] [Server thread/INFO]:   Can't load worth value for water
[09:42:38] [Server thread/INFO]:   Can't load worth value for irondoorblock
[09:42:38] [Server thread/INFO]:   Can't load worth value for redstonewire
[09:42:38] [Server thread/INFO]:   Can't load worth value for wallsign
[09:42:38] [Server thread/INFO]:   Can't load worth value for doublestep
[09:42:38] [Server thread/INFO]:   Can't load worth value for glowingredstoneore
[09:42:38] [Server thread/INFO]:   Can't load worth value for stationarylava
[09:42:38] [Server thread/INFO]:   Can't load worth value for sugarcaneblock
[09:42:38] [Server thread/INFO]:   Can't load worth value for lava
[09:42:38] [Server thread/INFO]:   Can't load worth value for inksack
[09:42:38] [Server thread/INFO]:   Loaded (150) worth values into memory. Took 5ms
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:IM-MS -> Clan(696933139993329704)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:chat-clan👑📝(701810028415418449)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:viaggio-giappone🎌(809032130402582578)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:text-bot(699035958565404813)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:link-invito-cbnwwqg(697184714464690226)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs(698725421877035108)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot🤖🎧(699436058424639488)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎴🧙🏻arcadia🧙🏻🎴(806971014226640987)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎲mudae🤖(783726669336674305)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:chat👾(696933139993329707)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:spammino-live📺(792704519468744734)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:appunti📕(701830818007613601)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:università📗(701830960248914012)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Met | まってお(516748285902454784)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-join(561674280878866446)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rules(983626504149798942)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderator-only(983626504149798943)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎏-📜-regole(516769457734025220)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔞-moderazione(784072294627541016)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🈯-rules(784055132912353310)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚻-harem(784071301278203965)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚼-pokemon(784071239555350538)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:♿-other(784072093834149918)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🀄-𝙍𝙚𝙨𝙤𝙪𝙧𝙘𝙚𝙨(786914528487014410)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🀄-𝙈𝙞𝙣𝙚𝙘𝙧𝙖𝙛𝙩(774680516661084221)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🀄-𝙏𝙚𝙭𝙩𝙪𝙧𝙚(778578302222073866)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🀄-𝙏𝙖𝙨𝙠(778601772238897162)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket(791484542329421855)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-echia(791484219212693505)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-echia(791484250926350338)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-prison(791484295906328626)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-prison(791484329662480384)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-dungeon-echia(793818279256391690)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-dungeon-echia(793818204883124244)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🀄-𝘾𝙝𝙖𝙩(775682489569378340)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-azur-lane(731119659197399160)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-anime(577963077014913025)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-sama(536648985184698369)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-oppai(562408461611040768)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-otaku(516762971075248138)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-loli(516762732394184704)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-sensei(516762488252137514)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-senpai(516762630183059469)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-pubblica(798126935725178930)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-live(592511389554311169)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-screenshot-fivem(588119134752079898)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💮-🀄-pubblica-dissing(516748285902454786)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🀄-github(840232769254326272)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🀄-bp-image(960258073455390782)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:SupremEvolutioN.com(542060016048406547)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭secret-chat「🔑」(817829852928278548)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭log「📑」(817846008461393990)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊log-server「📑」(818537919974867005)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊log-automod「📑」(818512030662262784)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊log-message「📑」(818538031413329941)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊log-voice「📑」(818537556525711440)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊backup-lavoro「📑」(921050529226952724)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊test-bot-bomb「📑」(938561834934485044)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╰log-moderation「📑」(818513159891320883)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭imms-chat「🔰」(817834416705110047)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊studio「📚」(818490508480872498)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊bot-imms「🎧」(818543383840555029)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊trading「📉」(1006208373412331520)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╰viaggi「🛫」(817844375035576380)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭regole「📝」(817889962488758285)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊info「❓」(817889994470719528)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊ruoli「✅」(817890024535228448)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊info-bot「🤖」(817892085813739540)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭chat「📌」(817899417331695696)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊meme「📊」(817899616346570822)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊news「📰」(817899638681370664)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊musica「🎧」(817899695959310357)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭anime「💠」(817899671598006272)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭chat「📌」(817900307857145867)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊team-1「🟥」(817900340003078174)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊team-2「🟩」(817900365272973342)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭chat「📌」(817900553044361227)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊team-1「🟦」(817900581128765460)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊team-2「🟨」(817900607024398387)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭chat「📌」(818525660607283220)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊team-1「🟪」(818525760879853578)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊team-2「⬜」(818525917718249505)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭chat「📌」(818526144734560286)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊team-1「⬛」(818526198707126332)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊team-2「🟧」(818526298460782644)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╭tribuanale「📌」(947898431546994798)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:┊legislatura「📑」(947898746233049138)
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:console-echia(791484219212693505)
[09:42:38] [Server thread/INFO]:   Loaded (21) warps into memory. Took 4ms
[09:42:38] [Server thread/INFO]:   Vault permissions was found - Enabling capabilities.
[09:42:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.5.0.8]
[09:42:38] [Server thread/INFO]:   PlaceholderAPI hooked.
[09:42:38] [Server thread/INFO]:   PlaceholderAPI was found - Enabling capabilities.
[09:42:38] [Server thread/INFO]:   Starting world timer.
[09:42:38] [Server thread/INFO]:   Initializing world manager.
[09:42:38] [Server thread/INFO]:   Loaded (5) schedules into memory. Took 4ms
[09:42:38] [Server thread/INFO]:   Loaded GeoIP
[09:42:38] [Server thread/INFO]:   Loaded (0) skin cache entries into memory. Took 0ms
[09:42:38] [Server thread/INFO]:   Found DiscordSRV
[09:42:38] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (4 methods)
[09:42:38] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[09:42:38] [Server thread/INFO]:   Version 9.5.0.8 has been enabled
[09:42:38] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[09:42:38] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[09:42:38] [Server thread/INFO]: [Towny] Enabling Towny v0.99.1.0
[09:42:38] [Server thread/INFO]: ====================      Towny      ========================
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[09:42:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[09:42:39] [Server thread/INFO]: [Towny] Successfully loaded translations for 41 languages.
[09:42:39] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: default, bank, shop, wilds, inn, farm, embassy, arena, jail.
[09:42:39] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[09:42:39] [Server thread/WARN]: [Towny] Error: Your towny\data\townblocks\ folder contains a folder named 'Towny_world' which doesn't appear to exist on your Bukkit server!
[09:42:39] [Server thread/WARN]: [Towny] Error: Towny is going to skip loading the townblocks found in this folder.
[09:42:39] [Server thread/INFO]: [Towny] Database: Loaded in 51ms.
[09:42:39] [Server thread/INFO]: [Towny] Database: 100% of residents have stored UUIDs.
[09:42:39] [ForkJoinPool.commonPool-worker-4/INFO]: [Towny] Cleaning up old backups...
[09:42:39] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[09:42:39] [Server thread/INFO]: [Towny] Plugins found: 
[09:42:39] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.40 via Vault
[09:42:39] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.40 via Vault
[09:42:39] [ForkJoinPool.commonPool-worker-4/INFO]: [Towny] Successfully cleaned backups.
[09:42:39] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Making backup...
[09:42:39] [Server thread/INFO]: [Towny]   Economy: CMIEconomy via Vault
[09:42:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: townyadvanced [0.99.1.0]
[09:42:39] [Server thread/INFO]: [Towny] Enabled LuckPerms contexts: towny:insideownplot, towny:mayor, towny:insideowntown, towny:townrank, towny:nationrank, towny:town, towny:nation, towny:resident, towny:king, towny:insidetown
[09:42:39] [Server thread/INFO]: [Towny]   Add-ons: WorldGuard-Towny v${project.version}, PlaceholderAPI
                           v2.11.3, LuckPerms v5.4.40
[09:42:39] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[09:42:39] [Server thread/INFO]: =============================================================
[09:42:39] [Server thread/INFO]: [Towny] Version: 0.99.1.0 - Plugin Enabled
[09:42:39] [Server thread/INFO]: =============================================================
[09:42:39] [Server thread/INFO]: [BetonQuest] Enabling BetonQuest v2.0.0-DEV-706
[09:42:39] [Server thread/INFO]: [BetonQuest] Running on JRE 17.0.6 (build 10, optional Ubuntu-0ubuntu120.04.1, pre-release info N/A) by Private Build
[09:42:40] [Server thread/INFO]: [BetonQuest] Using SQLite for storing data!
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into LuckPerms
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into Vault
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into FastAsyncWorldEdit
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into PlaceholderAPI
[09:42:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betonquest [2.0.0-DEV-706]
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into WorldGuard
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into HolographicDisplays
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into ProtocolLib
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into MythicMobs
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into Citizens
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into MythicLib
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into Denizen
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into MMOCore
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into MMOItems
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into fake-block
[09:42:40] [Server thread/INFO]: [BetonQuest] Hooking into EffectLib
[09:42:40] [Server thread/INFO]: [BetonQuest] Using HolographicDisplays as dedicated hologram provider!
[09:42:40] [Server thread/INFO]: [BetonQuest] BetonQuest successfully enabled!
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Enabling MysqlPlayerDataBridge v4.9.2
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Loading the config file...
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Vault dependency found.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Using economy system: CMIEconomy
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Compatible server version detected: 1.19.4
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] CMI found and support enabled!
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] MySQL driver loaded succesfully.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Connecting to the database...
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Database connection successfull!
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Data save task is enabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync inventory is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync gamemode is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync armor is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync enderchest is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync experience is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync active potion effects is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync players health  is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync players food is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync players air is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync players location is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync players bed location is disabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] Sync economy is enabled.
[09:42:40] [Server thread/INFO]: [MysqlPlayerDataBridge] MysqlPlayerDataBridge loaded successfully!
[09:42:40] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[09:42:40] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[09:42:40] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[09:42:40] [Server thread/INFO]: --------------------
[09:42:40] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[09:42:40] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[09:42:40] [Server thread/INFO]: --------------------
[09:42:40] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.47
[09:42:40] [Server thread/INFO]: [BigDoors] Power Block Types:
[09:42:40] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[09:42:40] [Server thread/INFO]: [BigDoors] No materials Blacklisted!
[09:42:40] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[09:42:40] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[09:42:40] [Server thread/INFO]: [BigDoors]  - LAVA
[09:42:40] [Server thread/INFO]: [BigDoors]  - WATER
[09:42:40] [Server thread/INFO]: [BigDoors]  - SNOW
[09:42:40] [Server thread/INFO]: [BigDoors]  - FERN
[09:42:40] [Server thread/INFO]: [BigDoors]  - GRASS
[09:42:40] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[09:42:40] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[09:42:40] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[09:42:40] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[09:42:40] [Server thread/INFO]: [BetonQuestGUI] Enabling BetonQuestGUI v1.1.0-BQ2.0.0-706-DEV
[09:42:40] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.3.2
[09:42:40] [Server thread/INFO]:  
[09:42:40] [Server thread/INFO]: __________________________________________________________
[09:42:40] [Server thread/INFO]:  
[09:42:40] [Server thread/INFO]:                        TradeSystem [2.3.2]
[09:42:40] [Server thread/INFO]:  
[09:42:40] [Server thread/INFO]: Status:
[09:42:40] [Server thread/INFO]:  
[09:42:40] [Server thread/INFO]: MC-Version: 1.19.4 (R0.1-SNAPSHOT, Paper)
[09:42:40] [Server thread/INFO]:  
[09:42:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[09:42:40] [Server thread/INFO]:   > Loading sounds
[09:42:40] [Server thread/INFO]:   > Loading blacklist
[09:42:41] [Server thread/INFO]:     ...got 3 blocked item(s)
[09:42:41] [Server thread/INFO]:   > Loading layouts
[09:42:41] [Server thread/INFO]:     ...got 3 layout(s)
[09:42:41] [Server thread/INFO]:   > Database logging is disabled
[09:42:41] [Server thread/INFO]:  
[09:42:41] [Server thread/INFO]: Finished (151ms)
[09:42:41] [Server thread/INFO]:  
[09:42:41] [Server thread/INFO]: __________________________________________________________
[09:42:41] [Server thread/INFO]:  
[09:42:41] [Server thread/INFO]: [WorldGuard-Towny] Enabling WorldGuard-Towny v${project.version}
[09:42:41] [Server thread/INFO]: [HappyHud] Enabling HappyHUD v0.3.4-SNAPSHOT
[09:42:41] [Server thread/INFO]: [HappyHud] Ignoring default file generation...
[09:42:41] [Server thread/INFO]: [HappyHud] Registered translation locale: en_us
[09:42:41] [Server thread/INFO]: [HappyHud] ProtocolLib support detected.
[09:42:41] [Server thread/INFO]: [HappyHud] PlaceholderAPI parser has been registered.
[09:42:42] [Server thread/WARN]: Plugin 'HappyHUD' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: Ehhthan
[09:42:42] [Server thread/INFO]: [HappyHud] [ACF] Enabled Asynchronous Tab Completion Support!
[09:42:42] [Server thread/WARN]: Plugin 'HappyHUD' is creating timing 'Command: happyhuds reload' - this is deprecated behavior, please report it to the authors: Ehhthan
[09:42:42] [Server thread/WARN]: Plugin 'HappyHUD' is creating timing 'Command: happyhuds layout' - this is deprecated behavior, please report it to the authors: Ehhthan
[09:42:42] [Server thread/WARN]: Plugin 'HappyHUD' is creating timing 'Command: happyhuds popup' - this is deprecated behavior, please report it to the authors: Ehhthan
[09:42:42] [Server thread/INFO]: [DynamicShop] Enabling DynamicShop v3.15.2
[09:42:42] [Server thread/INFO]: [DShop] 'Vault' Found
[09:42:42] [Server thread/INFO]: [DShop] 'Jobs Reborn' Not Found
[09:42:42] [Server thread/INFO]: [DShop] 'PlayerPoints' Not Found
[09:42:42] [Server thread/INFO]: [DShop] 'PlaceholderAPI' Found
[09:42:42] [Server thread/INFO]: [DShop] Enabled! :)
[09:42:42] [Server thread/INFO]: [CosmeticsCore] Enabling CosmeticsCore v1.2.2e
[09:42:42] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[09:42:42] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[09:42:42] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_hardhat_headlamps
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_hardhat_headlamps_2
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_hardhat_headlamps_3
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_hardhat_headlamps_4
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_hardhat_headlamps_5
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_miner_backpack
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_miner_backpack_2
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_miner_backpack_3
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_miner_backpack_4
[09:42:42] [Server thread/INFO]: Cosmetic key: miner_cosmetic_miner_backpack_5
[09:42:42] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.2.0
[09:42:42] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[09:42:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.2.0]
[09:42:42] [Server thread/INFO]: [ExcellentCrates] Using 'en' language.
[09:42:42] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[09:42:42] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@1736f5aa
[09:42:42] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[09:42:42] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crate keys.
[09:42:42] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[09:42:42] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[09:42:42] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 389 ms!
[09:42:42] [Server thread/INFO]: [Arceon] Enabling Arceon v0.4.2_1.16+
[09:42:42] [Server thread/INFO]: [Arceon] Arceon loading...
[09:42:42] [Server thread/INFO]: [Arceon] Loading config...
[09:42:42] [Server thread/INFO]: [Arceon] Loaded 11 fonts!
[09:42:43] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[09:42:43] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[09:42:43] [Server thread/INFO]: [spark] Starting background profiler...
[09:42:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.34]
[09:42:43] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[09:42:43] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuard' is creating timing 'Third-Party Session Handlers' - this is deprecated behavior, please report it to the authors: 
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'WalkSpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'BlockedEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GodmodeFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GiveEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlyFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlySpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'PlaySoundsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GlideFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[09:42:43] [Server thread/INFO]: [CommandDefender] Enabling CommandDefender v2.1.6 b34
[09:42:43] [Server thread/INFO]: CommandDefender: File Loader: Loading files...
[09:42:43] [Server thread/INFO]: CommandDefender: Start-up: Registering listeners...
[09:42:43] [Server thread/INFO]: CommandDefender: Start-up: Registering commands...
[09:42:43] [Server thread/INFO]: CommandDefender: Start-up complete (took 12ms).
[09:42:43] [Server thread/INFO]: [CustomFishing] Enabling CustomFishing v2.0.0
[09:42:44] [Server thread/INFO]: [CustomFishing] MMOItems hooked!
[09:42:44] [Server thread/INFO]: [CustomFishing] MythicMobs hooked!
[09:42:44] [Server thread/INFO]: [CustomFishing] MMOCore hooked!
[09:42:44] [Server thread/INFO]: [CustomFishing] BetonQuest hooked!
[09:42:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cfcompetition [2.0]
[09:42:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: fishingstats [2.0]
[09:42:44] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v1.7.0-SNAPSHOT
[09:42:44] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[09:42:44] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[09:42:44] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[09:42:44] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[09:42:45] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[09:42:45] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[09:42:45] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[09:42:45] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v1.7.0 has been successfully loaded!
[09:42:45] [Server thread/INFO]: [FreedomChat] Enabling FreedomChat v1.4.2
[09:42:45] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v8.6.0
[09:42:45] [pool-53-thread-1/INFO]: [CustomFishing] You are using the latest version.
[09:42:45] [Server thread/INFO]: [VoxelSniper] Registered 68 Sniper Brushes with 132 handles.
[09:42:45] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[09:42:45] [Thread-30/INFO]: Checking for updates...
[09:42:45] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.2
[09:42:45] [Server thread/INFO]: [NBTAPI] Adding listeners...
[09:42:45] [Server thread/INFO]: [NBTAPI] Gson:
[09:42:45] [Server thread/INFO]: [NBTAPI] Checking bindings...
[09:42:45] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[09:42:45] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[09:42:45] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[09:42:45] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[09:42:45] [Server thread/INFO]: [Images] Enabling Images v2.2.9
[09:42:45] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[09:42:45] [Server thread/INFO]: [DamageIndicator] Enabling DamageIndicator v1.5.0
[09:42:45] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[09:42:45] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[09:42:45] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[09:42:45] [Server thread/INFO]: [TAB] Enabling TAB v3.3.2
[09:42:45] [Server thread/INFO]: [TAB] Server version: 1.19.4 (v1_19_R3)
[09:42:45] [Server thread/INFO]: [TAB] Loaded NMS hook in 24ms
[09:42:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.3.2]
[09:42:45] [Server thread/INFO]: [TAB] Enabled in 89ms
[09:42:45] [Server thread/INFO]: [MCPets] Enabling MCPets v4.0.3
[09:42:46] [Server thread/INFO]: [MCPets] : Language file reloaded.
[09:42:46] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[09:42:46] [Server thread/INFO]: Loading pets... 
[09:42:46] [Server thread/INFO]:   - Bichon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Charles_King_Spaniel loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Goldfish loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Hamster_Brown loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Hamster_Gray loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Parakeet_Blue loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Parakeet_Green loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Persian_Cat loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Shihtzu loaded succesfully.
[09:42:46] [Server thread/INFO]:   - F_Pet_Fire_Dragon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - E_Pet_Frost_Wolf loaded succesfully.
[09:42:46] [Server thread/INFO]:   - E_Pet_Hellhound loaded succesfully.
[09:42:46] [Server thread/INFO]:   - F_Pet_Ice_Dragon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - C_Pet_Kitsune loaded succesfully.
[09:42:46] [Server thread/INFO]:   - E_Pet_Lunar_Wolf loaded succesfully.
[09:42:46] [Server thread/INFO]:   - F_Pet_Nature_Dragon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - B_Pet_Phoenix loaded succesfully.
[09:42:46] [Server thread/INFO]:   - D_Pet_Sai_Ninja loaded succesfully.
[09:42:46] [Server thread/INFO]:   - D_Pet_Samurai loaded succesfully.
[09:42:46] [Server thread/INFO]:   - F_Pet_Shadow_Dragon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - D_Pet_Shuriken_Ninja loaded succesfully.
[09:42:46] [Server thread/INFO]:   - C_Pet_Spirit_Fox loaded succesfully.
[09:42:46] [Server thread/INFO]:   - F_Pet_Thunder_Dragon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - B_Pet_Thunderbird loaded succesfully.
[09:42:46] [Server thread/INFO]:   - F_Pet_Undead_Dragon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - F_Pet_Wind_Dragon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - F_Pet_Aether_Dragon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - A_Pet_Angel loaded succesfully.
[09:42:46] [Server thread/INFO]:   - C_Pet_Dark_Kitsune loaded succesfully.
[09:42:46] [Server thread/INFO]:   - A_Pet_Demon loaded succesfully.
[09:42:46] [Server thread/INFO]:   - B_Pet_Eagle loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Capybara_Mount loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Horse_Pegasus loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Horse_Spartan loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Kitsune_Normal loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Phantom_Ghost loaded succesfully.
[09:42:46] [Server thread/INFO]:   - Phoenix_Flame loaded succesfully.
[09:42:46] [Server thread/INFO]: [MCPets] : 37 pets registered successfully !
[09:42:46] [Server thread/INFO]: [MCPets] : 2 categories registered successfully !
[09:42:46] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[09:42:46] [Server thread/INFO]:       Plugin made by Nocsy
[09:42:46] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[09:42:46] [Server thread/INFO]: -=- Launching Flags -=-
[09:42:46] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[09:42:46] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[09:42:46] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[09:42:46] [Server thread/INFO]: 3 flags launched.
[09:42:46] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.7.0
[09:42:46] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[09:42:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for mmocore_profession_mining. Canceling updater and bumping DB version.
[09:42:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mine_block. Canceling updater and bumping DB version.
[09:42:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[09:42:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance_commas. Canceling updater and bumping DB version.
[09:42:46] [Server thread/INFO]: [ajLeaderboards] Loaded 4 boards
[09:42:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.7.0]
[09:42:46] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[09:42:46] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.7.0 by ajgeiss0702 enabled!
[09:42:46] [Server thread/INFO]: [HeadBlocks] Enabling HeadBlocks v2.3.2
[09:42:46] [Server thread/INFO]: HeadBlocks initializing...
[09:42:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: headblocks [1.0.0]
[09:42:47] [Server thread/INFO]: Redis cache properly connected!
[09:42:47] [Server thread/INFO]: SQLite storage properly connected!
[09:42:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[09:42:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[09:42:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[09:42:47] [Server thread/INFO]: HeadBlocks successfully loaded!
[09:42:47] [Server thread/INFO]: [RunAsOP] Enabling RunAsOP v1
[09:42:47] [Server thread/INFO]: [syer_MineHaste] Enabling syer_MineHaste v1.0-SNAPSHOT
[09:42:47] [Server thread/INFO]: [SimpleJSONConfig] »» Loading plugin: syer_MineHaste
[09:42:47] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 46 ms to scan 1 urls, producing 12 keys and 27 values
[09:42:47] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 12 keys and 27 values
[09:42:47] [Server thread/INFO]: [LightAPI] Enabling LightAPI vbukkit-5.3.0 (build SNAPSHOT)
[09:42:47] [Server thread/INFO]: <LightAPI>: [INFO] Initializing LightAPI...
[09:42:47] [Server thread/INFO]: <LightAPI>: [INFO] Force legacy is enabled
[09:42:47] [Server thread/INFO]: <LightAPI>: [INFO] Compatibility mode is enabled
[09:42:47] [Server thread/INFO]: <LightAPI>: [INFO] Metrics is enabled!
[09:42:47] [Server thread/INFO]: <LightAPI>: [INFO] LightAPI initialized!
[09:42:47] [Server thread/INFO]: [HuskSync] Enabling HuskSync v2.2.4
[09:42:47] [Server thread/INFO]: [HuskSync] Loading plugin configuration settings & locales...
[09:42:47] [Server thread/INFO]: [HuskSync] Successfully loaded plugin configuration settings & locales
[09:42:47] [Server thread/INFO]: [HuskSync] Attempting to establish connection to the database...
[09:42:47] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.HikariDataSource] HuskSyncHikariPool - Starting...
[09:42:47] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.pool.HikariPool] HuskSyncHikariPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@3cff3b0f
[09:42:47] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.HikariDataSource] HuskSyncHikariPool - Start completed.
[09:42:47] [Server thread/INFO]: [HuskSync] Successfully established a connection to the database
[09:42:47] [Server thread/INFO]: [HuskSync] Attempting to establish connection to the Redis server...
[09:42:47] [Server thread/INFO]: [HuskSync] Successfully established a connection to the Redis server
[09:42:47] [Server thread/INFO]: [HuskSync] Registering events...
[09:42:47] [Server thread/INFO]: [HuskSync] Successfully registered events listener
[09:42:47] [Server thread/INFO]: [HuskSync] Registering permissions & commands...
[09:42:48] [Server thread/INFO]: [HuskSync] Successfully registered permissions & commands
[09:42:48] [Server thread/INFO]: [HuskSync] Checking for updates...
[09:42:48] [Server thread/INFO]: [HuskSync] Successfully enabled HuskSync v2.2.4
[09:42:48] [Server thread/INFO]: [MIReplacer] Enabling MIReplacer v3.0
[09:42:48] [ForkJoinPool.commonPool-worker-9/WARN]: [HuskSync] An update is available for HuskSync, v3.0.2 (Currently running v2.2.4)
[09:42:48] [Server thread/WARN]: [MIReplacer] Couldn't find the MMOItem... Does it exist? (MISCELLANEOUS | COAL)
[09:42:48] [Server thread/INFO]: [MIReplacer] Loading furnace recipes...
[09:42:48] [Server thread/INFO]: [MIReplacer] Added Blast F. Recipe for DIAMOND_ORE
[09:42:48] [Server thread/INFO]: [MIReplacer] Added Blast F. Recipe for DEEPSLATE_DIAMOND_ORE
[09:42:48] [Server thread/INFO]: [MIReplacer] Added Blast F. Recipe for DEEPSLATE_EMERALD_ORE
[09:42:48] [Server thread/INFO]: [MIReplacer] Added Blast F. Recipe for EMERALD_ORE
[09:42:48] [Server thread/INFO]: [MIReplacer] Added Furnace Recipe for DEEPSLATE_EMERALD_ORE
[09:42:48] [Server thread/INFO]: [MIReplacer] Added Furnace Recipe for EMERALD_ORE
[09:42:48] [Server thread/INFO]: [MIReplacer] Added Furnace Recipe for DEEPSLATE_DIAMOND_ORE
[09:42:48] [Server thread/INFO]: [MIReplacer] Added Furnace Recipe for DIAMOND_ORE
[09:42:48] [Server thread/INFO]: [AdvancedModreq] Enabling AdvancedModreq v6.1.4
[09:42:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedmodreq [6.1.4]
[09:42:48] [Server thread/INFO]: [AdvancedModreq] DiscordSRV hook was registered!
[09:42:48] [Server thread/INFO]: [GooP] Enabling Gunging_Ootilities_Plugin v1.10.9
[09:42:48] [Server thread/INFO]: [GooP] Enabling GooP Extensions...
[09:42:48] [Server thread/INFO]: [GooP] MMOItem Shrubs not found.
[09:42:48] [Server thread/INFO]: [GooP] Crossbow2RocketLauncher not found.
[09:42:48] [Server thread/INFO]: [GooP] Checking for Compatible Plugins...
[09:42:48] [Server thread/INFO]: [GooP] WorldGuard found.
[09:42:48] [Server thread/INFO]: [GooP] WorldEdit found.
[09:42:48] [Server thread/INFO]: [GooP] DiscordSRV found.
[09:42:48] [Server thread/INFO]: [GooP] MMOItems found.
[09:42:48] [Server thread/INFO]: [GooP] MMOCore found.
[09:42:48] [Server thread/INFO]: [GooP] Vault found.
[09:42:48] [Server thread/INFO]: [GooP] Graveyards not found.
[09:42:48] [Server thread/INFO]: [GooP] MythicMobs 5.4.0 found.
[09:42:48] [Server thread/INFO]: [GooP] McMMO not found.
[09:42:48] [Server thread/INFO]: [GooP] PlaceholderAPI found.
[09:42:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: goop [1.0]
[09:42:48] [Server thread/INFO]: [GooP] Towny found.
[09:42:48] [Server thread/INFO]: [GooP] Initialization Complete. Success.
[09:42:48] [Server thread/INFO]: [GooP-Containers] Enabling GooP_Containers v1.0
[09:42:48] [Server thread/INFO]: [IPWhitelist] Enabling IPWhitelist v1.7*
[09:42:48] [Server thread/INFO]: [EpicPluginLib] Enabling EpicPluginLib v2.4.2
[09:42:48] [Server thread/WARN]: [EpicPluginLib] Lib enabled but no dependencies found.
[09:42:48] [Server thread/INFO]: [EpicPluginLib] EpicPluginLib is using bStats as metrics collector.
[09:42:48] [Server thread/INFO]: [Drop2InventoryPlus] Enabling Drop2InventoryPlus v4.1.1
[09:42:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: drop2inventory [GENERIC]
[09:42:48] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.0.0 (build 833)
[09:42:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: denizen [2.0.0]
[09:42:48] [Server thread/INFO]: [ForceResourcepacks] Enabling ForceResourcepacks v1.11.42 (build 651)
[09:42:48] [Server thread/INFO]: [ForceResourcepacks] Metrics are disabled.
[09:42:48] [Server thread/INFO]: [ForceResourcepacks] Update notifications are enabled!
[09:42:48] [Server thread/INFO]: [ForceResourcepacks] Loading config!
[09:42:48] [Server thread/INFO]: [ForceResourcepacks] Debug level: INFO
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] Found locale en
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Loading packs:
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] CodeCraft - https://download.mc-packs.net/pack/479025e6c93d9cbffc82c410b3812b0cf2c30a13.zip - 479025e6c93d9cbffc82c410b3812b0cf2c30a13
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] {url=https://download.mc-packs.net/pack/479025e6c93d9cbffc82c410b3812b0cf2c30a13.zip, hash=479025e6c93d9cbffc82c410b3812b0cf2c30a13, local-path=null, format=13, version=1.19.4, restricted=false, permission=forceresourcepacks.pack.overworld, type=null, variants=null}
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] CodeCraft-lite - https://download.mc-packs.net/pack/ed8b003e2e5c17e0cf5ba6004b60bc32a06a3782.zip - ed8b003e2e5c17e0cf5ba6004b60bc32a06a3782
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] {url=https://download.mc-packs.net/pack/ed8b003e2e5c17e0cf5ba6004b60bc32a06a3782.zip, hash=ed8b003e2e5c17e0cf5ba6004b60bc32a06a3782, local-path=null, format=13, version=1.19.4, restricted=false, permission=forceresourcepacks.pack.overworld, type=null, variants=null}
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] Empty pack - http://cdn.moep.tv/files/Empty.zip - 01517226212d27586ea0c5d6aff1aa5492dd2484
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] Loading global assignment...
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Pack: CodeCraft
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Send delay: 10
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Required: true
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Prompt message: &c&lYou have to accept the server resource pack in order to play!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] global actions:
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] LOADED - MESSAGE: CodeCraft » You are now using the %pack% pack!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] DECLINED - KICK: You have to accept the server resource pack in order to play!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] global first join actions:
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] LOADED - MESSAGE: CodeCraft » You are now using the %pack% pack!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] DECLINED - KICK: You have to accept the server resource pack in order to play!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Loaded PackActionAssignment{name=global, pack=codecraft, optionalPacks=[], sendDelay=10, required=true, promptMessage=&c&lYou have to accept the server resource pack in order to play!, statusMap=[LOADED=[MESSAGE=CodeCraft » &f&lYou are now using the &6&l%pack%&f&l pack!, DECLINED=[KICK=&c&lYou have to accept the server resource pack in order to play!, firstJoinStatusMap=[LOADED=[MESSAGE=CodeCraft » &f&lYou are now using the &6&l%pack%&f&l pack!, DECLINED=[KICK=&c&lYou have to accept the server resource pack in order to play!}
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] Loading world assignments...
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] Loading assignment for world your_example_world...
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Regex: example_world_.*
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Required: false
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] your_example_world actions:
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] LOADED - MESSAGE: You are now using the %pack% pack!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] DECLINED - TITLE: Please accept pack!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] DECLINED - SUBTITLE: It looks a lot nicer with it!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] DECLINED - MESSAGE: Visit http://s.moep.tv/rp for info on how to enable the server resource pack!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] FAILED - KICK: Please try rejoining, you need the pack!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] ACCEPTED - MESSAGE: Downloading server resource pack...
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Loaded PackActionAssignment{name=your_example_world, pack=null, optionalPacks=[], sendDelay=-1, regex=example_world_.*, statusMap=[LOADED=[MESSAGE=&aYou are now using the &e%pack%&a pack!, DECLINED=[TITLE=&cPlease accept pack!, SUBTITLE=&eIt looks a lot nicer with it!, MESSAGE=&cVisit &ehttp://s.moep.tv/rp&c for info on how to enable the server resource pack!, FAILED=[KICK=&ePlease try rejoining, you need the pack!, ACCEPTED=[MESSAGE=&cDownloading server resource pack...}
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] Loading assignment for world your_example_nether...
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Required: false
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] your_example_nether actions:
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] DECLINED - SEND: world
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] DECLINED - TITLE: You need the pack!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] DECLINED - SUBTITLE: You cannot play without it!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] DECLINED - MESSAGE: You need the pack!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] TIMEOUT - TITLE: Please accept the pack!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] TIMEOUT - SUBTITLE: You cannot play without it!
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Loaded PackActionAssignment{name=your_example_nether, pack=null, optionalPacks=[], sendDelay=-1, statusMap=[DECLINED=[SEND=world, TITLE=&cYou need the pack!, SUBTITLE=&eYou cannot play without it!, MESSAGE=You need the pack!, TIMEOUT=[TITLE=&cPlease accept the pack!, SUBTITLE=&eYou cannot play without it!}
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Stored packs override assignments: false
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Append hash to pack URL: true
[09:42:49] [Server thread/INFO]: [ForceResourcepacks] [DEBUG] Detected server server protocol version 762!
[09:42:49] [Server thread/INFO]: [WorldGuard] Registering session handler de.themoep.resourcepacksplugin.bukkit.worldguard.WorldGuard7Handler
[09:42:49] [Server thread/WARN]: Plugin 'ForceResourcepacks' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: Phoenix616
[09:42:49] [Server thread/WARN]: Plugin 'ForceResourcepacks' is creating timing 'WorldGuard7Handler' - this is deprecated behavior, please report it to the authors: Phoenix616
[09:42:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: frp [1.11.42 (build 651)]
[09:42:49] [ForceResourcepacks Thread - 1/INFO]: [ForceResourcepacks] Generating hashes...
[09:42:49] [ForceResourcepacks Thread - 1/INFO]: [ForceResourcepacks] Downloading CodeCraft...
[09:42:49] [Server thread/INFO]: [CitizensGUI] Enabling CitizensGUI v1.11
[09:42:49] [Server thread/INFO]: [Mines] Enabling Mines v1.0-DEV
[09:42:49] [ForceResourcepacks Thread - 2/INFO]: [ForceResourcepacks] An update (1.11.46, installed: 1.11.42) for ForceResourcepacks is available: https://l.phoenix616.dev/frpupdate
[09:42:49] [ForceResourcepacks Thread - 2/INFO]: [ForceResourcepacks] 1.11.43: Proxy pack status forwarding and auth plugin fixes
[09:42:49] [ForceResourcepacks Thread - 2/INFO]: [ForceResourcepacks] 1.11.44: 1.20.2 Update
[09:42:49] [ForceResourcepacks Thread - 2/INFO]: [ForceResourcepacks] 1.11.45: Work around 1.20.2 server switches on BungeeCord removing pack
[09:42:49] [ForceResourcepacks Thread - 2/INFO]: [ForceResourcepacks] 1.11.46: Update for latest BungeeCord changes
[09:42:49] [Server thread/INFO]: [Mines] has been Enabled.
[09:42:49] [ForceResourcepacks Thread - 1/INFO]: [ForceResourcepacks] SHA 1 hash of CodeCraft: 479025e6c93d9cbffc82c410b3812b0cf2c30a13
[09:42:49] [ForceResourcepacks Thread - 1/INFO]: [ForceResourcepacks] Downloading CodeCraft-lite...
[09:42:49] [ForceResourcepacks Thread - 1/INFO]: [ForceResourcepacks] SHA 1 hash of CodeCraft-lite: ed8b003e2e5c17e0cf5ba6004b60bc32a06a3782
[09:42:49] [ForceResourcepacks Thread - 1/INFO]: [ForceResourcepacks] Downloading empty...
[09:42:49] [ForceResourcepacks Thread - 1/INFO]: [ForceResourcepacks] SHA 1 hash of empty: 01517226212d27586ea0c5d6aff1aa5492dd2484
[09:42:49] [ForceResourcepacks Thread - 1/INFO]: [ForceResourcepacks] No hash changed!
[09:42:50] [Server thread/INFO]: [Mines] Mine mine_coal_low_quality_1f_vero has been reset.
[09:42:50] [Server thread/INFO]: [Mines] Mine mine_coal_normal_quality_1f_vero has been reset.
[09:42:50] [Server thread/INFO]: [Mines] Mine mine_coal_1f has been reset.
[09:42:50] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v0.9.2
[09:42:50] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[09:42:50] [Server thread/INFO]: [AdvancedPortals] Bungee detected. Enabling proxy features.
[09:42:50] [Server thread/INFO]: Advanced portals have been successfully enabled!
[09:42:50] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[09:42:50] [Server thread/INFO]: Running delayed init tasks
[09:42:50] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[09:42:50] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[09:42:50] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.TownyFeature] Plugin 'Towny' found. Using it now.
[09:42:50] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'Towny'
[09:42:50] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:50] [Craft Scheduler Thread - 4 - ItemJoin/INFO]: [ItemJoin] Hooked into { Multiverse-Core, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens, Vault }
[09:42:50] [Craft Scheduler Thread - 4 - ItemJoin/INFO]: [ItemJoin] 1 Custom item(s) loaded!
[09:42:50] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[09:42:50] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:50] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing bichon.bbmodel.
[09:42:50] [Craft Scheduler Thread - 14 - Towny/INFO]: [Towny] Checking for updates...
[09:42:50] [Craft Scheduler Thread - 13 - Towny/INFO]: [Towny] Time until a New Day: 19 hours, 17 minutes, 10 seconds
[09:42:50] [Craft Scheduler Thread - 8 - CosmeticsCore/INFO]: [CosmeticsCore] [License] Spigot product licensed to: Met_Sama (1109771)
[09:42:50] [Craft Scheduler Thread - 13 - DynamicShop/INFO]: [DShop] Plugin is up to date!
[09:42:50] [Craft Scheduler Thread - 11 - CommandDefender/INFO]: [WARN] CommandDefender: Update Checker: A new update is available on SpigotMC! (You are running v2.1.6, but the latest version is v2.1.7).
[09:42:50] [Craft Scheduler Thread - 18 - EpicPluginLib/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.
[09:42:50] [Craft Scheduler Thread - 18 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[09:42:50] [Craft Scheduler Thread - 9 - ItemJoin/INFO]: [ItemJoin] Your current version: v5.2.5-RELEASE
[09:42:50] [Craft Scheduler Thread - 9 - ItemJoin/INFO]: [ItemJoin] A new version is available: v6.0.2-RELEASE
[09:42:50] [Craft Scheduler Thread - 9 - ItemJoin/INFO]: [ItemJoin] Get it from: https://github.com/RockinChaos/itemjoin/releases/latest
[09:42:50] [Craft Scheduler Thread - 9 - ItemJoin/INFO]: [ItemJoin] If you wish to auto update, please type /ItemJoin Upgrade
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing bonfire.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing bonfire_lit.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing cat_bowl.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing charles_king_spaniel.bbmodel.
[09:42:51] [Craft Scheduler Thread - 13 - Vault/INFO]: [Vault] Checking for Updates ... 
[09:42:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[09:42:51] [Server thread/INFO]: [BetonQuest] Enabled compatibility for LuckPerms, Denizen, PlaceholderAPI, MythicLib, fake-block, MMOItems, HolographicDisplays, WorldGuard, ProtocolLib, Citizens, FastAsyncWorldEdit, MythicMobs, MMOCore, EffectLib, Vault!
[09:42:51] [Craft Scheduler Thread - 13 - Vault/WARN]: [Vault] No files found, or Feed URL is bad.
[09:42:51] [Craft Scheduler Thread - 13 - Vault/INFO]: [Vault] No new version available
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing chocobo.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing concussion.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -9.541664367526768E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -9.541664367526768E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing crate_1.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing crate_2.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing crate_3.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing crate_4.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing dog_bowl.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fallingmortos.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightwing2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -40.0 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftwing4 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 40.0 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing goldfish.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hamster_bowl.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hamster_brown.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hamster_gray.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing key_1.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing key_2.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing key_3.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing key_4.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing magnus.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing magnus_fx.bbmodel.
[09:42:51] [Server thread/INFO]: [BetonQuest] There are 3 conditions, 27 events, 7 objectives and 9 conversations loaded from 2 packages.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing magnus_sword.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing medusa.bbmodel.
[09:42:51] [Server thread/INFO]: [BetonQuest] Reloaded 0 menus
[09:42:51] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[09:42:51] [Server thread/INFO]: [BigDoors] Checking for updates...
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing medusa_bits.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing medusa_snakehead.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing medusa_stone.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing mortos.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightwing2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -40.0 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftwing4 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 40.0 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_otter.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing parakeet_blue.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing parakeet_green.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing persian_cat.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing rotter.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing shihtzu.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing spider_eggs.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing stone_player.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing amethystgolem.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing amethystpupa.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing amethystspikes.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing diamondgolem.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing diamondpupa.bbmodel.
[09:42:51] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing diamondshard.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing diamondspikes.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing emeraldgolem.bbmodel.
[09:42:51] [ForkJoinPool.commonPool-worker-8/INFO]: [BigDoors] No new updates available.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing emeraldpupa.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing emeraldshard.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing emeraldspikes.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing quartzgolem.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing quartzpupa.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing quartzshard.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing quartzspikes.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing redstonegolem.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing redstonepupa.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing redstoneshard.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing redstonespikes.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing shard.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing capybara.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing horse_glacial.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing horse_magma.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing horse_pegasus.bbmodel.
[09:42:51] [Craft Scheduler Thread - 14 - Towny/INFO]: [Towny] New update available: 0.99.5.20 | Current version: 0.99.1.0
[09:42:51] [Craft Scheduler Thread - 14 - Towny/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.99.5.20
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing horse_spartan.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing horse_unicorn.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing kitsune_demonic.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing kitsune_inferno.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing kitsune_normal.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing phantom_ender.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing phantom_ghost.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing phoenix_darkflame.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing phoenix_flame.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing phoenix_light.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing phoenix_thunder.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_aether_dragon.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_angel.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_dark_kitsune.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_demon.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_eagle.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_fire_dragon.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_frost_wolf.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_hellhound.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_ice_dragon.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_kitsune.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_lunar_wolf.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_nature_dragon.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_phoenix.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_sai_ninja.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_samurai.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_shadow_dragon.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_shuriken_ninja.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_spirit_fox.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_thunder_dragon.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_thunderbird.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_undead_dragon.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pet_wind_dragon.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing wind_tornado.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_skeleton_archer.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_skeleton_brute1.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_skeleton_brute2.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_skeleton_necromancer.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_skeleton_skull.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_skeleton_warrior.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hourglass.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lbblank.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lbvfx.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lorebun.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right_ear has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone left_ear has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -90.0 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone left_knee has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right_knee has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone clock has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -5.8561181349049E-14 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lorebun_copy_walk.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone left_knee has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right_knee has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone clock has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -5.8561181349049E-14 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lorebun_idle.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone left_knee has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right_knee has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -3.1805547185895103E-15 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right_ear has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone left_ear has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -90.0 ]
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing stunned.bbmodel.
[09:42:51] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[09:42:52] [Thread-35/INFO]: --------------------
[09:42:52] [Thread-35/INFO]: [CoreProtect] Version 22.2 is now available.
[09:42:52] [Thread-35/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[09:42:52] [Thread-35/INFO]: --------------------
[09:42:53] [Server thread/INFO]: [Citizens] Loaded 104 NPCs.
[09:42:53] [Craft Scheduler Thread - 15 - BetonQuest/INFO]: [BetonQuest] Found newer version '2.0.0-DEV-720', it will be installed, if you execute '/q update'!
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.4) is available at:
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] ***********************************************************
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] * There is a new version of Drop2InventoryPlus available!
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] *  
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] * Your version:   4.1.1
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] * Latest version: 4.3.0
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] *  
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] * Please update to the newest version.
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] *  
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] * Download:
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] *   https://www.spigotmc.org/resources/87784
[09:42:53] [Server thread/WARN]: [Drop2InventoryPlus] ***********************************************************
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Advancements [1.7]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: armor [1.0.0]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ascii [1.0.0]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [2.2]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: checkitem [2.6.8]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cooldownbar [1.1]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: formatter [2.1.1]
[09:42:53] [Server thread/WARN]: [PAPI] [Javascript-Expansion] File: example.js for Javascript placeholder: example is empty
[09:42:53] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 0 script loaded!
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: javascript [1.6.0]
[09:42:53] [Server thread/WARN]: [PlaceholderAPI] listplayers is attempting to register placeholders via deprecated PlaceholderHook class. This class is no longer supported and will be removed in v2.13.0!
[09:42:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion listplayers due to an unknown issue.
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: math [2.0.1]
[09:42:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion mvdw due to a missing plugin: MVdWPlaceholderAPI
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: otherplayer [2.1.0]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: parsenear [1.1.0]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: parseother [1.4.6]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pinger [1.0.1]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerlist [3.0.3]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plugin [1.1.0]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: progress [2.1]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: worldguard [1.4.2]
[09:42:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[09:42:53] [Server thread/INFO]: 23 placeholder hook(s) registered! 6 placeholder hook(s) have an update available.
[09:42:53] [Server thread/INFO]: Done (47.101s)! For help, type "help"
[09:42:53] [Server thread/INFO]: Timings Reset
[09:42:53] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 3/3 guilds (0 cancelled)
[09:42:53] [Craft Scheduler Thread - 9 - BossShopPro/INFO]: [BossShopPro] Loaded 3 Shops!
[09:42:54] [Server thread/ERROR]: Could not pass event EntitiesLoadEvent to ModelEngine vR4.0.0
java.lang.NullPointerException: Cannot invoke "java.lang.Boolean.booleanValue()" because the return value of "com.ticxo.modelengine.api.utils.data.io.SavedData.getBoolean(String)" is null
    at com.ticxo.modelengine.core.model.ModeledEntityImpl.load(ModeledEntityImpl.java:270) ~[ModelEngine-4.0.0.jar:?]
    at com.ticxo.modelengine.core.listener.WorldListener.loadEntities(WorldListener.java:58) ~[ModelEngine-4.0.0.jar:?]
    at com.ticxo.modelengine.core.listener.WorldListener.onEntityLoad(WorldListener.java:31) ~[ModelEngine-4.0.0.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:git-Paper-550]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.19.4.jar:git-Paper-550]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesLoadEvent(CraftEventFactory.java:1958) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.world.ChunkEntitySlices.callEntitiesLoadEvent(ChunkEntitySlices.java:151) ~[paper-1.19.4.jar:?]
    at net.minecraft.world.level.chunk.LevelChunk.loadCallback(LevelChunk.java:911) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk.onChunkLoad(LevelChunk.java:861) ~[?:?]
    at io.papermc.paper.chunk.system.scheduling.NewChunkHolder.handleFullStatusChange(NewChunkHolder.java:1311) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.chunk.system.scheduling.ChunkHolderManager.processPendingFullUpdate(ChunkHolderManager.java:1057) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.chunk.system.scheduling.ChunkHolderManager.processTicketUpdates(ChunkHolderManager.java:1041) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.chunk.system.scheduling.ChunkHolderManager.processTicketUpdates(ChunkHolderManager.java:926) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.level.ServerChunkCache.runDistanceManagerUpdates(ServerChunkCache.java:583) ~[?:?]
    at net.minecraft.server.level.ServerChunkCache$MainThreadExecutor.pollTask(ServerChunkCache.java:1005) ~[?:?]
    at net.minecraft.server.level.ServerChunkCache.pollTask(ServerChunkCache.java:579) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickMidTickTasks(MinecraftServer.java:2755) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.executeMidTickTasks(MinecraftServer.java:2778) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:770) ~[?:?]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:649) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:686) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1546) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1174) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[paper-1.19.4.jar:git-Paper-550]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[09:42:54] [Server thread/ERROR]: Could not pass event EntitiesLoadEvent to ModelEngine vR4.0.0
java.lang.NullPointerException: Cannot invoke "java.lang.Boolean.booleanValue()" because the return value of "com.ticxo.modelengine.api.utils.data.io.SavedData.getBoolean(String)" is null
    at com.ticxo.modelengine.core.model.ModeledEntityImpl.load(ModeledEntityImpl.java:270) ~[ModelEngine-4.0.0.jar:?]
    at com.ticxo.modelengine.core.listener.WorldListener.loadEntities(WorldListener.java:58) ~[ModelEngine-4.0.0.jar:?]
    at com.ticxo.modelengine.core.listener.WorldListener.onEntityLoad(WorldListener.java:31) ~[ModelEngine-4.0.0.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:git-Paper-550]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.19.4.jar:git-Paper-550]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesLoadEvent(CraftEventFactory.java:1958) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.world.ChunkEntitySlices.callEntitiesLoadEvent(ChunkEntitySlices.java:151) ~[paper-1.19.4.jar:?]
    at net.minecraft.world.level.chunk.LevelChunk.loadCallback(LevelChunk.java:911) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk.onChunkLoad(LevelChunk.java:861) ~[?:?]
    at io.papermc.paper.chunk.system.scheduling.NewChunkHolder.handleFullStatusChange(NewChunkHolder.java:1311) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.chunk.system.scheduling.ChunkHolderManager.processPendingFullUpdate(ChunkHolderManager.java:1057) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.chunk.system.scheduling.ChunkHolderManager.processTicketUpdates(ChunkHolderManager.java:1041) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.chunk.system.scheduling.ChunkHolderManager.processTicketUpdates(ChunkHolderManager.java:926) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.level.ServerChunkCache.runDistanceManagerUpdates(ServerChunkCache.java:583) ~[?:?]
    at net.minecraft.server.level.ServerChunkCache$MainThreadExecutor.pollTask(ServerChunkCache.java:1005) ~[?:?]
    at net.minecraft.server.level.ServerChunkCache.pollTask(ServerChunkCache.java:579) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1330) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1312) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1389) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1174) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[paper-1.19.4.jar:git-Paper-550]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[09:42:54] [Server thread/ERROR]: Could not pass event EntitiesLoadEvent to ModelEngine vR4.0.0
java.lang.NullPointerException: Cannot invoke "java.lang.Boolean.booleanValue()" because the return value of "com.ticxo.modelengine.api.utils.data.io.SavedData.getBoolean(String)" is null
    at com.ticxo.modelengine.core.model.ModeledEntityImpl.load(ModeledEntityImpl.java:270) ~[ModelEngine-4.0.0.jar:?]
    at com.ticxo.modelengine.core.listener.WorldListener.loadEntities(WorldListener.java:58) ~[ModelEngine-4.0.0.jar:?]
    at com.ticxo.modelengine.core.listener.WorldListener.onEntityLoad(WorldListener.java:31) ~[ModelEngine-4.0.0.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:git-Paper-550]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.19.4.jar:git-Paper-550]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesLoadEvent(CraftEventFactory.java:1958) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.world.ChunkEntitySlices.callEntitiesLoadEvent(ChunkEntitySlices.java:151) ~[paper-1.19.4.jar:?]
    at net.minecraft.world.level.chunk.LevelChunk.loadCallback(LevelChunk.java:911) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk.onChunkLoad(LevelChunk.java:861) ~[?:?]
    at io.papermc.paper.chunk.system.scheduling.NewChunkHolder.handleFullStatusChange(NewChunkHolder.java:1311) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.chunk.system.scheduling.ChunkHolderManager.processPendingFullUpdate(ChunkHolderManager.java:1057) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.chunk.system.scheduling.ChunkHolderManager.processTicketUpdates(ChunkHolderManager.java:1041) ~[paper-1.19.4.jar:git-Paper-550]
    at io.papermc.paper.chunk.system.scheduling.ChunkHolderManager.processTicketUpdates(ChunkHolderManager.java:926) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.level.ServerChunkCache.runDistanceManagerUpdates(ServerChunkCache.java:583) ~[?:?]
    at net.minecraft.server.level.ServerChunkCache$MainThreadExecutor.pollTask(ServerChunkCache.java:1005) ~[?:?]
    at net.minecraft.server.level.ServerChunkCache.pollTask(ServerChunkCache.java:579) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1330) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1312) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1389) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1174) ~[paper-1.19.4.jar:git-Paper-550]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[paper-1.19.4.jar:git-Paper-550]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[09:42:55] [Server thread/INFO]: [MythicMobs] Loading ProtocolLib listeners...
[09:42:55] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[09:42:55] [Server thread/INFO]: [MythicMobs] Loaded 140 items.
[09:42:56] [Craft Scheduler Thread - 18 - Images/INFO]: [Images] Loaded 1 images...