Paste #107866: Log

Date: 2023/03/25 18:46:22 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[01:24:44] [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'
[01:24:46] [ServerMain/INFO]: Loaded 7 recipes
[01:24:47] [Server thread/INFO]: Starting minecraft server version 1.19.4
[01:24:47] [Server thread/INFO]: Loading properties
[01:24:47] [Server thread/INFO]: This server is running Paper version git-Paper-471 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: d5abb94)
[01:24:47] [Server thread/INFO]: Server Ping Player Sample Count: 12
[01:24:47] [Server thread/INFO]: Using 4 threads for Netty based IO
[01:24:48] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 3 worker threads, and gen parallelism of 3 threads
[01:24:48] [Server thread/INFO]: Default game type: SURVIVAL
[01:24:48] [Server thread/INFO]: Generating keypair
[01:24:48] [Server thread/INFO]: Starting Minecraft server on 66.70.221.247:25565
[01:24:48] [Server thread/INFO]: Using epoll channel type
[01:24:48] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[01:24:48] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[01:24:48] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'Spartan' for files 'plugins/SpartanKBNPAVRNU8CEXCWSESD2ASV1NPMMDKYK.jar' and 'plugins/SpartanBedrockEditionANKJDUDZVYYGKQH8SAF8COIRTCZL6BUK.jar' in 'plugins'
[01:24:49] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[01:24:53] [Server thread/WARN]: Legacy plugin SecondThreadAPI v1.1.5 does not specify an api-version.
[01:24:54] [Server thread/WARN]: Legacy plugin BanItem v2.8 does not specify an api-version.
[01:24:54] [Server thread/INFO]: [SpigotLibraryLoader] [TNTRun_reloaded] Loading 1 libraries... please wait
[01:24:54] [Server thread/INFO]: [SpigotLibraryLoader] [TNTRun_reloaded] Loaded library /home/mch/multicraft/servers/server157108/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[01:24:54] [Server thread/WARN]: Legacy plugin Spleef v2.2.10 does not specify an api-version.
[01:24:54] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[01:24:54] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/mch/multicraft/servers/server157108/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[01:24:54] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/mch/multicraft/servers/server157108/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[01:24:54] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/mch/multicraft/servers/server157108/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[01:24:54] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/mch/multicraft/servers/server157108/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[01:24:54] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/mch/multicraft/servers/server157108/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[01:24:54] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/mch/multicraft/servers/server157108/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[01:24:54] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.0-23w12a-SNAPSHOT
[01:24:54] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0-23w12a-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[01:24:54] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[01:24:54] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[01:24:54] [Server thread/INFO]: [ViaBackwards] Loading translations...
[01:24:55] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[01:24:55] [Server thread/WARN]: [ViaBackwards] Error loading 1.20 translatables!
[01:24:55] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.67
[01:24:55] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[01:24:55] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.2.15-SNAPSHOT+6361-de453b9
[01:24:56] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@72fc7dd5]
[01:24:56] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[01:24:56] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8-SNAPSHOT+2230-ece376a
[01:24:56] [Server thread/INFO]: [IridiumSkyblock] Loading server plugin IridiumSkyblock v3.2.10-hotfix-1.2.1
[01:24:57] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-b618
[01:24:58] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.2-SNAPSHOT (b??-65e4de4)
[01:24:59] [Server thread/INFO]: [floodgate] Took 465ms to boot Floodgate
[01:24:59] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.219-SNAPSHOT
[01:24:59] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[01:24:59] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[01:24:59] [Server thread/INFO]: [dynmap] Loading server plugin dynmap v3.5-beta-3-866
[01:24:59] [Server thread/INFO]: [dynmap] version=git-Paper-471 (MC: 1.19.4)
[01:24:59] [Server thread/INFO]: [dynmap] Mod Support API available
[01:24:59] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.37
[01:24:59] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.7.0-23w12a-SNAPSHOT
[01:24:59] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.31-SNAPSHOT (build 2989)
[01:24:59] [Server thread/INFO]: [ClansLite] Loading server plugin ClansLite v1.3.8
[01:24:59] [Server thread/INFO]: [SecondThreadAPI] Loading server plugin SecondThreadAPI v1.1.5
[01:24:59] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.1.0-SNAPSHOT
[01:24:59] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[01:24:59] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[01:24:59] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3

