Paste #106473: Diff Report Between Paste #106472 and #106471

Date: 2023/02/21 06:24:23 UTC-08:00
Type: Diff Report

View Raw Paste Download This Paste Edit Of Paste 106472
Copy Link


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


-[14:03:21] [ServerMain/INFO]: Building unoptimized datafixer
-[14:03:23] [ServerMain/WARN]: You specified a resource pack without providing a sha1 hash. Pack will be updated on the client only if you change the name of the pack.
-[14:03:23] [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'
-[14:03:25] [ServerMain/INFO]: Loaded 7 recipes
-[14:03:25] [Server thread/INFO]: Starting minecraft server version 1.19.3
-[14:03:25] [Server thread/INFO]: Loading properties
-[14:03:25] [Server thread/INFO]: This server is running Paper version git-Paper-399 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: f2f9e8c)
-[14:03:26] [Server thread/INFO]: Server Ping Player Sample Count: 12
-[14:03:26] [Server thread/INFO]: Using 4 threads for Netty based IO
-[14:03:26] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
-[14:03:26] [Server thread/INFO]: Default game type: SURVIVAL
-[14:03:26] [Server thread/INFO]: Generating keypair
-[14:03:26] [Server thread/INFO]: Starting Minecraft server on 85.190.131.1:25565
-[14:03:26] [Server thread/INFO]: Using epoll channel type
-[14:03:26] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
-[14:03:26] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
-[14:03:26] [Server thread/ERROR]: Ambiguous plugin name `SCore' for files `plugins/SCore-3.9.31.jar' and `plugins/SCore-3.9.29.jar' in `plugins'
-[14:03:26] [Server thread/ERROR]: Ambiguous plugin name `ExecutableItems' for files `plugins/ExecutableItems_Prem-5.9.31.jar' and `plugins/ExecutableItems_Prem-5.9.29.jar' in `plugins'
-[14:03:27] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Initializing Terra...
-[14:03:27] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config.yml
-[14:03:27] [Server thread/INFO]: [com.dfsek.terra.config.PluginConfigImpl] Loading config values from config.yml
-[14:03:27] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading 32 Terra addons:
+[14:17:48] [ServerMain/INFO]: Building unoptimized datafixer
+[14:17:49] [ServerMain/WARN]: You specified a resource pack without providing a sha1 hash. Pack will be updated on the client only if you change the name of the pack.
+[14:17:49] [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'
+[14:17:51] [ServerMain/INFO]: Loaded 7 recipes
+[14:17:52] [Server thread/INFO]: Starting minecraft server version 1.19.3
+[14:17:52] [Server thread/INFO]: Loading properties
+[14:17:52] [Server thread/INFO]: This server is running Paper version git-Paper-399 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: f2f9e8c)
+[14:17:52] [Server thread/INFO]: Server Ping Player Sample Count: 12
+[14:17:52] [Server thread/INFO]: Using 4 threads for Netty based IO
+[14:17:53] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
+[14:17:53] [Server thread/INFO]: Default game type: SURVIVAL
+[14:17:53] [Server thread/INFO]: Generating keypair
+[14:17:53] [Server thread/INFO]: Starting Minecraft server on 85.190.131.1:25565
+[14:17:53] [Server thread/INFO]: Using epoll channel type
+[14:17:53] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
+[14:17:53] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
+[14:17:53] [Server thread/ERROR]: Ambiguous plugin name `SCore' for files `plugins/SCore-3.9.31.jar' and `plugins/SCore-3.9.29.jar' in `plugins'
+[14:17:54] [Server thread/ERROR]: Ambiguous plugin name `ExecutableItems' for files `plugins/ExecutableItems_Prem-5.9.31.jar' and `plugins/ExecutableItems_Prem-5.9.29.jar' in `plugins'
+[14:17:54] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Initializing Terra...
+[14:17:54] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config.yml
+[14:17:54] [Server thread/INFO]: [com.dfsek.terra.config.PluginConfigImpl] Loading config values from config.yml
+[14:17:55] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading 32 Terra addons:
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]+8fff27fdd
         - [email protected]
         - [email protected]
         - [email protected]+8fff27fdd