[01:24:59] [Server thread/INFO]: [StormerAntiSpam] Loading server plugin StormerAntiSpam v0.0.3
[01:24:59] [Server thread/INFO]: [ElytraSpeed] Loading server plugin ElytraSpeed v1.0.4
[01:24:59] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v2.0.4-SNAPSHOT
[01:24:59] [Server thread/INFO]: [HarmonyScoreboard] Loading server plugin HarmonyScoreboard v2.8.0
[01:24:59] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.2-b807
[01:24:59] [Server thread/INFO]: [BetterEconomy] Loading server plugin BetterEconomy v2.11
[01:24:59] [Server thread/INFO]: [StackMob] Loading server plugin StackMob v5.8.6
[01:24:59] [Server thread/INFO]: [StackMob] Registered WorldGuard region flag.
[01:24:59] [Server thread/INFO]: [AutoPay] Loading server plugin AutoPay v1.0.0
[01:24:59] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.2
[01:24:59] [Server thread/INFO]: [SilkyLITE] Loading server plugin SilkySpawnersLITE v1.0.21-SNAPSHOT
[01:24:59] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.67
[01:24:59] [Server thread/INFO]: [PlayerBountiesPlus] Loading server plugin PlayerBountiesPlus v1.0.0
[01:24:59] [Server thread/INFO]: [BanItem] Loading server plugin BanItem v2.8
[01:24:59] [Server thread/INFO]: [ScoreboardChatShop] Loading server plugin ScoreboardChatShop v1.19.2.a.1
[01:24:59] [Server thread/INFO]: [PlayerKits] Loading server plugin PlayerKits v2.25.1
[01:24:59] [Server thread/INFO]: [Skywars] Loading server plugin Skywars v5.6.13
[01:24:59] [Server thread/INFO]: [BisectHosting] Loading server plugin BisectHosting v1.0.4
[01:24:59] [Server thread/INFO]: [CommandBlockAsPlayer] Loading server plugin CommandBlockAsPlayer v1.19.2.a.2
[01:24:59] [Server thread/INFO]: [StormerWarpsReloaded] Loading server plugin StormerWarpsReloaded v1.0.0
[01:24:59] [Server thread/INFO]: [Parkour] Loading server plugin Parkour v7.2.0
[01:24:59] [Server thread/INFO]: [TNTRun_reloaded] Loading server plugin TNTRun_reloaded v9.24
[01:24:59] [Server thread/INFO]: [StormerHomesReloaded] Loading server plugin StormerHomesReloaded v1.0.0-ALPHA-02
[01:24:59] [Server thread/INFO]: [StormerTPAReloaded] Loading server plugin StormerTPAReloaded v1.0.0-BETA-01
[01:24:59] [Server thread/INFO]: [GlobalTrackedMaps] Loading server plugin GlobalTrackedMaps v1.0.0
[01:24:59] [Server thread/INFO]: [Spleef] Loading server plugin Spleef v2.2.10
[01:24:59] [Server thread/INFO]: [ChatFilter] Loading server plugin ChatFilter v2.0.14
[01:24:59] [Server thread/INFO]: [StormerAntiNetherRoof] Loading server plugin StormerAntiNetherRoof v0.0.2
[01:24:59] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.21
[01:24:59] [Server thread/INFO]: [Spartan] Loading server plugin Spartan vPhase 500
[01:24:59] [Server thread/INFO]: [DisableBreeding] Loading server plugin DisableBreeding v1.0.0
[01:24:59] [Server thread/INFO]: [Themis] Loading server plugin Themis v0.14.6
[01:24:59] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.11.3
[01:24:59] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[01:24:59] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.67
[01:25:01] [Server thread/INFO]:         __    
[01:25:01] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.67
[01:25:01] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[01:25:01] [Server thread/INFO]: 
[01:25:01] [Server thread/INFO]: [LuckPerms] Loading configuration...
[01:25:01] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[01:25:02] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[01:25:03] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[01:25:03] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3702ms)
[01:25:03] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[01:25:03] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[01:25:03] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[01:25:03] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[01:25:03] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.15-SNAPSHOT+6361-de453b9
[01:25:03] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[01:25:03] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[01:25:04] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R3.PaperweightAdapter as the Bukkit adapter
[01:25:05] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b618
[01:25:05] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v2.0.4-SNAPSHOT
[01:25:05] [Server thread/INFO]: Preparing level "Havok"
[01:25:05] [Server thread/INFO]: -------- World Settings For [Havok] --------
[01:25:05] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:05] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:05] [Server thread/INFO]: View Distance: 8
[01:25:05] [Server thread/INFO]: Simulation Distance: 5
[01:25:05] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:05] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:05] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:05] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:05] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:05] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:05] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:05] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:05] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:05] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:05] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:05] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:05] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:07] [Server thread/INFO]: -------- World Settings For [Havok_nether] --------
[01:25:07] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:07] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:07] [Server thread/INFO]: View Distance: 8
[01:25:07] [Server thread/INFO]: Simulation Distance: 5
[01:25:07] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:07] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:07] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:07] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:07] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:07] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:07] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:07] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:07] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:07] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:07] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:07] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:07] [Server thread/INFO]: -------- World Settings For [Havok_the_end] --------
[01:25:07] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:07] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:07] [Server thread/INFO]: View Distance: 8
[01:25:07] [Server thread/INFO]: Simulation Distance: 5
[01:25:07] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:07] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:07] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:07] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:07] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:07] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:07] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:07] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:08] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:08] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:08] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:08] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:08] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:08] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:08] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[01:25:08] [Server thread/INFO]: Time elapsed: 432 ms
[01:25:08] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[01:25:08] [Server thread/INFO]: Time elapsed: 262 ms
[01:25:08] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[01:25:09] [Server thread/INFO]: Time elapsed: 205 ms
[01:25:09] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0-23w12a-SNAPSHOT
[01:25:09] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.4 (762)
[01:25:09] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[01:25:09] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[01:25:09] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-SNAPSHOT+2230-ece376a
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok) TNT ignition is PERMITTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok) Lighters are PERMITTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok) Lava fire is PERMITTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok) Fire spread is UNRESTRICTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Havok'
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok_nether) TNT ignition is PERMITTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok_nether) Lighters are PERMITTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok_nether) Lava fire is PERMITTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok_nether) Fire spread is UNRESTRICTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Havok_nether'
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok_the_end) TNT ignition is PERMITTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok_the_end) Lighters are PERMITTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok_the_end) Lava fire is PERMITTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] (Havok_the_end) Fire spread is UNRESTRICTED.
[01:25:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Havok_the_end'
[01:25:10] [Server thread/INFO]: [WorldGuard] Loading region data...
[01:25:11] [Server thread/INFO]: [IridiumSkyblock] Enabling IridiumSkyblock v3.2.10-hotfix-1.2.1
[01:25:11] [Server thread/INFO]: -------- World Settings For [SkyBlock] --------
[01:25:11] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:11] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:11] [Server thread/INFO]: View Distance: 8
[01:25:11] [Server thread/INFO]: Simulation Distance: 5
[01:25:11] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:11] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:11] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:11] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:11] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:11] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:11] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:12] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock
[01:25:12] [Server thread/INFO]: Time elapsed: 511 ms
[01:25:12] [Server thread/INFO]: [WorldGuard] (SkyBlock) TNT ignition is PERMITTED.
[01:25:12] [Server thread/INFO]: [WorldGuard] (SkyBlock) Lighters are PERMITTED.
[01:25:12] [Server thread/INFO]: [WorldGuard] (SkyBlock) Lava fire is PERMITTED.
[01:25:12] [Server thread/INFO]: [WorldGuard] (SkyBlock) Fire spread is UNRESTRICTED.
[01:25:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SkyBlock'
[01:25:12] [Server thread/INFO]: -------- World Settings For [SkyBlock_nether] --------
[01:25:12] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:12] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:12] [Server thread/INFO]: View Distance: 8
[01:25:12] [Server thread/INFO]: Simulation Distance: 5
[01:25:12] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:12] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:12] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:12] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:12] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:12] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:12] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:12] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:12] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:12] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:12] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:12] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:12] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:12] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock_nether
[01:25:12] [Server thread/INFO]: Time elapsed: 94 ms
[01:25:13] [Server thread/INFO]: [WorldGuard] (SkyBlock_nether) TNT ignition is PERMITTED.
[01:25:13] [Server thread/INFO]: [WorldGuard] (SkyBlock_nether) Lighters are PERMITTED.
[01:25:13] [Server thread/INFO]: [WorldGuard] (SkyBlock_nether) Lava fire is PERMITTED.
[01:25:13] [Server thread/INFO]: [WorldGuard] (SkyBlock_nether) Fire spread is UNRESTRICTED.
[01:25:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SkyBlock_nether'
[01:25:13] [Server thread/INFO]: -------- World Settings For [SkyBlock_the_end] --------
[01:25:13] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:13] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:13] [Server thread/INFO]: View Distance: 8
[01:25:13] [Server thread/INFO]: Simulation Distance: 5
[01:25:13] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:13] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:13] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:13] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:13] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:13] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:13] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:13] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:13] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:13] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:13] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:13] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:13] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:13] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock_the_end
[01:25:13] [Server thread/INFO]: Time elapsed: 116 ms
[01:25:13] [Server thread/INFO]: [WorldGuard] (SkyBlock_the_end) TNT ignition is PERMITTED.
[01:25:13] [Server thread/INFO]: [WorldGuard] (SkyBlock_the_end) Lighters are PERMITTED.
[01:25:13] [Server thread/INFO]: [WorldGuard] (SkyBlock_the_end) Lava fire is PERMITTED.
[01:25:13] [Server thread/INFO]: [WorldGuard] (SkyBlock_the_end) Fire spread is UNRESTRICTED.
[01:25:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SkyBlock_the_end'
[01:25:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iridiumskyblock [3.2.10-hotfix-1.2.1]
[01:25:13] [Server thread/INFO]: [IridiumSkyblock] Successfully registered 77 placeholders with PlaceholderAPI.
[01:25:13] [Server thread/INFO]: [IridiumSkyblock] ----------------------------------------
[01:25:13] [Server thread/INFO]: [IridiumSkyblock] 
[01:25:13] [Server thread/INFO]: [IridiumSkyblock] IridiumSkyblock Enabled!
[01:25:13] [Server thread/INFO]: [IridiumSkyblock] Version: 3.2.10-hotfix-1.2.1
[01:25:13] [Server thread/INFO]: [IridiumSkyblock] 
[01:25:13] [Server thread/INFO]: [IridiumSkyblock] ----------------------------------------
[01:25:13] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b??-65e4de4)
[01:25:14] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.219-SNAPSHOT
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
[01:25:14] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
[01:25:14] [Server thread/INFO]: [mcMMO] Platform String: 1.19.4-R0.1-SNAPSHOT
[01:25:14] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.4
[01:25:14] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[01:25:14] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
[01:25:14] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
[01:25:14] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
[01:25:14] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
[01:25:14] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
[01:25:18] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
[01:25:18] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
[01:25:18] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
[01:25:18] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
[01:25:18] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
[01:25:18] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
[01:25:18] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
[01:25:18] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
[01:25:18] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
[01:25:19] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file..
[01:25:19] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[01:25:19] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[01:25:19] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
[01:25:19] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
[01:25:19] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
[01:25:19] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
[01:25:19] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
[01:25:19] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
[01:25:19] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
[01:25:19] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[01:25:19] [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--].
[01:25:19] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[01:25:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Hunger-Games1
[01:25:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[01:25:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Skywars_xmas
[01:25:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[01:25:20] [Server thread/INFO]: -------- World Settings For [LifeSteel] --------
[01:25:20] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:20] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:20] [Server thread/INFO]: View Distance: 8
[01:25:20] [Server thread/INFO]: Simulation Distance: 5
[01:25:20] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:20] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:20] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:20] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:20] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:20] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:20] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:20] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:20] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:20] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:20] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:20] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:20] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:20] [Server thread/INFO]: Preparing start region for dimension minecraft:lifesteel
[01:25:23] [Server thread/INFO]: Time elapsed: 3011 ms
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel) TNT ignition is PERMITTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel) Lighters are PERMITTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel) Lava fire is PERMITTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel) Fire spread is UNRESTRICTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'LifeSteel'
[01:25:23] [Server thread/INFO]: -------- World Settings For [LifeSteel_the_end] --------
[01:25:23] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:23] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:23] [Server thread/INFO]: View Distance: 8
[01:25:23] [Server thread/INFO]: Simulation Distance: 5
[01:25:23] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:23] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:23] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:23] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:23] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:23] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:23] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:23] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:23] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:23] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:23] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:23] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:23] [Server thread/INFO]: Preparing start region for dimension minecraft:lifesteel_the_end
[01:25:23] [Server thread/INFO]: Time elapsed: 65 ms
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel_the_end) TNT ignition is PERMITTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel_the_end) Lighters are PERMITTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel_the_end) Lava fire is PERMITTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel_the_end) Fire spread is UNRESTRICTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'LifeSteel_the_end'
[01:25:23] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: skywars
[01:25:23] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[01:25:23] [Server thread/INFO]: -------- World Settings For [LifeSteel_nether] --------
[01:25:23] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:23] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:23] [Server thread/INFO]: View Distance: 8
[01:25:23] [Server thread/INFO]: Simulation Distance: 5
[01:25:23] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:23] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:23] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:23] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:23] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:23] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:23] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:23] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:23] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:23] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:23] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:23] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:23] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:23] [Server thread/INFO]: Preparing start region for dimension minecraft:lifesteel_nether
[01:25:23] [Server thread/INFO]: Time elapsed: 69 ms
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel_nether) TNT ignition is PERMITTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel_nether) Lighters are PERMITTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel_nether) Lava fire is PERMITTED.
[01:25:23] [Server thread/INFO]: [WorldGuard] (LifeSteel_nether) Fire spread is UNRESTRICTED.
[01:25:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'LifeSteel_nether'
[01:25:24] [Server thread/INFO]: -------- World Settings For [skywars1] --------
[01:25:24] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:24] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:24] [Server thread/INFO]: View Distance: 8
[01:25:24] [Server thread/INFO]: Simulation Distance: 5
[01:25:24] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:24] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:24] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:24] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:24] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:24] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:24] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:24] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:24] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:24] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:24] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:24] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:24] [Server thread/INFO]: Preparing start region for dimension minecraft:skywars1
[01:25:24] [Server thread/INFO]: Time elapsed: 218 ms
[01:25:24] [Server thread/INFO]: [WorldGuard] (skywars1) TNT ignition is PERMITTED.
[01:25:24] [Server thread/INFO]: [WorldGuard] (skywars1) Lighters are PERMITTED.
[01:25:24] [Server thread/INFO]: [WorldGuard] (skywars1) Lava fire is PERMITTED.
[01:25:24] [Server thread/INFO]: [WorldGuard] (skywars1) Fire spread is UNRESTRICTED.
[01:25:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'skywars1'
[01:25:24] [Server thread/INFO]: -------- World Settings For [mcMMO_the_end] --------
[01:25:24] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:24] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:24] [Server thread/INFO]: View Distance: 8
[01:25:24] [Server thread/INFO]: Simulation Distance: 5
[01:25:24] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:24] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:24] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:24] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:24] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:24] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:24] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:24] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:24] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:24] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:24] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:24] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:24] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:24] [Server thread/INFO]: Preparing start region for dimension minecraft:mcmmo_the_end
[01:25:25] [Server thread/INFO]: Time elapsed: 559 ms
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO_the_end) TNT ignition is PERMITTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO_the_end) Lighters are PERMITTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO_the_end) Lava fire is PERMITTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO_the_end) Fire spread is UNRESTRICTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mcMMO_the_end'
[01:25:25] [Server thread/INFO]: -------- World Settings For [mcMMO_nether] --------
[01:25:25] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:25] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:25] [Server thread/INFO]: View Distance: 8
[01:25:25] [Server thread/INFO]: Simulation Distance: 5
[01:25:25] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:25] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:25] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:25] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:25] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:25] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:25] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:25] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:25] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:25] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:25] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:25] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:25] [Server thread/INFO]: Preparing start region for dimension minecraft:mcmmo_nether
[01:25:25] [Server thread/INFO]: Time elapsed: 30 ms
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO_nether) TNT ignition is PERMITTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO_nether) Lighters are PERMITTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO_nether) Lava fire is PERMITTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO_nether) Fire spread is UNRESTRICTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mcMMO_nether'
[01:25:25] [Server thread/INFO]: -------- World Settings For [mcMMO] --------
[01:25:25] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:25] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:25] [Server thread/INFO]: View Distance: 8
[01:25:25] [Server thread/INFO]: Simulation Distance: 5
[01:25:25] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:25] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:25] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:25] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:25] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:25] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:25] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:25] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:25] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:25] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:25] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:25] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:25] [Server thread/INFO]: Preparing start region for dimension minecraft:mcmmo
[01:25:25] [Server thread/INFO]: Time elapsed: 44 ms
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO) TNT ignition is PERMITTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO) Lighters are PERMITTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO) Lava fire is PERMITTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] (mcMMO) Fire spread is UNRESTRICTED.
[01:25:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mcMMO'
[01:25:25] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Hunger-Games
[01:25:25] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[01:25:25] [Server thread/INFO]: -------- World Settings For [SkyBlock-Spawn] --------
[01:25:25] [Server thread/INFO]: Item Merge Radius: -1.0
[01:25:25] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:25:25] [Server thread/INFO]: View Distance: 8
[01:25:25] [Server thread/INFO]: Simulation Distance: 5
[01:25:25] [Server thread/INFO]: Mob Spawn Range: 6
[01:25:25] [Server thread/INFO]: Item Despawn Rate: 6000
[01:25:25] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:25:25] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:25:25] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:25:25] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:25:25] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:25:25] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:25:25] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:25:25] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:25:25] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:25:25] [Server thread/INFO]: Max TNT Explosions: 100
[01:25:25] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:25:26] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock-spawn
[01:25:26] [Server thread/INFO]: Time elapsed: 108 ms
[01:25:26] [Server thread/INFO]: [WorldGuard] (SkyBlock-Spawn) TNT ignition is PERMITTED.
[01:25:26] [Server thread/INFO]: [WorldGuard] (SkyBlock-Spawn) Lighters are PERMITTED.
[01:25:26] [Server thread/INFO]: [WorldGuard] (SkyBlock-Spawn) Lava fire is PERMITTED.
[01:25:26] [Server thread/INFO]: [WorldGuard] (SkyBlock-Spawn) Fire spread is UNRESTRICTED.
[01:25:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SkyBlock-Spawn'
[01:25:26] [Server thread/INFO]: [Multiverse-Core] 14 - World(s) loaded.
[01:25:26] [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.
[01:25:26] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[01:25:26] [Server thread/INFO]: [dynmap] Enabling dynmap v3.5-beta-3-866
[01:25:27] [Server thread/INFO]: [dynmap] Added 19 custom biome mappings
[01:25:27] [Server thread/INFO]: [dynmap] Using LuckPerms 5.4.67 for access control
[01:25:27] [Server thread/INFO]: [dynmap] Mod Support processing completed
[01:25:33] [Server thread/INFO]: [dynmap] Loaded 27 shaders.
[01:25:33] [Server thread/INFO]: [dynmap] Loaded 83 perspectives.
[01:25:33] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[01:25:33] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[01:25:33] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[01:25:34] [Server thread/INFO]: [dynmap] Web server started on address 66.70.221.247:8123
[01:25:34] [Server thread/INFO]: [dynmap] version 3.5-beta-3-866 is enabled - core version 3.5-beta-3-866
[01:25:34] [Server thread/INFO]: [dynmap] For support, visit our Discord at https://discord.gg/s3rd5qn
[01:25:34] [Server thread/INFO]: [dynmap] For news, visit https://reddit.com/r/Dynmap or follow https://universeodon.com/@dynmap
[01:25:34] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[01:25:34] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Havok'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Havok_nether'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Havok_the_end'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'SkyBlock'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'SkyBlock_nether'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'SkyBlock_the_end'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'LifeSteel'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 18 pending tile renders for world 'LifeSteel'
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'LifeSteel_the_end'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'LifeSteel_nether'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'skywars1'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'mcMMO_the_end'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 12563767 pending tile renders for world 'mcMMO_the_end'
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'mcMMO_nether'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'mcMMO'.
[01:25:34] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'SkyBlock-Spawn'.
[01:25:34] [Server thread/INFO]: [dynmap] Enabled
[01:25:34] [Server thread/INFO]: [spark] Enabling spark v1.10.37
[01:25:35] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[01:25:35] [Server thread/INFO]: [spark] Starting background profiler...
[01:25:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.37]
[01:25:35] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[01:25:35] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.7.0-23w12a-SNAPSHOT
[01:25:35] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 2989)
[01:25:35] [Server thread/INFO]: [Citizens] Loading external libraries
[01:25:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[01:25:36] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[01:25:36] [Server thread/INFO]: [ClansLite] Enabling ClansLite v1.3.8
[01:25:36] [Server thread/INFO]: [ClansLite] -------------------------------------------
[01:25:36] [Server thread/INFO]: [ClansLite] ClansLite: A supported Minecraft version has been detected
[01:25:36] [Server thread/INFO]: [ClansLite] ClansLite: Continuing plugin startup
[01:25:36] [Server thread/INFO]: [ClansLite] -------------------------------------------
[01:25:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: clansLite [1.3.8]
[01:25:36] [Server thread/INFO]: [ClansLite] -------------------------------------------
[01:25:36] [Server thread/INFO]: [ClansLite] ClansLite: PlaceholderAPI found!
[01:25:36] [Server thread/INFO]: [ClansLite] ClansLite: External placeholders enabled!
[01:25:36] [Server thread/INFO]: [ClansLite] -------------------------------------------
[01:25:36] [Server thread/INFO]: [ClansLite] -------------------------------------------
[01:25:36] [Server thread/INFO]: [ClansLite] ClansLite: FloodgateApi found!
[01:25:36] [Server thread/INFO]: [ClansLite] ClansLite: Full Bedrock support enabled!
[01:25:36] [Server thread/INFO]: [ClansLite] -------------------------------------------
[01:25:36] [Server thread/INFO]: [ClansLite] -------------------------------------------
[01:25:36] [Server thread/INFO]: [ClansLite] ClansLite: Plugin by: Loving11ish
[01:25:36] [Server thread/INFO]: [ClansLite] ClansLite: has been loaded successfully
[01:25:36] [Server thread/INFO]: [ClansLite] ClansLite: Plugin Version: 1.3.8
[01:25:36] [Server thread/INFO]: [ClansLite] -------------------------------------------
[01:25:36] [Server thread/INFO]: [SecondThreadAPI] Enabling SecondThreadAPI v1.1.5*
[01:25:36] [Server thread/INFO]: [SecondThreadAPI] Current MinecraftVersion is V1_19
[01:25:36] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.1.0-SNAPSHOT
[01:25:36] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3

[01:25:36] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[01:25:36] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[01:25:36] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /66.70.221.247:9898.
Redacted
[01:25:36] [Server thread/INFO]: [StormerAntiSpam] Enabling StormerAntiSpam v0.0.3
[01:25:36] [Server thread/INFO]: [ElytraSpeed] Enabling ElytraSpeed v1.0.4
[01:25:36] [Server thread/INFO]: [ElytraSpeed] Found spark plugin, using it as the TPS provider.
[01:25:36] [Server thread/INFO]: [HarmonyScoreboard] Enabling HarmonyScoreboard v2.8.0
[01:25:36] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.2-b807
[01:25:36] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.2-b807]  Enabled - By Rigby and fernferret
[01:25:36] [Server thread/INFO]: [BetterEconomy] Enabling BetterEconomy v2.11
[01:25:36] [Server thread/INFO]: [StackMob] Enabling StackMob v5.8.6
[01:25:37] [Server thread/INFO]: [StackMob] StackMob v5.8.6 by antiPerson and contributors.
[01:25:37] [Server thread/INFO]: [StackMob] GitHub: https://github.com/Nathat23/StackMob-5 Discord: https://discord.gg/fz9xzuB
[01:25:37] [Server thread/INFO]: [StackMob] Loading config files...
[01:25:37] [Server thread/INFO]: [StackMob] Registering hooks and trait checks...
[01:25:37] [Server thread/INFO]: [StackMob] Registering events, commands and tasks...
[01:25:37] [Server thread/INFO]: [StackMob] Detected CraftBukkit NMS version V1_19_R3
[01:25:37] [Server thread/INFO]: [AutoPay] Enabling AutoPay v1.0.0
[01:25:37] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.2
Redacted
[01:25:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.2]
[01:25:37] [Server thread/INFO]: [SilkyLITE] Enabling SilkySpawnersLITE v1.0.21-SNAPSHOT
[01:25:37] [Server thread/INFO]: [SilkySpawners] Loading NMS version 1.19 [POST 1.17]
[01:25:37] [Server thread/INFO]: [SilkySpawners] Checking for new verison...
[01:25:37] [Server thread/INFO]: [SilkySpawners] Plugin is up-to-date.
[01:25:37] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.67
[01:25:37] [Server thread/INFO]: [PlayerBountiesPlus] Enabling PlayerBountiesPlus v1.0.0
[01:25:37] [Server thread/INFO]: [BanItem] Enabling BanItem v2.8*
[01:25:37] [Server thread/INFO]: [BanItem] BanItem is now Enabled!
[01:25:37] [Server thread/INFO]: [BanItem] made by: [abcalvin]
[01:25:37] [Server thread/INFO]: BanItem's config.yml detected
[01:25:37] [Server thread/INFO]: [ScoreboardChatShop] Enabling ScoreboardChatShop v1.19.2.a.1
[01:25:37] [Server thread/INFO]: [ScoreboardChatShop] ScoreboardChatShop from TheTealViper initializing!
[01:25:37] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.25.1
[01:25:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.25.1]
[01:25:38] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.25.1
[01:25:38] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[01:25:38] [Server thread/INFO]: [Skywars] Enabling Skywars v5.6.13
[01:25:38] [Server thread/INFO]: [Skywars] Loading support for v1_19_R3
[01:25:38] [Server thread/INFO]: [Skywars] [DEBUG] spawn null? false
[01:25:38] [Server thread/INFO]: [Skywars] [DEBUG] spawn.world null? false
[01:25:38] [Server thread/INFO]: [Skywars] Debug mode enabled
[01:25:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: swr [5.6.13]
[01:25:38] [Server thread/INFO]: [Skywars] [DEBUG] spawn null? false
[01:25:38] [Server thread/INFO]: [Skywars] [DEBUG] spawn.world null? false
[01:25:38] [Server thread/INFO]: Default chest type of map skywars is CHESTNORMAL
[01:25:38] [Server thread/INFO]: Default chest type of mapskywars started with CHEST and is set to CHESTNORMAL
[01:25:38] [Server thread/INFO]: [Skywars] Registered Map skywars!
[01:25:38] [Server thread/INFO]: Default chest type of map Skywars_xmas is CHESTNORMAL
[01:25:38] [Server thread/INFO]: Default chest type of mapSkywars_xmas started with CHEST and is set to CHESTNORMAL
[01:25:38] [Server thread/INFO]: [Skywars] Registered Map Skywars_xmas!
[01:25:38] [Server thread/INFO]: [BisectHosting] Enabling BisectHosting v1.0.4
[01:25:38] [Server thread/INFO]: [CommandBlockAsPlayer] Enabling CommandBlockAsPlayer v1.19.2.a.2
[01:25:38] [Server thread/INFO]: [CommandBlockAsPlayer] CommandBlockAsPlayer from TheTealViper initializing!
[01:25:38] [Server thread/INFO]: [StormerWarpsReloaded] Enabling StormerWarpsReloaded v1.0.0
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.test16.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-6366.586894267474,y=157.0,z=7313.779679871086,pitch=18.900023,yaw=-51.297985},test16}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.warm_ocean.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=3065.2069447072377,y=65.0,z=7028.585673753458,pitch=34.553173,yaw=95.88738},warm_ocean}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.castle.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-396.6294874376441,y=62.420089060978974,z=2538.407144033518,pitch=3.2979116,yaw=-179.67476},castle}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.congress.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=553.4670611480653,y=91.2902665846967,z=264.9511145259739,pitch=10.949739,yaw=-93.94379},congress}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.SkyBlock.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=SkyBlock-Spawn},x=-41.51620286002141,y=128.0,z=43.38989529834745,pitch=3.7499332,yaw=-89.55137},SkyBlock}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.arena.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1099.9082091279122,y=66.0,z=2045.3295557085119,pitch=-0.3000064,yaw=1.5003967},arena}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.spleef_hub.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=2148.4683236394626,y=220.0,z=2624.8799364887827,pitch=13.19988,yaw=1.4224854},spleef_hub}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.opOnly.)
[01:25:38] [Server thread/INFO]: [Warps]  [ERROR] Invalid configuration for warp : (warps.opOnly.)
[01:25:38] [Server thread/INFO]: [Warps]  [ERROR] Invalid x
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.dark_forest.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=313.3505978190489,y=63.0,z=1670.2818588340226,pitch=9.032172,yaw=11.694031},dark_forest}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.maze-hub.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=2472.5675563016953,y=103.0,z=4597.55570492263,pitch=35.54986,yaw=74.68561},maze-hub}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.savanna.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=2299.736452458337,y=67.0,z=1618.2250510342244,pitch=13.133833,yaw=-68.93608},savanna}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.builds.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-2225.738941524388,y=80.0,z=-6917.673725272288,pitch=-1.2000268,yaw=-178.021},builds}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.parkour-hub.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-3406.432948408945,y=112.0,z=-2385.193000577463,pitch=50.485596,yaw=-176.60767},parkour-hub}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.pitch.)
[01:25:38] [Server thread/INFO]: [Warps]  [ERROR] Invalid configuration for warp : (warps.pitch.)
[01:25:38] [Server thread/INFO]: [Warps]  [ERROR] Invalid x
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.frozen_ocean.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-300.8580300105541,y=63.0,z=261.43067653397446,pitch=20.881056,yaw=-5.7682548},frozen_ocean}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.ice-racing.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-3360.0951827520003,y=169.0,z=-2057.8888785132426,pitch=25.65013,yaw=42.728394},ice-racing}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.snowy_plains.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[Redacted
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=2908.3472384063857,y=64.0,z=-3202.3545817564795,pitch=10.499946,yaw=-110.121735},snowy_plains}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.birch.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1117.3032037520284,y=67.0,z=1259.300000011921,pitch=6.1459928,yaw=146.90247},birch}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.jail.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=511.5409926739321,y=62.96487012673563,z=257.2337224822829,pitch=13.949887,yaw=-87.79559},jail}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.maze-lvl3.)
817580412928)
05181029)

[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=576.4953519292992,y=64.11433031689474,z=219.2207338544224,pitch=13.4998665,yaw=-2.4451075},court}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.maze-lvl2.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1990.400442333261,y=63.0,z=4115.390001896435,pitch=36.600323,yaw=-72.898865},maze-lvl2}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.maze-lvl1.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=2269.2544082612703,y=71.0,z=4839.351551041289,pitch=86.85018,yaw=-0.8232422},maze-lvl1}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.badlands.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-1042.196313674495,y=90.0,z=3993.325558522156,pitch=23.61548,yaw=-47.543842},badlands}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.ocean.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1072.340031705308,y=63.0,z=619.3969697866664,pitch=4.6269007,yaw=-57.925354},ocean}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.minigames.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=3919.227863440181,y=174.0,z=5443.494254407199,pitch=46.500057,yaw=-115.81821},minigames}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.jungle.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1717.4072807636646,y=85.0,z=1395.2813500825862,pitch=19.425848,yaw=-49.002636},jungle}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.skywars-in-game.)
[01:25:38] [Server thread/INFO]: [Warps]  [ERROR] Invalid world name for warp : (warps.skywars-in-game.)
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.language-hub.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1906.3788449523665,y=68.0,z=1595.412523569389,pitch=-28.350052,yaw=10.950775},language-hub}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.forest.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=859.5409624835937,y=74.0,z=966.7933230004539,pitch=26.957502,yaw=-168.43753},forest}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.shop.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1134.6887741632443,y=125.0,z=901.0738008410038,pitch=23.159843,yaw=45.347466},shop}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.racing.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=3613.2428830059293,y=94.44545770925207,z=5754.090317499011,pitch=17.09998,yaw=34.2},racing}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.game-types.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=7222.99820057393,y=130.0,z=127.04582177653296,pitch=-16.800053,yaw=-0.27752686},game-types}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.world.)
[01:25:38] [Server thread/INFO]: [Warps]  [ERROR] Invalid configuration for warp : (warps.world.)
[01:25:38] [Server thread/INFO]: [Warps]  [ERROR] Invalid x
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.plains.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=628.4733856148291,y=71.0,z=4150.8609344833685,pitch=21.209824,yaw=108.64775},plains}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.frozen_peaks.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=3390.006948323909,y=161.91691494308915,z=2914.5390999431434,pitch=28.932674,yaw=-106.265884},frozen_peaks}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.skywars_hub.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1766.3837588183364,y=126.19116796920918,z=2462.523041942449,pitch=41.550014,yaw=149.96484},skywars_hub}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.taiga.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp

[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=352.5072150704254,y=80.0,z=-266.2509179004597,pitch=32.882046,yaw=51.297333},taiga}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.Mangrove_swamp.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=5765.174763382869,y=65.0,z=-5938.640026535341,pitch=44.9999,yaw=-124.90643},Mangrove_swamp}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.test20.)

[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=459.1168531188195,y=63.0,z=-1824.6474844653646,pitch=21.450045,yaw=-112.51898},test20}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.karea.)

[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=2476.1944277910907,y=95.0,z=2059.861015749178,pitch=31.949936,yaw=-39.6333},karea}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.swamp.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=569.6227381214098,y=67.0,z=2226.4925125789987,pitch=33.79353,yaw=32.53964},swamp}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.TNT_Run_hub.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1993.425379530044,y=126.0,z=2377.5100735652113,pitch=33.300137,yaw=144.58156},TNT_Run_hub}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.yaw.)
[01:25:38] [Server thread/INFO]: [Warps]  [ERROR] Invalid configuration for warp : (warps.yaw.)
[01:25:38] [Server thread/INFO]: [Warps]  [ERROR] Invalid x
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.kits.)
[01:25:38] [Server thread/INFO]: [Warps] Created warp
[01:25:38] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1409.3322416208853,y=64.0,z=-1849.4814340343266,pitch=-8.249958,yaw=90.14697},kits}]
[01:25:38] [Server thread/INFO]: [Warps] Attempting to load warp (warps.ice-racing-hub.)
[01:25:39] [Server thread/INFO]: [Warps] Created warp
[01:25:39] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-644.5846620847843,y=127.0,z=373.5187104197581,pitch=74.85001,yaw=-120.62282},ice-racing-hub}]
[01:25:39] [Server thread/INFO]: [Warps] Attempting to load warp (warps.test4.)
[01:25:39] [Server thread/INFO]: [Warps] Created warp
[01:25:39] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-5719.81591459401,y=64.89299925750221,z=-5858.167915498934,pitch=-0.29272726,yaw=-89.159546},test4}]
[01:25:39] [Server thread/INFO]: [Warps] Attempting to load warp (warps.mcMMO-spawn.)
[01:25:39] [Server thread/INFO]: [Warps] Created warp
[01:25:39] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=mcMMO},x=93.9530795827496,y=131.0,z=37.01610554973386,pitch=-24.300024,yaw=0.001953125},mcMMO-spawn}]
[01:25:39] [Server thread/INFO]: [Warps] Attempting to load warp (warps.spawn.)
[01:25:39] [Server thread/INFO]: [Warps] Created warp
[01:25:39] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-700.9866422481285,y=130.0,z=-6185.021940583392,pitch=-23.399998,yaw=0.17599638},spawn}]
[01:25:39] [Server thread/INFO]: [Warps] Attempting to load warp (warps.test8.)
[01:25:39] [Server thread/INFO]: [Warps] Created warp
[01:25:39] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=1111.986,y=172.0,z=413.00607,pitch=13.263535,yaw=-145.41757},test8}]
[01:25:39] [Server thread/INFO]: [Warps] Attempting to load warp (warps.old_growth_pine_taiga.)
[01:25:39] [Server thread/INFO]: [Warps] Created warp
[01:25:39] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=-52.53614706591839,y=87.0,z=-466.85855424862103,pitch=15.868359,yaw=15.616028},old_growth_pine_taiga}]
[01:25:39] [Server thread/INFO]: [Warps] Attempting to load warp (warps.x.)
[01:25:39] [Server thread/INFO]: [Warps]  [ERROR] Invalid configuration for warp : (warps.x.)
[01:25:39] [Server thread/INFO]: [Warps]  [ERROR] Invalid x
[01:25:39] [Server thread/INFO]: [Warps] Attempting to load warp (warps.y.)
[01:25:39] [Server thread/INFO]: [Warps]  [ERROR] Invalid configuration for warp : (warps.y.)
[01:25:39] [Server thread/INFO]: [Warps]  [ERROR] Invalid x
[01:25:39] [Server thread/INFO]: [Warps] Attempting to load warp (warps.z.)
[01:25:39] [Server thread/INFO]: [Warps]  [ERROR] Invalid configuration for warp : (warps.z.)
[01:25:39] [Server thread/INFO]: [Warps]  [ERROR] Invalid x
[01:25:39] [Server thread/INFO]: [Warps] Attempting to load warp (warps.Desert.)
[01:25:39] [Server thread/INFO]: [Warps] Created warp
[01:25:39] [Server thread/INFO]: [Warps] [Warp {Location{world=CraftWorld{name=Havok},x=2966.6384152850364,y=70.0,z=7325.681636128934,pitch=36.36005,yaw=173.1464},Desert}]
[01:25:39] [Server thread/INFO]: [Parkour] Enabling Parkour v7.2.0
[01:25:39] [Server thread/INFO]: [Parkour] 4 courses found.
[01:25:39] [Server thread/INFO]: [Parkour] 4 courses cached.
[01:25:39] [Server thread/WARN]: [Parkour] [BountifulAPI] Plugin is missing, link was unsuccessful.
[01:25:39] [Server thread/INFO]: [Parkour] [Vault] Successfully linked. Version: 1.7.3-b131
[01:25:39] [Server thread/INFO]: [Parkour] [Vault] Successfully linked. Version: 1.7.3-b131
[01:25:39] [Server thread/INFO]: [Parkour] [PlaceholderAPI] Successfully linked. Version: 2.11.3
[01:25:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: parkour [7.2.0]
[01:25:39] [Server thread/INFO]: [Parkour] Enabled Parkour v7.2.0
[01:25:39] [Server thread/INFO]: [TNTRun_reloaded] Enabling TNTRun_reloaded v9.24
[01:25:39] [Server thread/INFO]: [TNTRun_reloaded] Successfully linked with mcMMO, version 2.1.219-SNAPSHOT
[01:25:39] [Server thread/INFO]: [TNTRun_reloaded] Successfully linked with PlaceholderAPI, version 2.11.3
[01:25:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tntrun [9.24]
[01:25:39] [Server thread/INFO]: [TNTRun_reloaded] Successfully linked with Vault, version 1.7.3-b131
[01:25:39] [Server thread/INFO]: [TNTRun_reloaded] Vault: economy enabled.
[01:25:39] [Server thread/INFO]: [TNTRun_reloaded] Attempting to start metrics (bStats)...
[01:25:39] [Server thread/INFO]: [StormerHomesReloaded] Enabling StormerHomesReloaded v1.0.0-ALPHA-02
[01:25:40] [Server thread/INFO]: [Homes]Loading all homes...
[01:26:29] [Server thread/INFO]: [Homes]727 homes loaded!
[01:26:29] [Server thread/INFO]: [StormerTPAReloaded] Enabling StormerTPAReloaded v1.0.0-BETA-01
[01:26:29] [Server thread/INFO]: [GlobalTrackedMaps] Enabling GlobalTrackedMaps v1.0.0
[01:26:29] [Server thread/INFO]: GlobalTrackedMaps has been enabled!
[01:26:29] [Server thread/INFO]: [Spleef] Enabling Spleef v2.2.10*
[01:26:29] [Server thread/INFO]: [ChatFilter] Enabling ChatFilter v2.0.14
[01:26:29] [Server thread/INFO]: [ChatFilter] Loaded using locale: en
[01:26:29] [Server thread/INFO]: [ChatFilter] 8 Enabled word filters.
[01:26:29] [Server thread/INFO]: [ChatFilter] 3 Enabled advertising filters.
[01:26:29] [Server thread/INFO]: [ChatFilter] 42 whitelisted items.
[01:26:29] [Server thread/INFO]: [StormerAntiNetherRoof] Enabling StormerAntiNetherRoof v0.0.2
[01:26:29] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[01:26:29] [Server thread/INFO]: [Spartan] Enabling Spartan vPhase 500
[01:26:30] [Server thread/INFO]: [DisableBreeding] Enabling DisableBreeding v1.0.0
[01:26:30] [Server thread/INFO]: [Themis] Enabling Themis v0.14.6
[01:26:31] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.11.3
[01:26:33] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[01:26:33] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.11.3
[01:26:34] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[01:26:34] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[01:26:34] [Server thread/INFO]: [Geyser-Spigot] 
[01:26:34] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.1.0-SNAPSHOT (git-master-96260cc)
[01:26:34] [Server thread/INFO]: [Geyser-Spigot] 
[01:26:34] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[01:26:40] [Network Listener - #2/INFO]: [Geyser-Spigot] Started Geyser on 66.70.221.247:19132
[01:26:40] [Server thread/INFO]: [Geyser-Spigot] Done (5.994s)! Run /geyser help for help!
[01:26:40] [Server thread/INFO]: Running delayed init tasks
[01:26:40] [Craft Scheduler Thread - 4 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[01:26:40] [Server thread/INFO]: [Chunky] No tasks to continue.

[01:26:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[01:26:40] [Server thread/INFO]: 1 placeholder hook(s) registered!
[01:26:40] [pool-135-thread-1/INFO]: [Spartan Notification] Done loading 14941 rows of data to the Research Engine.
[01:26:41] [Server thread/INFO]: [Citizens] Loaded 61 NPCs.
[01:26:41] [Server thread/INFO]: Done (114.221s)! For help, type "help"
[01:26:41] [Server thread/INFO]: Timings Reset
[01:26:42] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[01:26:42] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[01:26:42] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[01:26:43] [Craft Scheduler Thread - 11 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.11.3
[01:26:44] [Server thread/INFO]: -------- World Settings For [skywars] --------
[01:26:44] [Server thread/INFO]: Item Merge Radius: -1.0
[01:26:44] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:26:44] [Server thread/INFO]: View Distance: 8
[01:26:44] [Server thread/INFO]: Simulation Distance: 5
[01:26:44] [Server thread/INFO]: Mob Spawn Range: 6
[01:26:44] [Server thread/INFO]: Item Despawn Rate: 6000
[01:26:44] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:26:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:26:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:26:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:26:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:26:44] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:26:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:26:44] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:26:44] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:26:44] [Server thread/INFO]: Max TNT Explosions: 100
[01:26:44] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:26:46] [Server thread/INFO]: [WorldGuard] (skywars) TNT ignition is PERMITTED.
[01:26:46] [Server thread/INFO]: [WorldGuard] (skywars) Lighters are PERMITTED.
[01:26:46] [Server thread/INFO]: [WorldGuard] (skywars) Lava fire is PERMITTED.
[01:26:46] [Server thread/INFO]: [WorldGuard] (skywars) Fire spread is UNRESTRICTED.
[01:26:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'skywars'
[01:26:46] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'skywars'.
[01:26:46] [Server thread/INFO]: [Skywars] com.walrusone.skywarsreloaded.game.GameMap#loadMap: world null ? false
[01:26:46] [Server thread/INFO]: -------- World Settings For [Skywars_xmas] --------
[01:26:46] [Server thread/INFO]: Item Merge Radius: -1.0
[01:26:46] [Server thread/INFO]: Experience Merge Radius: -1.0
[01:26:46] [Server thread/INFO]: View Distance: 8
[01:26:46] [Server thread/INFO]: Simulation Distance: 5
[01:26:46] [Server thread/INFO]: Mob Spawn Range: 6
[01:26:46] [Server thread/INFO]: Item Despawn Rate: 6000
[01:26:46] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[01:26:46] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:26:46] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:26:46] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:26:46] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:26:46] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[01:26:46] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:26:46] [Server thread/INFO]: Hopper Transfer: 64 Hopper Check: 200 Hopper Amount: 10000 Hopper Can Load Chunks: false
[01:26:46] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:26:46] [Server thread/INFO]: Max TNT Explosions: 100
[01:26:46] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:26:47] [Server thread/INFO]: [WorldGuard] (Skywars_xmas) TNT ignition is PERMITTED.
[01:26:47] [Server thread/INFO]: [WorldGuard] (Skywars_xmas) Lighters are PERMITTED.
[01:26:47] [Server thread/INFO]: [WorldGuard] (Skywars_xmas) Lava fire is PERMITTED.
[01:26:47] [Server thread/INFO]: [WorldGuard] (Skywars_xmas) Fire spread is UNRESTRICTED.
[01:26:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Skywars_xmas'
[01:26:47] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Skywars_xmas'.
[01:26:47] [Server thread/INFO]: [Skywars] com.walrusone.skywarsreloaded.game.GameMap#loadMap: world null ? false
[01:26:48] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7218ms or 144 ticks behind
[01:26:49] [Server thread/INFO]: [Spleef] Vault found
[01:26:49] [Server thread/INFO]: [Spleef] PlaceholderAPI found
[01:26:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spleef [2.2.10]
[01:26:49] [Server thread/INFO]: [Spleef] Loading the data of all the players... (This may take a few seconds)
[01:26:49] [Server thread/INFO]: [Spleef] Data loaded in 97 ms
[01:26:49] [Server thread/INFO]: [Spleef] 2 spleefs found
[01:26:51] [pool-166-thread-1/INFO]: [Spleef] [Updater]
[01:26:51] [pool-166-thread-1/INFO]: [Spleef] [Updater] Checking for new versions...
[01:26:51] [pool-166-thread-1/INFO]: [Spleef] [Updater]
[01:26:51] [pool-166-thread-1/INFO]: [Spleef] [Updater] Local version: 2.2.10
[01:26:51] [pool-166-thread-1/INFO]: [Spleef] [Updater] Online version: 2.2.10
[01:26:51] [pool-166-thread-1/INFO]: [Spleef] [Updater]
[01:26:51] [pool-166-thread-1/INFO]: [Spleef] [Updater] The plugin is up to date!
[01:26:51] [pool-166-thread-1/INFO]: [Spleef] [Updater]
[01:26:53] [Server thread/INFO]: SWR[skywars] Waiting to start Skywars match... (countdown)
[01:26:53] [Server thread/INFO]: SWR[Skywars_xmas] Waiting to start Skywars match... (countdown)
[01:26:54] [Network Listener - #2/INFO]: [Geyser-Spigot] /71.194.192.121:63911 tried to connect!
[01:26:55] [Network Listener - #2/INFO]: [Geyser-Spigot] Player connected with username ScoreSonic33
[01:26:55] [defaultEventLoopGroup-5-2/INFO]: [Geyser-Spigot] ScoreSonic33 (logged in as: ScoreSonic33) has connected to the Java server
[01:26:56] [Geyser Spigot connection thread-4-3/INFO]: UUID of player .ScoreSonic33 is 00000000-0000-0000-0009-01f734a0b91c
[01:26:56] [Server thread/INFO]: [floodgate] Floodgate player logged in as .ScoreSonic33 joined (UUID: 00000000-0000-0000-0009-01f734a0b91c)
[01:26:57] [Server thread/INFO]: .ScoreSonic33 joined the game
[01:26:57] [Server thread/INFO]: .ScoreSonic33[/        ip        ] logged in with entity id 1109 at ([mcMMO]5373.447, 87.0, 7340.219)
[01:26:57] [Craft Scheduler Thread - 12 - Skywars/WARN]: Now saving stats of player .ScoreSonic33
[01:27:42] [Server thread/INFO]: There are 1 of a max of 10000 players online: .ScoreSonic33
[01:27:48] [Server thread/INFO]: .ScoreSonic33 issued server command: /buy magma_Block
[01:28:16] [Server thread/INFO]: .ScoreSonic33 issued server command: /buy soul_sand 1
[01:28:42] [Server thread/INFO]: .ScoreSonic33 issued server command: /buy magma_Block 1
[01:28:43] [Server thread/INFO]: There are 1 of a max of 10000 players online: .ScoreSonic33
[01:29:08] [Server thread/INFO]: .ScoreSonic33 issued server command: /buy soul_sand 32
[01:29:44] [Server thread/INFO]: There are 1 of a max of 10000 players online: .ScoreSonic33
[01:29:44] [Server thread/INFO]: .ScoreSonic33 issued server command: /home Tommy
[01:29:47] [Server thread/WARN]: .ScoreSonic33 moved too quickly! -6.285390000000007,1.0,-18.568900000000212
[01:29:55] [Server thread/INFO]: .ScoreSonic33 issued server command: /home Naruto 
[01:30:20] [User Authenticator #0/INFO]: UUID of player nucklear is cddb82d2-afb6-466c-96a5-d0b4428a26b1
[01:30:20] [Server thread/INFO]: nucklear joined the game
[01:30:20] [Server thread/INFO]: nucklear[/         ip          ] logged in with entity id 1872 at ([Havok]-96284.53979910671, 69.0, -75508.91413397614)
[01:30:20] [Craft Scheduler Thread - 16 - Skywars/WARN]: Now saving stats of player nucklear
[01:30:24] [Server thread/INFO]: nucklear issued server command: /home end
[01:30:32] [Async Chat Thread - #1/INFO]:             chat            
[01:30:38] [Server thread/INFO]: nucklear issued server command: /mvtp LifeSteel
[01:30:43] [Server thread/INFO]: nucklear issued server command: /time set day
[01:30:43] [Server thread/INFO]: [nucklear: Set the time to 1000]
[01:30:45] [Server thread/INFO]: There are 2 of a max of 10000 players online: .ScoreSonic33, nucklear
[01:31:33] [Async Chat Thread - #2/INFO]:                            chat                           
[01:31:46] [Server thread/INFO]: There are 2 of a max of 10000 players online: .ScoreSonic33, nucklear
[01:31:49] [Server thread/INFO]: .ScoreSonic33 issued server command: /home tommy
[01:32:28] [Server thread/INFO]: .ScoreSonic33 issued server command: /home sonic
[01:32:46] [Server thread/INFO]: There are 2 of a max of 10000 players online: nucklear, .ScoreSonic33
[01:33:35] [Network Listener - #3/INFO]: [Geyser-Spigot] /68.49.219.255:55958 tried to connect!
[01:33:36] [Network Listener - #3/INFO]: [Geyser-Spigot] Player connected with username nucklear reaper
[01:33:36] [defaultEventLoopGroup-5-3/INFO]: [Geyser-Spigot] nucklear reaper (logged in as: nucklear_reaper) has connected to the Java server
[01:33:37] [Geyser Spigot connection thread-4-4/INFO]: UUID of player .nucklear_reaper is 00000000-0000-0000-0009-00000b00283e
[01:33:37] [Server thread/INFO]: [floodgate] Floodgate player logged in as .nucklear_reaper joined (UUID: 00000000-0000-0000-0009-00000b00283e)
[01:33:37] [Server thread/INFO]: .nucklear_reaper joined the game
[01:33:37] [Server thread/INFO]: .nucklear_reaper[/       ip        ] logged in with entity id 3138 at ([Havok]-706.5114, 132.0, -6160.9634)
[01:33:37] [Craft Scheduler Thread - 22 - Skywars/WARN]: Now saving stats of player .nucklear_reaper
[01:33:37] [Geyser player thread-3-2/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:33:37] [Geyser player thread-3-2/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:33:37] [Geyser player thread-3-2/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:33:37] [Geyser player thread-3-2/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:33:37] [Geyser player thread-3-2/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:33:37] [Geyser player thread-3-2/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:33:37] [Geyser player thread-3-2/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:33:41] [Server thread/INFO]: nucklear issued server command: /gamemode creative
[01:33:41] [Server thread/INFO]: [nucklear: Set own game mode to Creative Mode]
[01:33:47] [Server thread/INFO]: There are 3 of a max of 10000 players online: nucklear, .ScoreSonic33, .nucklear_reaper
[01:34:12] [Async Chat Thread - #4/INFO]:                    chat                    
[01:34:25] [Geyser player thread-3-2/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:34:33] [Async Chat Thread - #6/INFO]:                      chat                      
[01:34:37] [Server thread/INFO]: .nucklear_reaper issued server command: /tps
[01:34:43] [Server thread/INFO]: nucklear issued server command: /spawn
[01:34:48] [Server thread/INFO]: There are 3 of a max of 10000 players online: .ScoreSonic33, .nucklear_reaper, nucklear
[01:34:59] [Async Chat Thread - #4/INFO]:                             chat                             
[01:35:11] [Server thread/INFO]: .ScoreSonic33 issued server command: /spawn 
[01:35:18] [Async Chat Thread - #6/INFO]:                 chat                 
[01:35:36] [Async Chat Thread - #4/INFO]:                     chat                     
[01:35:37] [Async Chat Thread - #6/INFO]:                      chat                     
[01:35:41] [Async Chat Thread - #6/INFO]:                  chat                  
[01:35:42] [Async Chat Thread - #4/INFO]:                  chat                 
[01:35:42] [Async Chat Thread - #6/INFO]:                 chat                
[01:35:44] [defaultEventLoopGroup-5-2/INFO]: [Geyser-Spigot] ScoreSonic33 has disconnected from the Java server because of Bedrock client disconnected
[01:35:44] [Geyser Spigot connection thread-4-3/INFO]: [floodgate] Floodgate player logged in as .ScoreSonic33 disconnected
[01:35:44] [Server thread/INFO]: .ScoreSonic33 lost connection: Disconnected
[01:35:44] [Server thread/WARN]: Now saving stats of player .ScoreSonic33
[01:35:45] [Server thread/INFO]: .ScoreSonic33 left the game
[01:35:49] [Server thread/INFO]: There are 2 of a max of 10000 players online: .nucklear_reaper, nucklear
[01:36:31] [defaultEventLoopGroup-5-3/INFO]: [Geyser-Spigot] nucklear reaper has disconnected from the Java server because of Bedrock client disconnected
[01:36:31] [Geyser Spigot connection thread-4-4/INFO]: [floodgate] Floodgate player logged in as .nucklear_reaper disconnected
[01:36:31] [Server thread/INFO]: .nucklear_reaper lost connection: Disconnected
[01:36:31] [Server thread/WARN]: Now saving stats of player .nucklear_reaper
[01:36:31] [Server thread/INFO]: .nucklear_reaper left the game
[01:36:50] [Server thread/INFO]: There are 1 of a max of 10000 players online: nucklear
[01:37:28] [Network Listener - #3/INFO]: [Geyser-Spigot] /68.49.219.255:55958 tried to connect!
[01:37:29] [Network Listener - #0/INFO]: [Geyser-Spigot] Player connected with username nucklear reaper
[01:37:29] [defaultEventLoopGroup-5-4/INFO]: [Geyser-Spigot] nucklear reaper (logged in as: nucklear_reaper) has connected to the Java server
[01:37:29] [Geyser Spigot connection thread-4-1/INFO]: UUID of player .nucklear_reaper is 00000000-0000-0000-0009-00000b00283e
[01:37:29] [Server thread/INFO]: [floodgate] Floodgate player logged in as .nucklear_reaper joined (UUID: 00000000-0000-0000-0009-00000b00283e)
[01:37:29] [Server thread/INFO]: .nucklear_reaper joined the game
[01:37:29] [Server thread/INFO]: .nucklear_reaper[/       ip        ] logged in with entity id 55162 at ([Havok]-680.0809, 132.0625, -6164.2666)
[01:37:29] [Craft Scheduler Thread - 22 - Skywars/WARN]: Now saving stats of player .nucklear_reaper
[01:37:29] [Geyser player thread-3-3/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:37:29] [Geyser player thread-3-3/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:37:29] [Geyser player thread-3-3/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:37:29] [Geyser player thread-3-3/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:37:29] [Geyser player thread-3-3/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:37:29] [Geyser player thread-3-3/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:37:50] [Server thread/INFO]: There are 2 of a max of 10000 players online: nucklear, .nucklear_reaper
[01:38:00] [Geyser player thread-3-3/WARN]: [Geyser-Spigot] Could not find an entity definition with type TEXT_DISPLAY
[01:38:51] [Server thread/INFO]: There are 2 of a max of 10000 players online: nucklear, .nucklear_reaper
[01:39:52] [Server thread/INFO]: There are 2 of a max of 10000 players online: nucklear, .nucklear_reaper