-[14:03:27] [Server thread/WARN]: [com.dfsek.terra.addons.biome.pipeline.BiomePipelineAddon] The biome-provider-pipeline addon is deprecated and scheduled for removal in Terra 7.0. It is recommended to use the biome-provider-pipeline-v2 addon for future pack development instead.
-[14:03:27] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Terra addons successfully loaded.
-[14:03:27] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Finished initialization.
-[14:03:28] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait
-[14:03:28] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
-[14:03:28] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
-[14:03:28] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
-[14:03:28] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
-[14:03:28] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
-[14:03:28] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
-[14:03:28] [Server thread/INFO]: [Denizen] Loading 2 libraries... please wait
-[14:03:28] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
-[14:03:28] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
-[14:03:28] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
-[14:03:28] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
-[14:03:28] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
-[14:03:28] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
-[14:03:28] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
-[14:03:28] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/json/json/20220320/json-20220320.jar
-[14:03:28] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
-[14:03:29] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.58
-[14:03:29] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
-[14:03:29] [Server thread/INFO]: [InventoryRollbackPlus] Loading InventoryRollbackPlus v1.6.8
-[14:03:29] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
-[14:03:29] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
-[14:03:29] [Server thread/INFO]: [MessageAnnouncer] Loading MessageAnnouncer v1.12.3
-[14:03:29] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
-[14:03:29] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
-[14:03:29] [Server thread/INFO]: [PowerBoard] Loading PowerBoard v3.5.15
-[14:03:29] [Server thread/INFO]: [Terra] Loading Terra v6.2.2-BETA+8fff27fdd
-[14:03:29] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.13+46576cc
-[14:03:30] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@5bb55347]
-[14:03:30] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.0-dev+44-43d84de
-[14:03:30] [Server thread/INFO]: [MineableSpawners] Loading MineableSpawners v3.1.4
-[14:03:30] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.17.0
-[14:03:30] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
-[14:03:30] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.8-beta-01+cbb2ba7
-[14:03:30] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2888)
-[14:03:30] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.11.1
-[14:03:30] [Server thread/INFO]: [Vouchers] Loading Vouchers v3.7.1
-[14:03:30] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.2.1-fd1d0777
-[14:03:30] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
-[14:03:30] [Server thread/INFO]: [Multiverse-Inventories] Loading Multiverse-Inventories v4.2.3-b523
-[14:03:30] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.20.0-dev+44-43d84de
-[14:03:30] [Server thread/INFO]: [EconomyShopGUI] Loading EconomyShopGUI v5.2.3
-[14:03:30] [Server thread/INFO]: [TAB] Loading TAB v3.2.3
-[14:03:30] [Server thread/INFO]: [GSit] Loading GSit v1.3.5
-[14:03:30] [Server thread/INFO]: [CustomCrates] Loading CustomCrates v5.0.5
-[14:03:30] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.218
-[14:03:30] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
-[14:03:30] [Server thread/INFO]: [Multiverse-Portals] Loading Multiverse-Portals v4.2.1-b834
-[14:03:30] [Server thread/INFO]: [ModelEngine] Loading ModelEngine vR3.1.4
-[14:03:30] [Server thread/INFO]: [PlayerParticles] Loading PlayerParticles v8.3
-[14:03:30] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.0-dev+44-43d84de
-[14:03:30] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.3
-[14:03:30] [Server thread/INFO]: [Denizen] Loading Denizen v1.2.6-SNAPSHOT (build 1783-REL)
-[14:03:30] [Server thread/INFO]: [PlayerWarps] Loading PlayerWarps v2.3.0
-[14:03:30] [Server thread/INFO]: [CMILib] Loading CMILib v1.2.4.1
-[14:03:30] [Server thread/INFO]: [Towny] Loading Towny v0.98.6.0
-[14:03:30] [Server thread/INFO]: [Jobs] Loading Jobs v5.0.1.1
-[14:03:30] [Server thread/INFO]: [QuickShop] Loading QuickShop v5.1.1.2
-[14:03:30] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Booting up
-[14:03:30] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
-[14:03:30] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
-[14:03:30] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
-[14:03:30] [Server thread/INFO]: [QuickShop] Reading the configuration...
-[14:03:31] [Server thread/INFO]: [QuickShop] Loading messages translation over-the-air (this may need take a while).
-[14:03:31] [Server thread/INFO]: [QuickShop] Translation over-the-air platform selected: Crowdin
-[14:03:31] [Server thread/INFO]: [QuickShop] Checking for translation updates, this may need a while...
-[14:03:32] [Server thread/INFO]: [QuickShop] Loading up integration modules.
-[14:03:32] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Complete
-[14:03:32] [Server thread/INFO]: [InvSee++] Loading InvSeePlusPlus v0.19.2-SNAPSHOT
-[14:03:32] [Server thread/INFO]: [Sentinel] Loading Sentinel v2.7.2-SNAPSHOT (build 502)
-[14:03:32] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.16.4
-[14:03:32] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (342 ms).
-[14:03:32] [Server thread/INFO]: [Shopkeepers] Loading config.
-[14:03:32] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
-[14:03:32] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
-[14:03:32] [Server thread/INFO]: [Shopkeepers] Registering defaults.
-[14:03:32] [Server thread/INFO]: [Quests] Loading Quests v4.7.1-b388
-[14:03:32] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.6.1
-[14:03:32] [Server thread/INFO]: [PvPManager] Loading PvPManager v3.10.9
-[14:03:32] [Server thread/INFO]: [InvSee++_Clear] Loading InvSeePlusPlus_Clear v0.19.2-SNAPSHOT
-[14:03:32] [Server thread/INFO]: [InvSee++_Give] Loading InvSeePlusPlus_Give v0.19.2-SNAPSHOT
-[14:03:32] [Server thread/INFO]: [SCore] Loading SCore v3.9.31
-[14:03:32] [Server thread/INFO]: [ExecutableItems] Loading ExecutableItems v5.9.31
-[14:03:32] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
-[14:03:32] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.58
-[14:03:33] [Server thread/INFO]:         __    
-[14:03:33] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.58
-[14:03:33] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
-[14:03:33] [Server thread/INFO]: 
-[14:03:33] [Server thread/INFO]: [LuckPerms] Loading configuration...
-[14:03:34] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
-[14:03:35] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
-[14:03:35] [Server thread/INFO]: [LuckPerms] Performing initial data load...
-[14:03:36] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3204ms)
-[14:03:36] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
-[14:03:36] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
-[14:03:36] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
-[14:03:36] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.20.0-dev+44-43d84de which is not a depend or softdepend of this plugin.
-[14:03:36] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
-[14:03:36] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
-[14:03:36] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
-[14:03:36] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
-[14:03:36] [Server thread/INFO]: [Terra] Enabling Terra v6.2.2-BETA+8fff27fdd
-[14:03:36] [Server thread/INFO]: [com.dfsek.terra.bukkit.TerraBukkitPlugin] Running on Minecraft version v1.19.2 with server implementation Paper.
-[14:03:36] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config packs...
-[14:03:36] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: default.zip
-[14:03:39] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "OVERWORLD:OVERWORLD"
-[14:03:41] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "OVERWORLD:OVERWORLD" v1.3.0 by Astrash, Sancires, Aureus in 4791.793939ms.
-[14:03:41] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: Voidworld.zip
-[14:03:41] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "VOIDWORLD:VOIDWORLD"
-[14:03:41] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "VOIDWORLD:VOIDWORLD" v1.0.0 by Aureus in 11.865865ms.
-[14:03:41] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loaded packs.
-[14:03:41] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_19_R2.AwfulBukkitHacks] Hacking biome registry...
-[14:03:41] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_19_R2.AwfulBukkitHacks] Doing tag garbage....
-[14:03:41] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.13+46576cc
-[14:03:41] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
-[14:03:42] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
-[14:03:42] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R2.PaperweightAdapter as the Bukkit adapter
-[14:03:43] [Server thread/INFO]: Preparing level "world"
-[14:03:45] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
-[14:03:45] [Server thread/INFO]: Time elapsed: 186 ms
-[14:03:45] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
-[14:03:45] [Server thread/INFO]: Time elapsed: 98 ms
-[14:03:45] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
-[14:03:45] [Server thread/INFO]: Time elapsed: 24 ms
-[14:03:45] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.8
-[14:03:45] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
-[14:03:45] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
-[14:03:45] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
-[14:03:46] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
-[14:03:46] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
-[14:03:46] [Server thread/INFO]: [BuycraftX] Validating your server key...
-[14:03:47] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
-[14:03:47] [Server thread/INFO]: [MessageAnnouncer] Enabling MessageAnnouncer v1.12.3
-[14:03:47] [Server thread/INFO]: [MessageAnnouncer] PlaceholderAPI integration was successful!
-[14:03:47] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
-[14:03:47] [Server thread/INFO]: [Votifier] Loaded token for website: default
-[14:03:47] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
-[14:03:47] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
-[14:03:47] [Server thread/INFO]: [PowerBoard] Enabling PowerBoard v3.5.15
-[14:03:47] [Server thread/INFO]: [PowerBoard] --------------------------------------------------
-[14:03:47] [Server thread/INFO]: [PowerBoard] --------------- Loading PowerBoard ---------------
-[14:03:47] [Server thread/INFO]: [PowerBoard]  
-[14:03:47] [Server thread/INFO]: [PowerBoard] Detected Server Version (original): 1.19.3-R0.1-SNAPSHOT
-[14:03:47] [Server thread/INFO]: [PowerBoard] Detected Server Version (extracted): 1.19.3
-[14:03:47] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /85.190.131.1:5538.
-[14:03:47] [Server thread/INFO]: [PowerBoard]  
-[14:03:47] [Server thread/INFO]: [PowerBoard] Loading configs..
-[14:03:47] [Server thread/INFO]: [PowerBoard]  
-[14:03:47] [Server thread/INFO]: [PowerBoard] (SelfCheck) config.yml -> Loading...
-[14:03:47] [Server thread/INFO]: [PowerBoard] (SelfCheck) config.yml -> Finished!
-[14:03:47] [Server thread/INFO]: [PowerBoard]  
-[14:03:47] [Server thread/INFO]: [PowerBoard] Configs loaded!
-[14:03:47] [Server thread/INFO]: [PowerBoard]  
-[14:03:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PowerBoard [3.5.15]
-[14:03:47] [Server thread/INFO]: [PowerBoard] Registered scoreboard 'scoreboard'.
-[14:03:47] [Server thread/INFO]: [PowerBoard]  
-[14:03:47] [Server thread/INFO]: [PowerBoard] --------------- PowerBoard  loaded ---------------
-[14:03:47] [Server thread/INFO]: [PowerBoard] --------------------------------------------------
-[14:03:47] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+44-43d84de
-[14:03:48] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
-[14:03:48] [Server thread/INFO]: [Essentials] No kits found to migrate.
-[14:03:48] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
-[14:03:48] [Server thread/INFO]: [Essentials] Using locale en_US
-[14:03:48] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
-[14:03:48] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
-[14:03:48] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
-[14:03:48] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
-[14:03:48] [Server thread/INFO]: [MineableSpawners] Enabling MineableSpawners v3.1.4
-[14:03:49] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
-[14:03:49] [Server thread/INFO]: [HeadDatabase] §bUsing default §3"en_US.lang" §bcreated by §6Arcaniax
-[14:03:49] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
-[14:03:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
-[14:03:49] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
-[14:03:49] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
-[14:03:49] [Server thread/INFO]: [Multiverse-Core] §aWe are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
-[14:03:49] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
-[14:03:49] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
-[14:03:49] [Server thread/INFO]: Preparing start region for dimension minecraft:void
-[14:03:50] [Server thread/INFO]: Time elapsed: 205 ms
-[14:03:50] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
-[14:03:50] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
-[14:03:50] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
-[14:03:50] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
-[14:03:50] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
-[14:03:50] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
-[14:03:50] [Server thread/INFO]: [WorldGuard] (void) TNT ignition is PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (void) Lighters are PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (void) Lava fire is PERMITTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] (void) Fire spread is UNRESTRICTED.
-[14:03:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'void'
-[14:03:50] [Server thread/INFO]: [WorldGuard] Loading region data...
-[14:03:50] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2888)
-[14:03:51] [Server thread/INFO]: [Citizens] Loading external libraries
-[14:03:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
-[14:03:51] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
-[14:03:51] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.11.1
-[14:03:55] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
-[14:03:55] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.11.1
-[14:03:55] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from minecraft-mp.com, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
-[14:03:55] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.7.1
-[14:03:55] [Server thread/INFO]:  
-[14:03:55] [Server thread/INFO]: =============================
-[14:03:55] [Server thread/INFO]: Vouchers v3.7.1 by Tweetzy
-[14:03:55] [Server thread/INFO]: Developer: Kiran Hart
-[14:03:56] [Server thread/INFO]: [FlightCore] Enabling metrics for Vouchers
-[14:03:56] [Server thread/INFO]: =============================
-[14:03:56] [Server thread/INFO]:  
-[14:03:56] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
-[14:03:56] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
-[14:03:56] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
-[14:03:56] [Server thread/WARN]: [MythicMobs] Loaded class org.slf4j.impl.StaticLoggerBinder from VotingPlugin v6.11.1 which is not a depend or softdepend of this plugin.
-[14:03:56] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 103 ms to scan 1 urls, producing 3 keys and 21 values 
-[14:03:56] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 19 ms to scan 1 urls, producing 6 keys and 101 values 
-[14:03:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 167 ms to scan 115 urls, producing 0 keys and 0 values 
-[14:03:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 10 ms to scan 1 urls, producing 3 keys and 36 values 
-[14:03:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 10 ms to scan 1 urls, producing 4 keys and 14 values 
-[14:03:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 10 ms to scan 1 urls, producing 4 keys and 14 values 
-[14:03:57] [Server thread/WARN]: [MythicMobs] Loaded class com.gmail.nossr50.mcMMO from mcMMO v2.1.218 which is not a depend or softdepend of this plugin.
-[14:03:57] [Server thread/INFO]: [MythicMobs] MythicMobs mcMMO Support has been enabled!
-[14:03:57] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
-[14:03:57] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
-[14:03:57] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
-[14:03:57] [Server thread/INFO]: [MythicMobs] Base directory /home/minecraft/multicraft/servers/server1728902/default/plugins/MythicMobs/SavedData
-[14:03:57] [Server thread/INFO]: [MythicMobs] Module directory /home/minecraft/multicraft/servers/server1728902/default/plugins/MythicMobs/SavedData/worlds
-[14:03:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 18 ms to scan 1 urls, producing 11 keys and 445 values 
-[14:03:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 72 ms to scan 1 urls, producing 29 keys and 885 values 
-[14:03:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 14 ms to scan 1 urls, producing 9 keys and 152 values 
-[14:03:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 9 ms to scan 1 urls, producing 2 keys and 11 values 
-[14:03:57] [Server thread/INFO]: [MythicMobs] LOADED
-[14:03:57] [Server thread/INFO]: [MythicMobs] Loading Packs...
-[14:03:57] [Server thread/INFO]: [MythicMobs] Loading Items...
-[14:03:58] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
-[14:03:58] [Server thread/INFO]: [MythicMobs] Loading Skills...
-[14:03:58] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
-[14:03:58] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
-[14:03:58] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
-[14:03:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
-[14:03:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
-[14:03:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
-[14:03:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
-[14:03:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
-[14:03:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
-[14:03:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
-[14:03:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
-[14:03:58] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
-[14:03:58] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
-[14:03:58] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
-[14:03:58] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.3-b523
-[14:03:58] [Server thread/INFO]: [Multiverse-Inventories 4.2.3-b523] enabled.
-[14:03:58] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+44-43d84de
-[14:03:58] [Server thread/INFO]: [EssentialsChat] Secure signed chat and previews are enabled.
-[14:03:58] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v5.2.3
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Using lang-en.yml as language file.
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Shops.yml has been found!
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Sections.yml has been found!
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Successfully hooked into Vault
-[14:03:58] [Server thread/WARN]: [EconomyShopGUI] Completed loading '1' economy provider(s) for all 16 shop sections.
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Using minecraft version 1.19.3...
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Spawner provider set to DEFAULT in config
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Using plugin default spawners...
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Debug mode is enabled.
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Updating Shop settings...
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Loading all items...
-[14:03:58] [Server thread/WARN]: [EconomyShopGUI] Could not get the item material. If you think this is a bug, please report it to our discord support server which you can find at the plugin page. SKULK_SENSOR
-[14:03:58] [Server thread/WARN]: [EconomyShopGUI] Item path in shops.yml: Redstone.30
-[14:03:58] [Server thread/INFO]: [EconomyShopGUI] Initialized - Took 333ms to complete
-[14:03:58] [Server thread/INFO]: [TAB] Enabling TAB v3.2.3
-[14:03:58] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
-[14:03:58] [Server thread/INFO]: [TAB] Loaded NMS hook in 41ms
-[14:03:59] [Server thread/INFO]: [TAB] Animation "vote" has refresh interval of -1. Refresh cannot be negative! Using 1000.
-[14:03:59] [Server thread/INFO]: [TAB] Animation "Welcome" has refresh interval of -1. Refresh cannot be negative! Using 1000.
-[14:03:59] [Server thread/INFO]: [TAB] Enabled in 95ms
-[14:03:59] [Server thread/INFO]: [GSit] Enabling GSit v1.3.5
-[14:03:59] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
-[14:03:59] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
-[14:03:59] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
-[14:03:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.3.5]
-[14:03:59] [Server thread/INFO]: [GSit] New version available: 1.3.7!
+[14:17:55] [Server thread/WARN]: [com.dfsek.terra.addons.biome.pipeline.BiomePipelineAddon] The biome-provider-pipeline addon is deprecated and scheduled for removal in Terra 7.0. It is recommended to use the biome-provider-pipeline-v2 addon for future pack development instead.
+[14:17:55] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Terra addons successfully loaded.
+[14:17:55] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Finished initialization.
+[14:17:55] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait
+[14:17:55] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
+[14:17:55] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
+[14:17:55] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
+[14:17:55] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
+[14:17:55] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
+[14:17:55] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
+[14:17:55] [Server thread/INFO]: [Denizen] Loading 2 libraries... please wait
+[14:17:55] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
+[14:17:55] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
+[14:17:55] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
+[14:17:55] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
+[14:17:55] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
+[14:17:55] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
+[14:17:55] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
+[14:17:55] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/org/json/json/20220320/json-20220320.jar
+[14:17:55] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/multicraft/servers/server1728902/default/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
+[14:17:56] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.58
+[14:17:56] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
+[14:17:56] [Server thread/INFO]: [InventoryRollbackPlus] Loading InventoryRollbackPlus v1.6.8
+[14:17:56] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
+[14:17:56] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
+[14:17:56] [Server thread/INFO]: [MessageAnnouncer] Loading MessageAnnouncer v1.12.3
+[14:17:56] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
+[14:17:56] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
+[14:17:56] [Server thread/INFO]: [PowerBoard] Loading PowerBoard v3.5.15
+[14:17:56] [Server thread/INFO]: [Terra] Loading Terra v6.2.2-BETA+8fff27fdd
+[14:17:56] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.13+46576cc
+[14:17:57] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@389faa1a]
+[14:17:57] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.0-dev+44-43d84de
+[14:17:57] [Server thread/INFO]: [MineableSpawners] Loading MineableSpawners v3.1.4
+[14:17:57] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.17.0
+[14:17:57] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
+[14:17:57] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.8-beta-01+cbb2ba7
+[14:17:57] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2936)
+[14:17:57] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.11.1
+[14:17:57] [Server thread/INFO]: [Vouchers] Loading Vouchers v3.7.1
+[14:17:57] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.2.1-fd1d0777
+[14:17:57] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
+[14:17:57] [Server thread/INFO]: [Multiverse-Inventories] Loading Multiverse-Inventories v4.2.3-b523
+[14:17:57] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.20.0-dev+44-43d84de
+[14:17:57] [Server thread/INFO]: [EconomyShopGUI] Loading EconomyShopGUI v5.2.3
+[14:17:57] [Server thread/INFO]: [TAB] Loading TAB v3.2.3
+[14:17:57] [Server thread/INFO]: [GSit] Loading GSit v1.3.5
+[14:17:57] [Server thread/INFO]: [CustomCrates] Loading CustomCrates v5.0.5
+[14:17:57] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.218
+[14:17:57] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
+[14:17:57] [Server thread/INFO]: [Multiverse-Portals] Loading Multiverse-Portals v4.2.1-b834
+[14:17:57] [Server thread/INFO]: [ModelEngine] Loading ModelEngine vR3.1.4
+[14:17:57] [Server thread/INFO]: [PlayerParticles] Loading PlayerParticles v8.3
+[14:17:57] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.0-dev+44-43d84de
+[14:17:57] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.3
+[14:17:57] [Server thread/INFO]: [Denizen] Loading Denizen v1.2.6-SNAPSHOT (build 1783-REL)
+[14:17:57] [Server thread/INFO]: [PlayerWarps] Loading PlayerWarps v2.3.0
+[14:17:57] [Server thread/INFO]: [CMILib] Loading CMILib v1.2.4.1
+[14:17:57] [Server thread/INFO]: [Towny] Loading Towny v0.98.6.0
+[14:17:57] [Server thread/INFO]: [Jobs] Loading Jobs v5.0.1.1
+[14:17:57] [Server thread/INFO]: [QuickShop] Loading QuickShop v5.1.1.2
+[14:17:57] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Booting up
+[14:17:58] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
+[14:17:58] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
+[14:17:58] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
+[14:17:58] [Server thread/INFO]: [QuickShop] Reading the configuration...
+[14:17:58] [Server thread/INFO]: [QuickShop] Loading messages translation over-the-air (this may need take a while).
+[14:17:58] [Server thread/INFO]: [QuickShop] Translation over-the-air platform selected: Crowdin
+[14:17:58] [Server thread/INFO]: [QuickShop] Checking for translation updates, this may need a while...
+[14:18:00] [Server thread/INFO]: [QuickShop] Loading up integration modules.
+[14:18:00] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Complete
+[14:18:00] [Server thread/INFO]: [InvSee++] Loading InvSeePlusPlus v0.19.2-SNAPSHOT
+[14:18:00] [Server thread/INFO]: [Sentinel] Loading Sentinel v2.7.2-SNAPSHOT (build 504)
+[14:18:00] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.16.4
+[14:18:00] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (355 ms).
+[14:18:00] [Server thread/INFO]: [Shopkeepers] Loading config.
+[14:18:00] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
+[14:18:00] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
+[14:18:00] [Server thread/INFO]: [Shopkeepers] Registering defaults.
+[14:18:00] [Server thread/INFO]: [Quests] Loading Quests v4.7.1-b388
+[14:18:00] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.6.1
+[14:18:00] [Server thread/INFO]: [PvPManager] Loading PvPManager v3.10.9
+[14:18:00] [Server thread/INFO]: [InvSee++_Clear] Loading InvSeePlusPlus_Clear v0.19.2-SNAPSHOT
+[14:18:00] [Server thread/INFO]: [InvSee++_Give] Loading InvSeePlusPlus_Give v0.19.2-SNAPSHOT
+[14:18:00] [Server thread/INFO]: [SCore] Loading SCore v3.9.31
+[14:18:00] [Server thread/INFO]: [ExecutableItems] Loading ExecutableItems v5.9.31
+[14:18:00] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
+[14:18:00] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.58
+[14:18:01] [Server thread/INFO]:         __    
+[14:18:01] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.58
+[14:18:01] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
+[14:18:01] [Server thread/INFO]: 
+[14:18:01] [Server thread/INFO]: [LuckPerms] Loading configuration...
+[14:18:02] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
+[14:18:03] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
+[14:18:03] [Server thread/INFO]: [LuckPerms] Performing initial data load...
+[14:18:04] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3486ms)
+[14:18:04] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
+[14:18:04] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
+[14:18:04] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
+[14:18:04] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.20.0-dev+44-43d84de which is not a depend or softdepend of this plugin.
+[14:18:04] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
+[14:18:04] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
+[14:18:04] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
+[14:18:04] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
+[14:18:04] [Server thread/INFO]: [Terra] Enabling Terra v6.2.2-BETA+8fff27fdd
+[14:18:04] [Server thread/INFO]: [com.dfsek.terra.bukkit.TerraBukkitPlugin] Running on Minecraft version v1.19.2 with server implementation Paper.
+[14:18:04] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config packs...
+[14:18:04] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: default.zip
+[14:18:06] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "OVERWORLD:OVERWORLD"
+[14:18:08] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "OVERWORLD:OVERWORLD" v1.3.0 by Astrash, Sancires, Aureus in 4281.289466ms.
+[14:18:08] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: Voidworld.zip
+[14:18:08] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "VOIDWORLD:VOIDWORLD"
+[14:18:08] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "VOIDWORLD:VOIDWORLD" v1.0.0 by Aureus in 2.874775ms.
+[14:18:08] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loaded packs.
+[14:18:09] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_19_R2.AwfulBukkitHacks] Hacking biome registry...
+[14:18:09] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_19_R2.AwfulBukkitHacks] Doing tag garbage....
+[14:18:09] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.13+46576cc
+[14:18:09] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
+[14:18:09] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
+[14:18:09] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R2.PaperweightAdapter as the Bukkit adapter
+[14:18:10] [Server thread/INFO]: Preparing level "world"
+[14:18:11] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
+[14:18:11] [Server thread/INFO]: Time elapsed: 182 ms
+[14:18:11] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
+[14:18:12] [Server thread/INFO]: Time elapsed: 104 ms
+[14:18:12] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
+[14:18:12] [Server thread/INFO]: Time elapsed: 101 ms
+[14:18:12] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.8
+[14:18:12] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
+[14:18:12] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
+[14:18:12] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
+[14:18:12] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
+[14:18:12] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
+[14:18:12] [Server thread/INFO]: [BuycraftX] Validating your server key...
+[14:18:13] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
+[14:18:13] [Server thread/INFO]: [MessageAnnouncer] Enabling MessageAnnouncer v1.12.3
+[14:18:13] [Server thread/INFO]: [MessageAnnouncer] PlaceholderAPI integration was successful!
+[14:18:13] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
+[14:18:13] [Server thread/INFO]: [Votifier] Loaded token for website: default
+[14:18:14] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
+[14:18:14] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
+[14:18:14] [Server thread/INFO]: [PowerBoard] Enabling PowerBoard v3.5.15
+[14:18:14] [Server thread/INFO]: [PowerBoard] --------------------------------------------------
+[14:18:14] [Server thread/INFO]: [PowerBoard] --------------- Loading PowerBoard ---------------
+[14:18:14] [Server thread/INFO]: [PowerBoard]  
+[14:18:14] [Server thread/INFO]: [PowerBoard] Detected Server Version (original): 1.19.3-R0.1-SNAPSHOT
+[14:18:14] [Server thread/INFO]: [PowerBoard] Detected Server Version (extracted): 1.19.3
+[14:18:14] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /85.190.131.1:5538.
+[14:18:14] [Server thread/INFO]: [PowerBoard]  
+[14:18:14] [Server thread/INFO]: [PowerBoard] Loading configs..
+[14:18:14] [Server thread/INFO]: [PowerBoard]  
+[14:18:14] [Server thread/INFO]: [PowerBoard] (SelfCheck) config.yml -> Loading...
+[14:18:14] [Server thread/INFO]: [PowerBoard] (SelfCheck) config.yml -> Finished!
+[14:18:14] [Server thread/INFO]: [PowerBoard]  
+[14:18:14] [Server thread/INFO]: [PowerBoard] Configs loaded!
+[14:18:14] [Server thread/INFO]: [PowerBoard]  
+[14:18:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PowerBoard [3.5.15]
+[14:18:14] [Server thread/INFO]: [PowerBoard] Registered scoreboard 'scoreboard'.
+[14:18:14] [Server thread/INFO]: [PowerBoard]  
+[14:18:14] [Server thread/INFO]: [PowerBoard] --------------- PowerBoard  loaded ---------------
+[14:18:14] [Server thread/INFO]: [PowerBoard] --------------------------------------------------
+[14:18:14] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+44-43d84de
+[14:18:14] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
+[14:18:14] [Server thread/INFO]: [Essentials] No kits found to migrate.
+[14:18:15] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
+[14:18:15] [Server thread/INFO]: [Essentials] Using locale en_US
+[14:18:15] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
+[14:18:15] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
+[14:18:15] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
+[14:18:15] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
+[14:18:15] [Server thread/INFO]: [MineableSpawners] Enabling MineableSpawners v3.1.4
+[14:18:15] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
+[14:18:15] [Server thread/INFO]: [HeadDatabase] §bUsing default §3"en_US.lang" §bcreated by §6Arcaniax
+[14:18:15] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
+[14:18:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
+[14:18:15] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
+[14:18:15] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
+[14:18:15] [Server thread/INFO]: [Multiverse-Core] §aWe are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
+[14:18:16] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
+[14:18:16] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
+[14:18:16] [Server thread/INFO]: Preparing start region for dimension minecraft:void
+[14:18:16] [Server thread/INFO]: Time elapsed: 206 ms
+[14:18:16] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
+[14:18:16] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
+[14:18:16] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
+[14:18:16] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
+[14:18:16] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
+[14:18:16] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
+[14:18:17] [Server thread/INFO]: [WorldGuard] (void) TNT ignition is PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (void) Lighters are PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (void) Lava fire is PERMITTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] (void) Fire spread is UNRESTRICTED.
+[14:18:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'void'
+[14:18:17] [Server thread/INFO]: [WorldGuard] Loading region data...
+[14:18:17] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2936)
+[14:18:17] [Server thread/INFO]: [Citizens] Loading external libraries
+[14:18:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
+[14:18:18] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
+[14:18:18] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.11.1
+[14:18:20] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
+[14:18:20] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.11.1
+[14:18:20] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from minecraft-mp.com, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
+[14:18:20] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.7.1
+[14:18:20] [Server thread/INFO]:  
+[14:18:20] [Server thread/INFO]: =============================
+[14:18:20] [Server thread/INFO]: Vouchers v3.7.1 by Tweetzy
+[14:18:20] [Server thread/INFO]: Developer: Kiran Hart
+[14:18:20] [Server thread/INFO]: [FlightCore] Enabling metrics for Vouchers
+[14:18:20] [Server thread/INFO]: =============================
+[14:18:20] [Server thread/INFO]:  
+[14:18:20] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
+[14:18:21] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
+[14:18:21] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
+[14:18:21] [Server thread/WARN]: [MythicMobs] Loaded class org.slf4j.impl.StaticLoggerBinder from VotingPlugin v6.11.1 which is not a depend or softdepend of this plugin.
+[14:18:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 100 ms to scan 1 urls, producing 3 keys and 21 values 
+[14:18:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 13 ms to scan 1 urls, producing 6 keys and 101 values 
+[14:18:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 106 ms to scan 115 urls, producing 0 keys and 0 values 
+[14:18:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 9 ms to scan 1 urls, producing 3 keys and 36 values 
+[14:18:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 4 keys and 14 values 
+[14:18:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 4 keys and 14 values 
+[14:18:21] [Server thread/WARN]: [MythicMobs] Loaded class com.gmail.nossr50.mcMMO from mcMMO v2.1.218 which is not a depend or softdepend of this plugin.
+[14:18:21] [Server thread/INFO]: [MythicMobs] MythicMobs mcMMO Support has been enabled!
+[14:18:21] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
+[14:18:21] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
+[14:18:21] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
+[14:18:21] [Server thread/INFO]: [MythicMobs] Base directory /home/minecraft/multicraft/servers/server1728902/default/plugins/MythicMobs/SavedData
+[14:18:21] [Server thread/INFO]: [MythicMobs] Module directory /home/minecraft/multicraft/servers/server1728902/default/plugins/MythicMobs/SavedData/worlds
+[14:18:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 71 ms to scan 1 urls, producing 11 keys and 445 values 
+[14:18:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 37 ms to scan 1 urls, producing 29 keys and 885 values 
+[14:18:22] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 61 ms to scan 1 urls, producing 9 keys and 152 values 
+[14:18:22] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 5 ms to scan 1 urls, producing 2 keys and 11 values 
+[14:18:22] [Server thread/INFO]: [MythicMobs] LOADED
+[14:18:22] [Server thread/INFO]: [MythicMobs] Loading Packs...
+[14:18:22] [Server thread/INFO]: [MythicMobs] Loading Items...
+[14:18:22] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
+[14:18:22] [Server thread/INFO]: [MythicMobs] Loading Skills...
+[14:18:22] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
+[14:18:22] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
+[14:18:22] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
+[14:18:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
+[14:18:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
+[14:18:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
+[14:18:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
+[14:18:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
+[14:18:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
+[14:18:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
+[14:18:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
+[14:18:22] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
+[14:18:22] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
+[14:18:22] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
+[14:18:22] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.3-b523
+[14:18:23] [Server thread/INFO]: [Multiverse-Inventories 4.2.3-b523] enabled.
+[14:18:23] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+44-43d84de
+[14:18:23] [Server thread/INFO]: [EssentialsChat] Secure signed chat and previews are enabled.
+[14:18:23] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v5.2.3
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Using lang-en.yml as language file.
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Shops.yml has been found!
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Sections.yml has been found!
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Successfully hooked into Vault
+[14:18:23] [Server thread/WARN]: [EconomyShopGUI] Completed loading '1' economy provider(s) for all 16 shop sections.
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Using minecraft version 1.19.3...
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Spawner provider set to DEFAULT in config
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Using plugin default spawners...
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Debug mode is enabled.
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Updating Shop settings...
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Loading all items...
+[14:18:23] [Server thread/WARN]: [EconomyShopGUI] Could not get the item material. If you think this is a bug, please report it to our discord support server which you can find at the plugin page. SKULK_SENSOR
+[14:18:23] [Server thread/WARN]: [EconomyShopGUI] Item path in shops.yml: Redstone.30
+[14:18:23] [Server thread/INFO]: [EconomyShopGUI] Initialized - Took 279ms to complete
+[14:18:23] [Server thread/INFO]: [TAB] Enabling TAB v3.2.3
+[14:18:23] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
+[14:18:23] [Server thread/INFO]: [TAB] Loaded NMS hook in 32ms
+[14:18:23] [Server thread/INFO]: [TAB] Animation "vote" has refresh interval of -1. Refresh cannot be negative! Using 1000.
+[14:18:23] [Server thread/INFO]: [TAB] Animation "Welcome" has refresh interval of -1. Refresh cannot be negative! Using 1000.
+[14:18:23] [Server thread/INFO]: [TAB] Enabled in 92ms
+[14:18:23] [Server thread/INFO]: [GSit] Enabling GSit v1.3.5
+[14:18:23] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
+[14:18:23] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
+[14:18:23] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
+[14:18:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.3.5]
+[14:18:23] [Server thread/INFO]: [GSit] New version available: 1.3.7!
 [GSit] You are currently running version: 1.3.5!
 [GSit] Download the latest version at:
 [GSit] https://www.spigotmc.org/resources/62325
-[14:03:59] [Server thread/INFO]: [CustomCrates] Enabling CustomCrates v5.0.5
-[14:03:59] [Server thread/INFO]: [CustomCrates] Loading Language: language_en.yml
-[14:03:59] [Server thread/INFO]: [CustomCrates] [EnchantmentLib] Version Detected: V1_19
-[14:03:59] [Server thread/INFO]: [CustomCrates] [EnchantmentLib] Using latest enchantment api
-[14:03:59] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.218
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
-[14:03:59] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
-[14:03:59] [Server thread/INFO]: [mcMMO] Platform String: 1.19.3-R0.1-SNAPSHOT
-[14:03:59] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.3
-[14:03:59] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
-[14:03:59] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
-[14:03:59] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
-[14:03:59] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
-[14:04:02] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
-[14:04:02] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
-[14:04:02] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
-[14:04:02] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
-[14:04:02] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
-[14:04:02] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
-[14:04:02] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
-[14:04:02] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
-[14:04:02] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
-[14:04:03] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file..
-[14:04:03] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
-[14:04:03] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
-[14:04:03] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
-[14:04:03] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
-[14:04:03] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
-[14:04:03] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
-[14:04:03] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
-[14:04:03] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
-[14:04:03] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
-[14:04:03] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
-[14:04:03] [Server thread/INFO]: [Multiverse-Portals] 1 - Portals(s) loaded
-[14:04:03] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
-[14:04:03] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
-[14:04:03] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.4
-[14:04:04] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
-[14:04:04] [Server thread/INFO]: [ModelEngine] Compatibility applied: MythicMobs
-[14:04:04] [Server thread/INFO]: [ModelEngine] Compatibility applied: Citizens
-[14:04:04] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.3
-[14:04:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerparticles [8.3]
-[14:04:04] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+44-43d84de
-[14:04:04] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
-[14:04:04] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
-[14:04:04] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
-[14:04:04] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
-[14:04:04] [Server thread/INFO]: --------------------
-[14:04:04] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
-[14:04:04] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
-[14:04:04] [Server thread/INFO]: --------------------
-[14:04:04] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.6-SNAPSHOT (build 1783-REL)
-[14:04:04] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.90.2-SNAPSHOT (Build 1308), impl for Spigot v1.2.6-SNAPSHOT (build 1783-REL) 
-[14:04:04] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.6 
-[14:04:04] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
-[14:04:05] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
-[14:04:05] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
-[14:04:05] [Server thread/INFO]: +> [Denizen]  
-[14:04:05] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
-[14:04:05] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
-[14:04:05] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
-[14:04:05] [Server thread/INFO]: +> [Denizen] version: 1.2.6-SNAPSHOT (build 1783-REL) 
-[14:04:05] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
-[14:04:05] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
-[14:04:06] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
-[14:04:06] [Server thread/INFO]: +> [Denizen] Loaded 148 core commands and 28 core object types, at 1790ms from start. 
-[14:04:06] [Server thread/INFO]: +> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
-[14:04:06] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
-[14:04:06] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 1ms, processing 46ms. 
-[14:04:06] [Server thread/INFO]: +> [Denizen] Final full init took 1864ms. 
-[14:04:06] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v2.3.0
-[14:04:06] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.4.1
-[14:04:07] [Server thread/INFO]: Server version: v1_19_R2 - 1.19.3 - paper
-[14:04:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.4.1]
-[14:04:07] [Server thread/INFO]: PlaceholderAPI hooked.
-[14:04:07] [Server thread/INFO]: Updated (EN) language file. Took 36ms
-[14:04:07] [Server thread/INFO]: [Towny] Enabling Towny v0.98.6.0
-[14:04:07] [Server thread/INFO]: ====================      Towny      ========================
-[14:04:08] [Server thread/INFO]: [Towny] Successfully loaded translations for 36 languages.
-[14:04:08] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: default, bank, shop, wilds, inn, farm, embassy, arena, jail.
-[14:04:08] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
-[14:04:08] [Server thread/INFO]: [Towny] Database: Loaded in 28ms.
-[14:04:08] [Server thread/INFO]: [Towny] Database: 100% of residents have stored UUIDs.
-[14:04:08] [Thread-18/INFO]: [Towny] Cleaning up old backups...
-[14:04:08] [Server thread/INFO]: [Towny] Searching for third-party plugins...
-[14:04:08] [Server thread/INFO]: [Towny] Plugins found: 
-[14:04:08] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.58 via Vault
-[14:04:08] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.58 via Vault
-[14:04:08] [Thread-18/INFO]: [Towny] Successfully cleaned backups.
-[14:04:08] [Thread-19/INFO]: [Towny] Making backup...
-[14:04:08] [Server thread/INFO]: [Towny]   Economy: EssentialsX Economy via Vault
-[14:04:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: townyadvanced [0.98.6.0]
-[14:04:08] [Server thread/INFO]: [Towny]   Add-ons: PlaceholderAPI v2.11.2
-[14:04:08] [Server thread/WARN]: [Towny]   Warning: EssentialsX Economy has been known to reset
+[14:18:23] [Server thread/INFO]: [CustomCrates] Enabling CustomCrates v5.0.5
+[14:18:23] [Server thread/INFO]: [CustomCrates] Loading Language: language_en.yml
+[14:18:23] [Server thread/INFO]: [CustomCrates] [EnchantmentLib] Version Detected: V1_19
+[14:18:23] [Server thread/INFO]: [CustomCrates] [EnchantmentLib] Using latest enchantment api
+[14:18:23] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.218
+[14:18:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
+[14:18:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
+[14:18:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
+[14:18:23] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
+[14:18:23] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
+[14:18:24] [Server thread/INFO]: [mcMMO] Platform String: 1.19.3-R0.1-SNAPSHOT
+[14:18:24] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.3
+[14:18:24] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
+[14:18:24] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
+[14:18:24] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
+[14:18:24] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
+[14:18:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
+[14:18:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
+[14:18:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
+[14:18:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
+[14:18:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
+[14:18:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
+[14:18:26] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
+[14:18:26] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
+[14:18:26] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
+[14:18:27] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file..
+[14:18:27] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
+[14:18:27] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
+[14:18:27] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
+[14:18:27] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
+[14:18:27] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
+[14:18:27] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
+[14:18:27] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
+[14:18:27] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
+[14:18:27] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
+[14:18:27] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
+[14:18:27] [Server thread/INFO]: [Multiverse-Portals] 1 - Portals(s) loaded
+[14:18:27] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
+[14:18:27] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
+[14:18:27] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.4
+[14:18:27] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
+[14:18:27] [Server thread/INFO]: [ModelEngine] Compatibility applied: MythicMobs
+[14:18:27] [Server thread/INFO]: [ModelEngine] Compatibility applied: Citizens
+[14:18:28] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.3
+[14:18:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerparticles [8.3]
+[14:18:28] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+44-43d84de
+[14:18:28] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
+[14:18:28] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
+[14:18:28] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
+[14:18:28] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
+[14:18:28] [Server thread/INFO]: --------------------
+[14:18:28] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
+[14:18:28] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
+[14:18:28] [Server thread/INFO]: --------------------
+[14:18:28] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.6-SNAPSHOT (build 1783-REL)
+[14:18:28] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.90.2-SNAPSHOT (Build 1308), impl for Spigot v1.2.6-SNAPSHOT (build 1783-REL) 
+[14:18:28] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.6 
+[14:18:28] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
+[14:18:29] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
+[14:18:29] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
+[14:18:29] [Server thread/INFO]: +> [Denizen]  
+[14:18:29] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
+[14:18:29] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
+[14:18:29] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
+[14:18:29] [Server thread/INFO]: +> [Denizen] version: 1.2.6-SNAPSHOT (build 1783-REL) 
+[14:18:29] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
+[14:18:29] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
+[14:18:30] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
+[14:18:30] [Server thread/INFO]: +> [Denizen] Loaded 148 core commands and 28 core object types, at 1831ms from start. 
+[14:18:30] [Server thread/INFO]: +> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
+[14:18:30] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
+[14:18:30] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 2ms, processing 4ms. 
+[14:18:30] [Server thread/INFO]: +> [Denizen] Final full init took 1908ms. 
+[14:18:30] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v2.3.0
+[14:18:30] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.4.1
+[14:18:31] [Server thread/INFO]: Server version: v1_19_R2 - 1.19.3 - paper
+[14:18:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.4.1]
+[14:18:32] [Server thread/INFO]: PlaceholderAPI hooked.
+[14:18:32] [Server thread/INFO]: Updated (EN) language file. Took 70ms
+[14:18:32] [Server thread/INFO]: [Towny] Enabling Towny v0.98.6.0
+[14:18:32] [Server thread/INFO]: ====================      Towny      ========================
+[14:18:33] [Server thread/INFO]: [Towny] Successfully loaded translations for 36 languages.
+[14:18:33] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: default, bank, shop, wilds, inn, farm, embassy, arena, jail.
+[14:18:33] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
+[14:18:33] [Server thread/INFO]: [Towny] Database: Loaded in 27ms.
+[14:18:33] [Server thread/INFO]: [Towny] Database: 100% of residents have stored UUIDs.
+[14:18:33] [Thread-18/INFO]: [Towny] Cleaning up old backups...
+[14:18:33] [Server thread/INFO]: [Towny] Searching for third-party plugins...
+[14:18:33] [Server thread/INFO]: [Towny] Plugins found: 
+[14:18:33] [Thread-18/INFO]: [Towny] Successfully cleaned backups.
+[14:18:33] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.58 via Vault
+[14:18:33] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.58 via Vault
+[14:18:33] [Thread-19/INFO]: [Towny] Making backup...
+[14:18:33] [Server thread/INFO]: [Towny]   Economy: EssentialsX Economy via Vault
+[14:18:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: townyadvanced [0.98.6.0]
+[14:18:33] [Server thread/INFO]: [Towny]   Add-ons: PlaceholderAPI v2.11.2
+[14:18:33] [Server thread/WARN]: [Towny]   Warning: EssentialsX Economy has been known to reset
                            town and nation bank accounts on rare occasions.
-[14:04:08] [Thread-19/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
-[14:04:08] [Server thread/INFO]: =============================================================
-[14:04:08] [Server thread/INFO]: [Towny] Version: 0.98.6.0 - Plugin Enabled
-[14:04:08] [Server thread/INFO]: =============================================================
-[14:04:08] [Server thread/INFO]: [Jobs] Enabling Jobs v5.0.1.1
-[14:04:08] [Server thread/INFO]: ------------- Jobs -------------
-[14:04:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.0.1.1]
-[14:04:08] [Server thread/INFO]: PlaceholderAPI hooked.
-[14:04:08] [Server thread/INFO]: Connected to database (SqLite)
-[14:04:08] [Server thread/INFO]: Loaded 8 titles
-[14:04:08] [Server thread/INFO]: Loaded 69 protected blocks timers
-[14:04:09] [Server thread/INFO]: Loaded 1282 custom item names
-[14:04:09] [Server thread/INFO]: Loaded 79 custom entity names
-[14:04:09] [Server thread/INFO]: Loaded 2 custom MythicMobs names
-[14:04:09] [Server thread/INFO]: Loaded 38 custom enchant names
-[14:04:09] [Server thread/INFO]: Loaded 16 custom color names
-[14:04:09] [Server thread/INFO]: Loaded 4 shop items
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Miner
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Crafter
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Brewer
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Woodcutter
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Fisherman
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Hunter
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Enchanter
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Farmer
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Builder
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Explorer
-[14:04:09] [Server thread/INFO]: Loaded 1 quests for Digger
-[14:04:09] [Server thread/INFO]: Loaded 12 jobs
-[14:04:09] [Server thread/INFO]: Loaded 0 boosted items
-[14:04:09] [Server thread/INFO]: Loaded 7 furnace for reassigning.
-[14:04:09] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
-[14:04:09] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
-[14:04:09] [Server thread/INFO]: Preloaded 7 players data in 0.0
-[14:04:09] [Server thread/INFO]: [Jobs] mcMMO2.1.218 was found - Enabling capabilities.
-[14:04:09] [Server thread/INFO]: [Jobs] Registered McMMO 2.x listener
-[14:04:09] [Server thread/INFO]: [Jobs] WorldGuard detected.
-[14:04:09] [Server thread/INFO]: Your MythicMobs version is not supported by Jobs! Supported versions: 4.9.1+
-[14:04:09] [Server thread/INFO]: Loading explorer data
-[14:04:09] [Server thread/INFO]: Loaded explorer data (800)
-[14:04:09] [Server thread/INFO]: Plugin has been enabled successfully.
-[14:04:09] [Server thread/INFO]: ------------------------------------
-[14:04:09] [Server thread/INFO]: [QuickShop] Enabling QuickShop v5.1.1.2
-[14:04:09] [Server thread/INFO]: [QuickShop] QuickShop Reremake
-[14:04:09] [Server thread/INFO]: [QuickShop] Starting plugin self-test, please wait...
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] Java Runtime Environment Version Test
-[14:04:09] [Server thread/INFO]: [QuickShop] Running QuickShop-Reremake on NMS version v1_19_R2 For Minecraft version 1.19.3
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] Spigot Based Server Test
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] Old QuickShop Test
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] ModdedServer Based Test
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] CoreSupport Test
-[14:04:09] [Server thread/WARN]: [QuickShop] [WARN] Virtual DisplayItem Support Test: ProtocolLib is not installed, virtual DisplayItem seems will not work on your server.
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] GameVersion supporting Test
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] PacketListenerAPI Conflict Test
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] Permission Manager Test
-[14:04:09] [Server thread/INFO]: [QuickShop] [OK] End of life Test
-[14:04:09] [Server thread/INFO]: [QuickShop] Reading the configuration...
-[14:04:09] [Server thread/INFO]: [QuickShop] Developers: PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), jho5245, Ghost_chu, cakoyo, Ectabro, portlek, log4b0at, Andre601, deadman96385, Vlvxingze, DoctaEnkoda, Mgazul, TiaraRinne, sandtechnology, Starmism, Chris6ix, Rean Schwarzer, mart-r, raphtaliapt, Tim269, creatorfromhell, LoneDev6, judgetread, confuxeon, ibmibmibm, yannicklamprecht, PyvesB, PaulBGD, ORelio, JoschuaSchneider, Starmium, harry0198, efekurbann, tdiant
-[14:04:09] [Server thread/INFO]: [QuickShop] Original author: Netherfoam, Timtower, KaiNoMood
-[14:04:09] [Server thread/INFO]: [QuickShop] Let's start loading the plugin
-[14:04:09] [Server thread/INFO]: [QuickShop] Chat processor selected: Hardcoded BungeeChat Lib
-[14:04:09] [Server thread/INFO]: [QuickShop] Loading plugin translations files...
-[14:04:09] [Server thread/INFO]: [QuickShop] Game assets server selected: Mojang API
-[14:04:09] [Server thread/INFO]: [QuickShop] Loading items translations...
-[14:04:10] [Server thread/INFO]: [QuickShop] Loading enchantments translations...
-[14:04:10] [Server thread/INFO]: [QuickShop] Loading potions translations...
-[14:04:10] [Server thread/INFO]: [QuickShop] Successfully loaded PlaceHolderAPI support!
-[14:04:10] [Server thread/INFO]: [QuickShop] Successfully loaded WorldEdit support!
-[14:04:10] [Server thread/WARN]: [QuickShop] You're using Real Display system and that may cause your server lagg, switch to Virtual Display system if you can!
-[14:04:10] [Server thread/INFO]: [QuickShop] Setting up database...
-[14:04:10] [Server thread/INFO]: [QuickShop] Checking and updating database columns, it may take a while...
-[14:04:10] [Server thread/INFO]: [QuickShop] Finished!
-[14:04:10] [Server thread/INFO]: [QuickShop] Selected permission provider: Bukkit
-[14:04:10] [Server thread/INFO]: [QuickShop] Registering commands...
-[14:04:10] [Server thread/INFO]: [QuickShop] Loaded 1 rules for listener blacklist.
-[14:04:10] [Server thread/INFO]: [QuickShop] EventManager selected: QSEventManager
-[14:04:10] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
-[14:04:10] [Server thread/INFO]: [QuickShop] Loading shops from the database...
-[14:04:10] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
-[14:04:10] [Server thread/INFO]: [QuickShop] Total           shops: 0
-[14:04:10] [Server thread/INFO]: [QuickShop] Valid           shops: 0
-[14:04:10] [Server thread/INFO]: [QuickShop] Pending              : 0
-[14:04:10] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
-[14:04:10] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 0
-[14:04:10] [Server thread/INFO]: [QuickShop] Done! Used 0ms to loaded shops in database.
-[14:04:10] [Server thread/INFO]: [QuickShop] Registering listeners...
-[14:04:10] [Server thread/INFO]: [QuickShop] Registering DisplayCheck task....
-[14:04:10] [Server thread/INFO]: [QuickShop] Cleaning MsgUtils...
-[14:04:10] [Server thread/INFO]: [QuickShop] Cleaning purchase messages from the database that are over a week old...
-[14:04:10] [Server thread/INFO]: [QuickShop] Log actions is enabled, actions will log in the qs.log file!
-[14:04:10] [Server thread/INFO]: [QuickShop] [Shop Purger] Purge not enabled!
-[14:04:10] [Server thread/INFO]: [QuickShop] QuickShop Loaded! 876 ms.
-[14:04:10] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.19.2-SNAPSHOT
-[14:04:10] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.7.2-SNAPSHOT (build 502)
-[14:04:10] [Server thread/INFO]: [Sentinel] Sentinel loading...
-[14:04:10] [Server thread/INFO]: [Sentinel] Running on java version: 17.0.6
-[14:04:10] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
-[14:04:10] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
-[14:04:10] [Server thread/INFO]: [Sentinel] Sentinel found Towny! Adding support for it!
-[14:04:10] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
-[14:04:10] [Server thread/INFO]: [Sentinel] Sentinel loaded!
-[14:04:10] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.4
-[14:04:10] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
-[14:04:10] [Server thread/INFO]: [Shopkeepers] Loading the data of 21 shopkeepers ...
-[14:04:11] [Server thread/INFO]: [Quests] Enabling Quests v4.7.1-b388
-[14:04:11] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
-[14:04:17] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
-[14:04:17] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.30-SNAPSHOT (build 2888)
-[14:04:17] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
-[14:04:17] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.1
-[14:04:17] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
-[14:04:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.1]
-[14:04:17] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.10.9
-[14:04:17] [Server thread/INFO]: [PvPManager] Loaded 2 players from users file
-[14:04:17] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
-[14:04:17] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
-[14:04:17] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
-[14:04:17] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
-[14:04:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pvpmanager [3.10.9]
-[14:04:17] [Server thread/INFO]: [PvPManager] mcMMO Found! Hooked successfully
-[14:04:17] [Server thread/INFO]: [PvPManager] PvPManager Enabled (58 ms)
-[14:04:17] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.19.2-SNAPSHOT
-[14:04:17] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.19.2-SNAPSHOT
-[14:04:17] [Server thread/INFO]: [SCore] Enabling SCore v3.9.31
-[14:04:17] [Server thread/INFO]: ================ SCore ================
-[14:04:17] [Server thread/INFO]: SCore Version of the server git-Paper-399 (MC: 1.19.3) !
-[14:04:17] [Server thread/INFO]: SCore ExecutableItems hooked !  (5.9.31)
-[14:04:17] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.2)
-[14:04:17] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.8-beta-01+cbb2ba7)
-[14:04:17] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)
-[14:04:17] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)
-[14:04:17] [Server thread/INFO]: SCore Towny hooked !  (0.98.6.0)
-[14:04:17] [Server thread/INFO]: SCore CoreProtect hooked !  (21.3)
-[14:04:17] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.17.0)
-[14:04:17] [Server thread/INFO]: SCore MythicMobs hooked !  (5.2.1-fd1d0777)
-[14:04:17] [Server thread/INFO]: SCore Locale setup: EN
-[14:04:17] [Server thread/INFO]: SCore Language of the editor setup on EN
-[14:04:17] [Server thread/INFO]: SCore Language for in-game messages setup on EN
-[14:04:17] [Server thread/INFO]: SCore onnection to the db...
-[14:04:17] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
-[14:04:17] [Server thread/INFO]: SCore Creating table Commands if not exists...
-[14:04:17] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
-[14:04:17] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
-[14:04:17] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
-[14:04:17] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
-[14:04:17] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
-[14:04:18] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
-[14:04:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore [1.0.0]
-[14:04:18] [Server thread/INFO]: ================ SCore ================
-[14:04:18] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v5.9.31
-[14:04:18] [Server thread/INFO]: ========*======== ExecutableItems ========*========
-[14:04:18] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
-[14:04:18] [Server thread/INFO]: ExecutableItems HeadDatabase hooked !
-[14:04:18] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
-[14:04:18] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
-[14:04:19] [Server thread/INFO]: ========*======== ExecutableItems ========*========
-[14:04:19] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
-[14:04:19] [Server thread/INFO]: Running delayed init tasks
-[14:04:19] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Fetching version information...
-[14:04:19] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
-[14:04:19] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] 
-[14:04:19] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] [Importing models]
-[14:04:19] [Craft Scheduler Thread - 16 - PlayerParticles/INFO]: [PlayerParticles] Data handler connected using SQLite.
-[14:04:19] [Craft Scheduler Thread - 20 - Towny/INFO]: [Towny] Checking for updates...
-[14:04:19] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] 
-[14:04:19] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] [Generating assets]
-[14:04:19] [Craft Scheduler Thread - 25 - PvPManager/INFO]: [PvPManager] Checking for updates...
-[14:04:19] [Craft Scheduler Thread - 19 - Towny/INFO]: [Towny] Time until a New Day: 21 hours, 55 minutes, 41 seconds
-[14:04:19] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
-[14:04:19] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] 
-[14:04:19] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] Resource pack zipped.
-[14:04:20] [Craft Scheduler Thread - 18 - CMILib/INFO]: New version of CMILib was detected. Please update it
-[14:04:20] [Craft Scheduler Thread - 25 - PvPManager/INFO]: [PvPManager] No update found
-[14:04:20] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
-[14:04:20] [Server thread/INFO]: [Jobs] Successfully linked with Vault.
-[14:04:20] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
-[14:04:20] [Craft Scheduler Thread - 15 - PlayerWarps/INFO]: [PlayerWarps] You are running latest release (2.3.0)
-[14:04:21] [Craft Scheduler Thread - 20 - Towny/INFO]: [Towny] New update available: 0.98.6.6 | Current version: 0.98.6.0
-[14:04:21] [Craft Scheduler Thread - 20 - Towny/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.98.6.6
-[14:04:21] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
-[14:04:21] [Craft Scheduler Thread - 9 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 51257 heads!
-[14:04:22] [Craft Scheduler Thread - 9 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
-[14:04:22] [Server thread/INFO]: [Citizens] Loaded 66 NPCs.
-[14:04:22] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
-[14:04:22] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
-[14:04:22] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2023/02/21 14:04:04 
-[14:04:23] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
-[14:04:23] [Server thread/INFO]: Done (57.215s)! For help, type "help"
-[14:04:23] [Server thread/INFO]: Timings Reset
-[14:04:23] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] Checking for Updates ... 
-[14:04:23] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] No new version available
-[14:04:25] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5080ms or 101 ticks behind
-[14:04:25] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
-[14:04:25] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
-[14:04:25] [Server thread/INFO]: [Quests] Loaded 11 Quest(s), 7 Action(s), 1 Condition(s) and 805 Phrase(s)
-[14:04:25] [Craft Scheduler Thread - 9 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.11.1 New Version: 6.11.2
-[14:04:26] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
-[14:04:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
-[14:04:26] [Server thread/ERROR]: [PlaceholderAPI] Failed to load expansion class ScoreboardTagsExpansion - One of its properties is null which is not allowed!
+[14:18:33] [Thread-19/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
+[14:18:33] [Server thread/INFO]: =============================================================
+[14:18:33] [Server thread/INFO]: [Towny] Version: 0.98.6.0 - Plugin Enabled
+[14:18:33] [Server thread/INFO]: =============================================================
+[14:18:33] [Server thread/INFO]: [Jobs] Enabling Jobs v5.0.1.1
+[14:18:33] [Server thread/INFO]: ------------- Jobs -------------
+[14:18:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.0.1.1]
+[14:18:33] [Server thread/INFO]: PlaceholderAPI hooked.
+[14:18:33] [Server thread/INFO]: Connected to database (SqLite)
+[14:18:33] [Server thread/INFO]: Loaded 8 titles
+[14:18:33] [Server thread/INFO]: Loaded 69 protected blocks timers
+[14:18:33] [Server thread/INFO]: Loaded 1282 custom item names
+[14:18:33] [Server thread/INFO]: Loaded 79 custom entity names
+[14:18:33] [Server thread/INFO]: Loaded 2 custom MythicMobs names
+[14:18:33] [Server thread/INFO]: Loaded 38 custom enchant names
+[14:18:33] [Server thread/INFO]: Loaded 16 custom color names
+[14:18:34] [Server thread/INFO]: Loaded 4 shop items
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Fisherman
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Builder
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Explorer
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Enchanter
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Brewer
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Hunter
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Digger
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Miner
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Woodcutter
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Crafter
+[14:18:34] [Server thread/INFO]: Loaded 1 quests for Farmer
+[14:18:34] [Server thread/INFO]: Loaded 12 jobs
+[14:18:34] [Server thread/INFO]: Loaded 0 boosted items
+[14:18:34] [Server thread/INFO]: Loaded 7 furnace for reassigning.
+[14:18:34] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
+[14:18:34] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
+[14:18:34] [Server thread/INFO]: Preloaded 7 players data in 0.0
+[14:18:34] [Server thread/INFO]: [Jobs] mcMMO2.1.218 was found - Enabling capabilities.
+[14:18:34] [Server thread/INFO]: [Jobs] Registered McMMO 2.x listener
+[14:18:34] [Server thread/INFO]: [Jobs] WorldGuard detected.
+[14:18:34] [Server thread/INFO]: Your MythicMobs version is not supported by Jobs! Supported versions: 4.9.1+
+[14:18:34] [Server thread/INFO]: Loading explorer data
+[14:18:34] [Server thread/INFO]: Loaded explorer data (800)
+[14:18:34] [Server thread/INFO]: Plugin has been enabled successfully.
+[14:18:34] [Server thread/INFO]: ------------------------------------
+[14:18:34] [Server thread/INFO]: [QuickShop] Enabling QuickShop v5.1.1.2
+[14:18:34] [Server thread/INFO]: [QuickShop] QuickShop Reremake
+[14:18:34] [Server thread/INFO]: [QuickShop] Starting plugin self-test, please wait...
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] Java Runtime Environment Version Test
+[14:18:34] [Server thread/INFO]: [QuickShop] Running QuickShop-Reremake on NMS version v1_19_R2 For Minecraft version 1.19.3
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] Spigot Based Server Test
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] Old QuickShop Test
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] ModdedServer Based Test
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] CoreSupport Test
+[14:18:34] [Server thread/WARN]: [QuickShop] [WARN] Virtual DisplayItem Support Test: ProtocolLib is not installed, virtual DisplayItem seems will not work on your server.
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] GameVersion supporting Test
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] PacketListenerAPI Conflict Test
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] Permission Manager Test
+[14:18:34] [Server thread/INFO]: [QuickShop] [OK] End of life Test
+[14:18:34] [Server thread/INFO]: [QuickShop] Reading the configuration...
+[14:18:34] [Server thread/INFO]: [QuickShop] Developers: PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), jho5245, Ghost_chu, cakoyo, Ectabro, portlek, log4b0at, Andre601, deadman96385, Vlvxingze, DoctaEnkoda, Mgazul, TiaraRinne, sandtechnology, Starmism, Chris6ix, Rean Schwarzer, mart-r, raphtaliapt, Tim269, creatorfromhell, LoneDev6, judgetread, confuxeon, ibmibmibm, yannicklamprecht, PyvesB, PaulBGD, ORelio, JoschuaSchneider, Starmium, harry0198, efekurbann, tdiant
+[14:18:34] [Server thread/INFO]: [QuickShop] Original author: Netherfoam, Timtower, KaiNoMood
+[14:18:34] [Server thread/INFO]: [QuickShop] Let's start loading the plugin
+[14:18:34] [Server thread/INFO]: [QuickShop] Chat processor selected: Hardcoded BungeeChat Lib
+[14:18:34] [Server thread/INFO]: [QuickShop] Loading plugin translations files...
+[14:18:34] [Server thread/INFO]: [QuickShop] Game assets server selected: Mojang API
+[14:18:34] [Server thread/INFO]: [QuickShop] Loading items translations...
+[14:18:34] [Server thread/INFO]: [QuickShop] Loading enchantments translations...
+[14:18:34] [Server thread/INFO]: [QuickShop] Loading potions translations...
+[14:18:34] [Server thread/INFO]: [QuickShop] Successfully loaded PlaceHolderAPI support!
+[14:18:34] [Server thread/INFO]: [QuickShop] Successfully loaded WorldEdit support!
+[14:18:34] [Server thread/WARN]: [QuickShop] You're using Real Display system and that may cause your server lagg, switch to Virtual Display system if you can!
+[14:18:34] [Server thread/INFO]: [QuickShop] Setting up database...
+[14:18:34] [Server thread/INFO]: [QuickShop] Checking and updating database columns, it may take a while...
+[14:18:34] [Server thread/INFO]: [QuickShop] Finished!
+[14:18:34] [Server thread/INFO]: [QuickShop] Selected permission provider: Bukkit
+[14:18:34] [Server thread/INFO]: [QuickShop] Registering commands...
+[14:18:34] [Server thread/INFO]: [QuickShop] Loaded 1 rules for listener blacklist.
+[14:18:34] [Server thread/INFO]: [QuickShop] EventManager selected: QSEventManager
+[14:18:34] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
+[14:18:34] [Server thread/INFO]: [QuickShop] Loading shops from the database...
+[14:18:34] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
+[14:18:34] [Server thread/INFO]: [QuickShop] Total           shops: 0
+[14:18:34] [Server thread/INFO]: [QuickShop] Valid           shops: 0
+[14:18:34] [Server thread/INFO]: [QuickShop] Pending              : 0
+[14:18:34] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
+[14:18:34] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 0
+[14:18:34] [Server thread/INFO]: [QuickShop] Done! Used 0ms to loaded shops in database.
+[14:18:34] [Server thread/INFO]: [QuickShop] Registering listeners...
+[14:18:34] [Server thread/INFO]: [QuickShop] Registering DisplayCheck task....
+[14:18:34] [Server thread/INFO]: [QuickShop] Cleaning MsgUtils...
+[14:18:34] [Server thread/INFO]: [QuickShop] Cleaning purchase messages from the database that are over a week old...
+[14:18:34] [Server thread/INFO]: [QuickShop] Log actions is enabled, actions will log in the qs.log file!
+[14:18:34] [Server thread/INFO]: [QuickShop] [Shop Purger] Purge not enabled!
+[14:18:34] [Server thread/INFO]: [QuickShop] QuickShop Loaded! 638 ms.
+[14:18:34] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.19.2-SNAPSHOT
+[14:18:34] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.7.2-SNAPSHOT (build 504)
+[14:18:34] [Server thread/INFO]: [Sentinel] Sentinel loading...
+[14:18:34] [Server thread/INFO]: [Sentinel] Running on java version: 17.0.6
+[14:18:34] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
+[14:18:35] [Server thread/INFO]: [Sentinel] Your config file is outdated. Automatically updating it...
+[14:18:35] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
+[14:18:35] [Server thread/INFO]: [Sentinel] Sentinel found Towny! Adding support for it!
+[14:18:35] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
+[14:18:35] [Server thread/INFO]: [Sentinel] Sentinel loaded!
+[14:18:35] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.4
+[14:18:35] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
+[14:18:35] [Server thread/INFO]: [Shopkeepers] Loading the data of 21 shopkeepers ...
+[14:18:35] [Server thread/INFO]: [Quests] Enabling Quests v4.7.1-b388
+[14:18:35] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
+[14:18:40] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
+[14:18:40] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.30-SNAPSHOT (build 2936)
+[14:18:40] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
+[14:18:40] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.1
+[14:18:40] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
+[14:18:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.1]
+[14:18:41] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.10.9
+[14:18:41] [Server thread/INFO]: [PvPManager] Loaded 2 players from users file
+[14:18:41] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
+[14:18:41] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
+[14:18:41] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
+[14:18:41] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
+[14:18:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pvpmanager [3.10.9]
+[14:18:41] [Server thread/INFO]: [PvPManager] mcMMO Found! Hooked successfully
+[14:18:41] [Server thread/INFO]: [PvPManager] PvPManager Enabled (51 ms)
+[14:18:41] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.19.2-SNAPSHOT
+[14:18:41] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.19.2-SNAPSHOT
+[14:18:41] [Server thread/INFO]: [SCore] Enabling SCore v3.9.31
+[14:18:41] [Server thread/INFO]: ================ SCore ================
+[14:18:41] [Server thread/INFO]: SCore Version of the server git-Paper-399 (MC: 1.19.3) !
+[14:18:41] [Server thread/INFO]: SCore ExecutableItems hooked !  (5.9.31)
+[14:18:41] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.2)
+[14:18:41] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.8-beta-01+cbb2ba7)
+[14:18:41] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)
+[14:18:41] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)
+[14:18:41] [Server thread/INFO]: SCore Towny hooked !  (0.98.6.0)
+[14:18:41] [Server thread/INFO]: SCore CoreProtect hooked !  (21.3)
+[14:18:41] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.17.0)
+[14:18:41] [Server thread/INFO]: SCore MythicMobs hooked !  (5.2.1-fd1d0777)
+[14:18:41] [Server thread/INFO]: SCore Locale setup: EN
+[14:18:41] [Server thread/INFO]: SCore Language of the editor setup on EN
+[14:18:41] [Server thread/INFO]: SCore Language for in-game messages setup on EN
+[14:18:41] [Server thread/INFO]: SCore onnection to the db...
+[14:18:41] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
+[14:18:41] [Server thread/INFO]: SCore Creating table Commands if not exists...
+[14:18:41] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
+[14:18:41] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
+[14:18:41] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
+[14:18:41] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
+[14:18:41] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
+[14:18:41] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
+[14:18:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore [1.0.0]
+[14:18:41] [Server thread/INFO]: ================ SCore ================
+[14:18:41] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v5.9.31
+[14:18:41] [Server thread/INFO]: ========*======== ExecutableItems ========*========
+[14:18:41] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
+[14:18:41] [Server thread/INFO]: ExecutableItems HeadDatabase hooked !
+[14:18:41] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
+[14:18:41] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
+[14:18:42] [Server thread/INFO]: ========*======== ExecutableItems ========*========
+[14:18:43] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
+[14:18:43] [Server thread/INFO]: Running delayed init tasks
+[14:18:43] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
+[14:18:43] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Fetching version information...
+[14:18:43] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] 
+[14:18:43] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] [Importing models]
+[14:18:43] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] 
+[14:18:43] [Craft Scheduler Thread - 16 - PlayerParticles/INFO]: [PlayerParticles] Data handler connected using SQLite.
+[14:18:43] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] [Generating assets]
+[14:18:43] [Craft Scheduler Thread - 20 - Towny/INFO]: [Towny] Checking for updates...
+[14:18:43] [Craft Scheduler Thread - 25 - PvPManager/INFO]: [PvPManager] Checking for updates...
+[14:18:43] [Craft Scheduler Thread - 19 - Towny/INFO]: [Towny] Time until a New Day: 21 hours, 41 minutes, 17 seconds
+[14:18:43] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
+[14:18:43] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] 
+[14:18:43] [Craft Scheduler Thread - 17 - ModelEngine/INFO]: [ModelEngine] Resource pack zipped.
+[14:18:43] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
+[14:18:43] [Craft Scheduler Thread - 18 - CMILib/INFO]: New version of CMILib was detected. Please update it
+[14:18:43] [Craft Scheduler Thread - 25 - PvPManager/INFO]: [PvPManager] No update found
+[14:18:43] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
+[14:18:43] [Server thread/INFO]: [Jobs] Successfully linked with Vault.
+[14:18:43] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
+[14:18:43] [Craft Scheduler Thread - 11 - PlayerWarps/INFO]: [PlayerWarps] You are running latest release (2.3.0)
+[14:18:44] [Craft Scheduler Thread - 20 - Towny/INFO]: [Towny] New update available: 0.98.6.6 | Current version: 0.98.6.0
+[14:18:44] [Craft Scheduler Thread - 20 - Towny/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.98.6.6
+[14:18:45] [Craft Scheduler Thread - 9 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 51257 heads!
+[14:18:45] [Craft Scheduler Thread - 9 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
+[14:18:46] [Server thread/INFO]: [Citizens] Loaded 66 NPCs.
+[14:18:46] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
+[14:18:46] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
+[14:18:46] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2023/02/21 14:18:28 
+[14:18:46] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
+[14:18:46] [Server thread/INFO]: Done (53.656s)! For help, type "help"
+[14:18:46] [Server thread/INFO]: Timings Reset
+[14:18:46] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] Checking for Updates ... 
+[14:18:46] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] No new version available
+[14:18:48] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
+[14:18:48] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
+[14:18:48] [Server thread/INFO]: [Quests] Loaded 11 Quest(s), 7 Action(s), 1 Condition(s) and 805 Phrase(s)
+[14:18:48] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5071ms or 101 ticks behind
+[14:18:49] [Craft Scheduler Thread - 7 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.11.1 New Version: 6.11.2
+[14:18:49] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
+[14:18:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
+[14:18:49] [Server thread/ERROR]: [PlaceholderAPI] Failed to load expansion class ScoreboardTagsExpansion - One of its properties is null which is not allowed!
 java.lang.NullPointerException: The expansion version is null!
     at java.util.Objects.requireNonNull(Objects.java:233) ~[?:?]
     at me.clip.placeholderapi.expansion.manager.LocalExpansionManager.register(LocalExpansionManager.java:181) ~[PlaceholderAPI-2.11.2.jar:?]
     at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
     at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
     at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]
     at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
     at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
     at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]
     at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
     at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]
     at me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$registerAll$4(LocalExpansionManager.java:350) ~[PlaceholderAPI-2.11.2.jar:?]
     at me.clip.placeholderapi.util.Futures.lambda$null$0(Futures.java:46) ~[PlaceholderAPI-2.11.2.jar:?]
     at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.3.jar:git-Paper-399]
     at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.3.jar:git-Paper-399]
     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.3.jar:git-Paper-399]
     at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447) ~[paper-1.19.3.jar:git-Paper-399]
     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.3.jar:git-Paper-399]
     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.3.jar:git-Paper-399]
     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-399]
     at java.lang.Thread.run(Thread.java:833) ~[?:?]
-[14:04:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
-[14:04:27] [Server thread/INFO]: 2 placeholder hook(s) registered!
-[14:04:27] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
-[14:04:27] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
-[14:04:27] [Server thread/INFO]: [PowerBoard] Registering players...
-[14:04:27] [Server thread/INFO]: [PowerBoard] All players have been registered.
-[14:04:27] [Craft Scheduler Thread - 29 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
-[14:04:29] [User Authenticator #0/INFO]: UUID of player Saqdi is 537f2430-84d6-485c-94a6-78795cd331ec
-[14:04:30] [Server thread/INFO]: Saqdi joined the game
-[14:04:30] [Server thread/INFO]: Saqdi[/24.207.244.166:52605] logged in with entity id 1584 at ([world]-156.93174768986296, 74.49313550722009, 92.32713301305063)
-[14:05:24] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
-[14:05:25] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
-[14:05:25] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
-[14:06:25] [Craft Scheduler Thread - 9 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
-[14:06:26] [Craft Scheduler Thread - 9 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
-[14:07:25] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
-[14:07:25] [Server thread/INFO]: There are 1 out of maximum 45 players online.
-[14:07:25] [Server thread/INFO]: Admins: Saqdi
+[14:18:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
+[14:18:49] [Server thread/INFO]: 2 placeholder hook(s) registered!
+[14:18:50] [Craft Scheduler Thread - 23 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
+[14:18:50] [Craft Scheduler Thread - 23 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
+[14:18:50] [Server thread/INFO]: [PowerBoard] Registering players...
+[14:18:50] [Craft Scheduler Thread - 11 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
+[14:18:50] [Server thread/INFO]: [PowerBoard] All players have been registered.
+[14:19:00] [User Authenticator #0/INFO]: UUID of player Saqdi is 537f2430-84d6-485c-94a6-78795cd331ec
+[14:19:00] [Server thread/INFO]: Saqdi joined the game
+[14:19:00] [Server thread/INFO]: Saqdi[/24.207.244.166:53510] logged in with entity id 1472 at ([world]-156.93174768986296, 74.49313550722009, 92.32713301305063)
+[14:19:48] [Craft Scheduler Thread - 7 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
+[14:19:49] [Craft Scheduler Thread - 21 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
+[14:19:49] [Craft Scheduler Thread - 21 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
+[14:20:49] [Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
+[14:20:49] [Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
+[14:21:48] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
+[14:21:48] [Server thread/INFO]: There are 1 out of maximum 45 players online.
+[14:21:48] [Server thread/INFO]: Admins: Saqdi
+[14:21:49] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
+[14:21:49] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
+[14:22:36] [Server thread/INFO]: Saving the game (this may take a moment!)
+[14:22:38] [Server thread/INFO]: Saved the game
+[14:22:38] [Server thread/INFO]: Stopping the server
+[14:22:38] [Server thread/INFO]: Stopping server
+[14:22:38] [Server thread/INFO]: [ExecutableItems] Disabling ExecutableItems v5.9.31
+[14:22:38] [Server thread/INFO]: SCore Save UsagePerDay....
+[14:22:38] [Server thread/INFO]: SCore Save UsagePerDay done !
+[14:22:38] [Server thread/INFO]: SCore Save Commands...
+[14:22:38] [Server thread/INFO]: SCore Save Commands done !
+[14:22:38] [Server thread/INFO]: SCore Save Cooldowns...
+[14:22:38] [Server thread/INFO]: SCore Save Cooldowns done !
+[14:22:38] [Server thread/INFO]: [InvSee++_Give] Disabling InvSeePlusPlus_Give v0.19.2-SNAPSHOT
+[14:22:39] [Server thread/INFO]: [InvSee++_Clear] Disabling InvSeePlusPlus_Clear v0.19.2-SNAPSHOT
+[14:22:39] [Server thread/INFO]: [PvPManager] Disabling PvPManager v3.10.9
+[14:22:39] [Server thread/INFO]: [PvPManager] Saving player data to users file
+[14:22:39] [Server thread/INFO]: [BetterRTP] Disabling BetterRTP v3.6.1
+[14:22:39] [Server thread/INFO]: [Quests] Disabling Quests v4.7.1-b388
+[14:22:39] [Server thread/INFO]: [Quests] Saving Quester data...
+[14:22:39] [Server thread/INFO]: [Quests] Closing storage...
+[14:22:39] [Server thread/INFO]: [Shopkeepers] Disabling Shopkeepers v2.16.4
+[14:22:39] [Server thread/INFO]: [Sentinel] Disabling Sentinel v2.7.2-SNAPSHOT (build 504)
+[14:22:39] [Server thread/INFO]: [Sentinel] Sentinel unloading...
+[14:22:39] [Server thread/INFO]: [Sentinel] Sentinel unloaded!
+[14:22:39] [Server thread/INFO]: [InvSee++] Disabling InvSeePlusPlus v0.19.2-SNAPSHOT
+[14:22:39] [Server thread/INFO]: [QuickShop] Disabling QuickShop v5.1.1.2
+[14:22:39] [Server thread/INFO]: [QuickShop] QuickShop is finishing remaining work, this may need a while...
+[14:22:39] [Server thread/INFO]: [QuickShop] Please wait for the data to flush its data...
+[14:22:39] [Server thread/INFO]: [Jobs] Disabling Jobs v5.0.1.1
+[14:22:39] [Server thread/INFO]: ------------- Jobs -------------
+[14:22:39] [Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
+[14:22:39] [Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
+[14:22:39] [Server thread/INFO]: ------------------------------------
+[14:22:39] [Server thread/INFO]: [Towny] Disabling Towny v0.98.6.0
+[14:22:39] [Server thread/INFO]: ==============================================================
+[14:22:39] [Server thread/INFO]: [Towny] Finishing File IO Tasks...
+[14:22:39] [Server thread/INFO]: [Towny] Version: 0.98.6.0 - Plugin Disabled
+[14:22:39] [Server thread/INFO]: =============================================================
+[14:22:39] [Server thread/INFO]: [CMILib] Disabling CMILib v1.2.4.1
+[14:22:39] [Server thread/INFO]: [PlayerWarps] Disabling PlayerWarps v2.3.0
+[14:22:39] [Server thread/INFO]: Saving 1 warps (including 0 private warps)
+[14:22:39] [Server thread/INFO]: [Denizen] Disabling Denizen v1.2.6-SNAPSHOT (build 1783-REL)
+[14:22:39] [Server thread/INFO]: [Denizen]  v1.2.6-SNAPSHOT (build 1783-REL) disabled.
+[14:22:39] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v21.3
+[14:22:39] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
+[14:22:40] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v21.3
+[14:22:40] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.20.0-dev+44-43d84de
+[14:22:40] [Server thread/INFO]: [PlayerParticles] Disabling PlayerParticles v8.3
+[14:22:40] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR3.1.4
+[14:22:40] [Server thread/INFO]: [Multiverse-Portals] Disabling Multiverse-Portals v4.2.1-b834
+[14:22:40] [Server thread/INFO]: [mcMMO] Disabling mcMMO v2.1.218
+[14:22:40] [Server thread/INFO]: [mcMMO] Server shutdown has been executed, saving and cleaning up data...
+[14:22:40] [Server thread/INFO]: [mcMMO] Saving mcMMOPlayers... (1)
+[14:22:40] [Server thread/INFO]: [mcMMO] Saving data for player: Saqdi
+[14:22:40] [Server thread/INFO]: [mcMMO] Finished save operation for 1 players!
+[14:22:40] [Server thread/INFO]: [CustomCrates] Disabling CustomCrates v5.0.5
+[14:22:40] [Server thread/INFO]: [GSit] Disabling GSit v1.3.5
+[14:22:40] [Server thread/INFO]: [GSit] The plugin was successfully disabled.
+[14:22:40] [Server thread/INFO]: [TAB] Disabling TAB v3.2.3
+[14:22:40] [Server thread/INFO]: [TAB] Disabled in 2ms
+[14:22:40] [Server thread/INFO]: [EconomyShopGUI] Disabling EconomyShopGUI v5.2.3
+[14:22:40] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.20.0-dev+44-43d84de
+[14:22:40] [Server thread/INFO]: [Multiverse-Inventories] Disabling Multiverse-Inventories v4.2.3-b523
+[14:22:40] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.2.1-fd1d0777
+[14:22:40] [Server thread/INFO]: [MythicMobs] Disabling Mythic Mobs...
+[14:22:40] [Server thread/INFO]: [MythicMobs] All active settings have been saved.
+[14:22:40] [Server thread/INFO]: [MythicMobs] UNLOADED
+[14:22:40] [Server thread/INFO]: [Vouchers] Disabling Vouchers v3.7.1
+[14:22:40] [Server thread/INFO]: [VotingPlugin] Disabling VotingPlugin v6.11.1
+[14:22:40] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.30-SNAPSHOT (build 2936)
+[14:22:40] [Server thread/INFO]: Attempt to teleport removed player Chief Wiggins restricted
+[14:22:40] [Server thread/INFO]: Attempt to teleport removed player Chief Wiggins restricted
+[14:22:40] [Server thread/INFO]: Attempt to teleport removed player Detective Drebin restricted
+[14:22:40] [Server thread/INFO]: Attempt to teleport removed player Detective Drebin restricted
+[14:22:40] [Server thread/INFO]: Attempt to teleport removed player Crystal restricted
+[14:22:40] [Server thread/INFO]: Attempt to teleport removed player Crystal restricted
+[14:22:40] [Server thread/INFO]: Attempt to teleport removed player Michael restricted
+[14:22:40] [Server thread/INFO]: Attempt to teleport removed player Michael restricted
+[14:22:40] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.8-beta-01+cbb2ba7
+[14:22:40] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
+[14:22:40] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.1-b861
+[14:22:40] [Server thread/INFO]: [HeadDatabase] Disabling HeadDatabase v4.17.0
+[14:22:40] [Server thread/INFO]: [MineableSpawners] Disabling MineableSpawners v3.1.4
+[14:22:40] [Server thread/INFO]: [Essentials] Disabling Essentials v2.20.0-dev+44-43d84de
+[14:22:40] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
+[14:22:40] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.2.13+46576cc
+[14:22:40] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
+[14:22:40] [Server thread/INFO]: [Terra] Disabling Terra v6.2.2-BETA+8fff27fdd
+[14:22:40] [Server thread/INFO]: [PowerBoard] Disabling PowerBoard v3.5.15
+[14:22:40] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
+[14:22:40] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion vault
+[14:22:40] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Vault was disabled.
+[14:22:40] [Server thread/INFO]: [Votifier] Disabling Votifier v2.7.3
+[14:22:42] [Server thread/INFO]: [Votifier] Votifier disabled.
+[14:22:42] [Server thread/INFO]: [MessageAnnouncer] Disabling MessageAnnouncer v1.12.3
+[14:22:42] [Server thread/INFO]: [BuycraftX] Disabling BuycraftX v12.0.8
+[14:22:42] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.2
+[14:22:42] [Server thread/INFO]: [InventoryRollbackPlus] Disabling InventoryRollbackPlus v1.6.8
+[14:22:42] [Server thread/INFO]: [InventoryRollbackPlus] Setting shutdown state
+[14:22:42] [Server thread/INFO]: [InventoryRollbackPlus] Saving player inventories...
+[14:22:42] [Server thread/INFO]: [InventoryRollbackPlus] Done saving player inventories!
+[14:22:42] [Server thread/INFO]: [InventoryRollbackPlus] Plugin is disabled!
+[14:22:42] [Server thread/INFO]: [VoidGen] Disabling VoidGen v2.2.1
+[14:22:42] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.58
+[14:22:42] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
+[14:22:42] [luckperms-worker-1/WARN]: [LuckPerms] Unable to pass event UserDataRecalculateEvent to handler de.xite.scoreboard.depend.LuckPermsListener$$Lambda$7313/0x00000008023c98e8
+org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register task while disabled
+    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.validate(CraftScheduler.java:552) ~[paper-1.19.3.jar:git-Paper-399]
+    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.runTaskTimerAsynchronously(CraftScheduler.java:251) ~[paper-1.19.3.jar:git-Paper-399]
+    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.runTaskTimerAsynchronously(CraftScheduler.java:247) ~[paper-1.19.3.jar:git-Paper-399]
+    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.runTaskLaterAsynchronously(CraftScheduler.java:192) ~[paper-1.19.3.jar:git-Paper-399]
+    at de.xite.scoreboard.depend.LuckPermsListener.updateRank(LuckPermsListener.java:25) ~[PowerBoard.jar:?]
+    at de.xite.scoreboard.depend.LuckPermsListener.lambda$0(LuckPermsListener.java:21) ~[PowerBoard.jar:?]
+    at me.lucko.luckperms.common.event.LuckPermsEventSubscription.invoke(LuckPermsEventSubscription.java:95) ~[?:?]
+    at me.lucko.luckperms.common.event.LuckPermsEventSubscription.invoke(LuckPermsEventSubscription.java:43) ~[?:?]
+    at me.lucko.luckperms.lib.eventbus.SimpleEventBus.post(SimpleEventBus.java:107) ~[?:?]
+    at me.lucko.luckperms.common.event.AbstractEventBus.post(AbstractEventBus.java:84) ~[?:?]
+    at me.lucko.luckperms.common.event.EventDispatcher.post(EventDispatcher.java:128) ~[?:?]
+    at me.lucko.luckperms.common.event.EventDispatcher.lambda$postAsync$0(EventDispatcher.java:143) ~[?:?]
+    at java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1395) ~[?:?]
+    at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]
+    at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]
+    at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]
+    at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]
+    at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?]
+[14:22:42] [Server thread/INFO]: [LuckPerms] Closing storage...
+[14:22:42] [Server thread/INFO]: [LuckPerms] Goodbye!
+[14:22:42] [Server thread/INFO]: Saving players
+[14:22:42] [Server thread/INFO]: Saqdi lost connection: Server closed
+[14:22:42] [Server thread/INFO]: Saqdi left the game
+[14:22:42] [Server thread/INFO]: Saving worlds
+[14:22:42] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 81 entity chunks, 0 poi chunks in world 'world' in 0.02s
+[14:22:42] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
+[14:22:42] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 51 entity chunks, 0 poi chunks in world 'world_nether' in 0.01s
+[14:22:42] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
+[14:22:42] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 10 entity chunks, 0 poi chunks in world 'world_the_end' in 0.00s
+[14:22:42] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
+[14:22:42] [Server thread/INFO]: Saving chunks for level 'ServerLevel[void]'/minecraft:void
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'void'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'void'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'void'
+[14:22:42] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 1 entity chunks, 0 poi chunks in world 'void' in 0.02s
+[14:22:42] [Server thread/INFO]: ThreadedAnvilChunkStorage (void): All chunks are saved
+[14:22:42] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
+[14:22:42] [Server thread/INFO]: Flushing Chunk IO
+[14:22:42] [Server thread/INFO]: Closing Thread Pool
+[14:22:42] [Server thread/INFO]: Closing Server