Paste #114381: Unnamed Server Log Paste

Date: 2023/08/25 20:47:16 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[07:03:50] [Server thread/INFO]: Starting minecraft server version 1.8.8
[07:03:50] [Server thread/INFO]: Loading properties
[07:03:50] [Server thread/INFO]: Default game type: SURVIVAL
[07:03:50] [Server thread/INFO]: This server is running CraftBukkit version git-PaperSpigot-445 (MC: 1.8.8) (Implementing API version 1.8.8-R0.1-SNAPSHOT)
[07:03:50] [Server thread/INFO]: Debug logging is disabled
[07:03:50] [Server thread/INFO]: Spigot Timings: true - Verbose: true - Interval: 5m - Length: 60m
[07:03:50] [Server thread/INFO]: Server Ping Player Sample Count: 12

[07:03:50] [Server thread/INFO]: Using 4 threads for Netty based IO
[07:03:51] [Server thread/INFO]: Data value allowed items: 
[07:03:51] [Server thread/WARN]: java.lang.NoSuchFieldException: modifiers

[07:03:51] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2663)

[07:03:51] [Server thread/WARN]:     at org.github.paperspigot.PaperSpigotConfig.stackableBuckets(PaperSpigotConfig.java:192)

[07:03:51] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)

[07:03:51] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:578)

[07:03:51] [Server thread/WARN]:     at org.github.paperspigot.PaperSpigotConfig.readConfig(PaperSpigotConfig.java:84)

[07:03:51] [Server thread/WARN]:     at org.github.paperspigot.PaperSpigotConfig.init(PaperSpigotConfig.java:62)

[07:03:51] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:181)

[07:03:51] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:563)

[07:03:51] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)

[07:03:51] [Server thread/INFO]: Generating keypair
[07:03:51] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25440
[07:03:51] [Server thread/INFO]: Using default channel type
[07:03:51] [Server thread/INFO]: Your platform does not provide complete low-level API for accessing direct buffers reliably. Unless explicitly requested, heap buffer will always be preferred to avoid potential system unstability.
[07:03:51] [Server thread/ERROR]: Could not load 'plugins\slimeworldmanager-classmodifier-2.2.1.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:152) ~[patched_1.8.8.jar:git-PaperSpigot-445]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:136) [patched_1.8.8.jar:git-PaperSpigot-445]
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugins(CraftServer.java:293) [patched_1.8.8.jar:git-PaperSpigot-445]
    at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:202) [patched_1.8.8.jar:git-PaperSpigot-445]
    at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:563) [patched_1.8.8.jar:git-PaperSpigot-445]
    at java.lang.Thread.run(Thread.java:1589) [?:?]
Caused by: java.io.FileNotFoundException: Jar does not contain plugin.yml
    ... 6 more
[07:03:51] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[07:03:51] [Server thread/INFO]: [Matrix] Log4j2 seems safe, skipping Log4j2 fixes

[07:03:52] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v6.1.9;caf0ad9
[07:03:52] [Server thread/INFO]: [Bedwars1058-AdminAddon] Loading Bedwars1058-AdminAddon v1.1.6
[07:03:52] [Server thread/INFO]: [SlimeWorldManager] Loading SlimeWorldManager v2.2.1
[07:03:52] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[07:03:52] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.1
[07:03:52] [Server thread/INFO]: [SwearFilter] Loading SwearFilter v1.0
[07:03:52] [Server thread/INFO]: [AntiDisconnectSpam] Loading AntiDisconnectSpam v2.1.1
[07:03:52] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.7.0
[07:03:52] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0 is now loaded. Registering protocol transformers and injecting...
[07:03:52] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[07:03:52] [Server thread/INFO]: [zoom-sendpacket] Loading zoom-sendpacket v1.0
[07:03:52] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.58
[07:03:53] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0
[07:03:54] [Server thread/INFO]: [TAB] Loading TAB v4.0.3
[07:03:54] [Server thread/INFO]: [CommandWhitelist] Loading CommandWhitelist v2.8.1
[07:03:54] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[07:03:54] [Server thread/INFO]: [LPC] Loading LPC v3.6.0
[07:03:54] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.7
[07:03:54] [Server thread/INFO]: [Matrix] Loading Matrix v7.4.1A
[07:03:54] [Server thread/INFO]: [LPX] Loading LPX v3.3.1
[07:03:54] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.32-SNAPSHOT (build 3188)
[07:03:54] [Server thread/INFO]: [BedWars1058] Loading BedWars1058 v23.3
[07:03:54] [Server thread/INFO]: [BedWars1058] Loading support for paper/spigot: v1_8_R3
[07:03:55] [Server thread/INFO]: [BedWars1058-PopUpTowers] Loading BedWars1058-PopUpTowers v0.7
[07:03:55] [Server thread/INFO]: [BattlePass] Loading BattlePass v3.18.4
[07:03:55] [Server thread/INFO]: [SuperVanish] Loading SuperVanish v6.2.16
[07:03:55] [Server thread/INFO]: [BedWars1058-AntiDrop] Loading BedWars1058-AntiDrop v1.2.1
[07:03:55] [Server thread/INFO]: [BedWars1058-TeamSelector] Loading BedWars1058-TeamSelector v0.7
[07:03:55] [Server thread/INFO]: [BW1058-Cosmetics] Loading BW1058-Cosmetics v1.4.2
[07:03:55] [Server thread/INFO]: [BedWars1058-PlayAgain] Loading BedWars1058-PlayAgain v2.0.2
[07:03:55] [Server thread/INFO]: [JumpPads] Loading JumpPads v1.25.13
[07:03:55] [Server thread/INFO]: [BedWars1058-MapSelector] Loading BedWars1058-MapSelector v1.2.6
[07:03:55] [Server thread/INFO]: [BedWars1058-WinStreak] Loading BedWars1058-WinStreak v2.0.1-BETA
[07:03:55] [Server thread/INFO]: [BedWars1058-Compass] Loading BedWars1058-Compass v1.4.3
[07:03:55] [Server thread/INFO]: [BedWars1058-ArenaSetup] Loading BedWars1058-ArenaSetup v2.0
[07:03:55] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.58
[07:03:55] [Server thread/INFO]:         __    

[07:03:55] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.58

[07:03:55] [Server thread/INFO]:   |___ |      Running on Bukkit - CraftBukkit

[07:03:55] [Server thread/INFO]: 

[07:03:55] [Server thread/INFO]: [LuckPerms] Loading configuration...
[07:03:55] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[07:03:55] [Server thread/WARN]: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".

[07:03:55] [Server thread/WARN]: SLF4J: Defaulting to no-operation (NOP) logger implementation

[07:03:55] [Server thread/WARN]: SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.

[07:03:56] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[07:03:56] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[07:03:56] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[07:03:56] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1556ms)
[07:03:56] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0
[07:03:56] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[07:03:56] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[07:03:56] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[07:03:56] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[07:03:56] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[07:03:56] [Server thread/INFO]: [BedWars1058] Enabling BedWars1058 v23.3
[07:03:56] [Server thread/INFO]: [BedWars1058] Hook into SlimeWorldManager support!
[07:03:56] [Server thread/WARN]: java.io.IOException: The system cannot find the path specified

[07:03:56] [Server thread/WARN]:     at java.base/java.io.WinNTFileSystem.createFileExclusively0(Native Method)

[07:03:56] [Server thread/WARN]:     at java.base/java.io.WinNTFileSystem.createFileExclusively(WinNTFileSystem.java:645)

[07:03:56] [Server thread/WARN]:     at java.base/java.io.File.createNewFile(File.java:1043)

[07:03:56] [Server thread/WARN]:     at com.andrei1058.bedwars.arena.mapreset.slime.SlimeAdapter.handleLevelDat(SlimeAdapter.java:404)

[07:03:56] [Server thread/WARN]:     at com.andrei1058.bedwars.arena.mapreset.slime.SlimeAdapter.convertWorlds(SlimeAdapter.java:335)

[07:03:56] [Server thread/WARN]:     at com.andrei1058.bedwars.BedWars.loadArenasAndSigns(BedWars.java:641)

[07:03:56] [Server thread/WARN]:     at com.andrei1058.bedwars.BedWars.onEnable(BedWars.java:348)

[07:03:56] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321)

[07:03:56] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:332)

[07:03:56] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:407)

[07:03:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:359)

[07:03:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:318)

[07:03:56] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:203)

[07:03:56] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:563)

[07:03:56] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)

[07:03:56] [Server thread/INFO]: [BedWars1058] Arena acropolis1v1 was added to the enable queue.
[07:03:56] [Server thread/INFO]: [BedWars1058] Loading arena: acropolis1v1
[07:03:56] [Server thread/INFO]: [BedWars1058] Arena airshow was added to the enable queue.
[07:03:56] [Server thread/INFO]: [BedWars1058] Arena airshow1v1 was added to the enable queue.
[07:03:56] [Server thread/ERROR]: [BedWars1058] You didn't set any team for arena: airshow1v1a
[07:03:56] [Server thread/ERROR]: [BedWars1058] You didn't set any team for arena: bedwars
[07:03:56] [Server thread/ERROR]: [BedWars1058] You didn't set any team for arena: gardens1v1
[07:03:56] [Server thread/INFO]: [BedWars1058] Arena hollow was added to the enable queue.
[07:03:56] [Server thread/INFO]: [BedWars1058] Arena lighthouse was added to the enable queue.
[07:03:56] [Server thread/INFO]: [BedWars1058] Arena mario1v1 was added to the enable queue.
[07:03:56] [Server thread/INFO]: [BedWars1058] Arena picnic1v1 was added to the enable queue.
[07:03:56] [Server thread/INFO]: [BedWars1058] Arena solace was added to the enable queue.
[07:03:57] [Server thread/INFO]: [BedWars1058] Arena speedway was added to the enable queue.
[07:03:57] [Server thread/INFO]: [BedWars1058] Arena thepandas1v1 was added to the enable queue.
[07:03:57] [Server thread/INFO]: [BedWars1058] Hooked into PlaceholderAPI support!
[07:03:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bw1058 [23.3]
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: shop-specials.iron-golem.material is set to: MONSTER_EGG
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: shop-specials.silverfish.material is set to: SNOW_BALL
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading shop category: armor-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent armor-category.category-content.diamond-armor
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierarmor-category.category-content.diamond-armor.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: armor-category.category-content.diamond-armor.content-tiers.tier1.buy-items.boots
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: armor-category.category-content.diamond-armor.content-tiers.tier1.buy-items.leggings
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: diamond-armor to Shop Category: armor-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent armor-category.category-content.iron-armor
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierarmor-category.category-content.iron-armor.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: armor-category.category-content.iron-armor.content-tiers.tier1.buy-items.boots
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: armor-category.category-content.iron-armor.content-tiers.tier1.buy-items.leggings
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: iron-armor to Shop Category: armor-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent armor-category.category-content.chainmail
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierarmor-category.category-content.chainmail.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: armor-category.category-content.chainmail.content-tiers.tier1.buy-items.boots
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: armor-category.category-content.chainmail.content-tiers.tier1.buy-items.leggings
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: chainmail to Shop Category: armor-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding shop category: com.andrei1058.bedwars.shop.main.ShopCategory@1d537444 at slot 3
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading shop category: blocks-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent blocks-category.category-content.wool
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierblocks-category.category-content.wool.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: blocks-category.category-content.wool.content-tiers.tier1.buy-items.wool
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: wool to Shop Category: blocks-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent blocks-category.category-content.clay
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierblocks-category.category-content.clay.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: blocks-category.category-content.clay.content-tiers.tier1.buy-items.clay
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: clay to Shop Category: blocks-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent blocks-category.category-content.glass
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierblocks-category.category-content.glass.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: blocks-category.category-content.glass.content-tiers.tier1.buy-items.glass
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: glass to Shop Category: blocks-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent blocks-category.category-content.stone
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierblocks-category.category-content.stone.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: blocks-category.category-content.stone.content-tiers.tier1.buy-items.stone
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: stone to Shop Category: blocks-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent blocks-category.category-content.ladder
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierblocks-category.category-content.ladder.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: blocks-category.category-content.ladder.content-tiers.tier1.buy-items.ladder
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: ladder to Shop Category: blocks-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent blocks-category.category-content.wood
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierblocks-category.category-content.wood.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: blocks-category.category-content.wood.content-tiers.tier1.buy-items.wood
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: wood to Shop Category: blocks-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent blocks-category.category-content.obsidian
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierblocks-category.category-content.obsidian.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: blocks-category.category-content.obsidian.content-tiers.tier1.buy-items.obsidian
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: obsidian to Shop Category: blocks-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding shop category: com.andrei1058.bedwars.shop.main.ShopCategory@42926d6f at slot 1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading shop category: melee-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent melee-category.category-content.stone-sword
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiermelee-category.category-content.stone-sword.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: melee-category.category-content.stone-sword.content-tiers.tier1.buy-items.sword
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: stone-sword to Shop Category: melee-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent melee-category.category-content.iron-sword
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiermelee-category.category-content.iron-sword.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: melee-category.category-content.iron-sword.content-tiers.tier1.buy-items.sword
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: iron-sword to Shop Category: melee-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent melee-category.category-content.diamond-sword
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiermelee-category.category-content.diamond-sword.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: melee-category.category-content.diamond-sword.content-tiers.tier1.buy-items.sword
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: diamond-sword to Shop Category: melee-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent melee-category.category-content.stick
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiermelee-category.category-content.stick.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: melee-category.category-content.stick.content-tiers.tier1.buy-items.stick
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: stick to Shop Category: melee-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding shop category: com.andrei1058.bedwars.shop.main.ShopCategory@1f68e99c at slot 2
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading shop category: tools-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent tools-category.category-content.shears
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiertools-category.category-content.shears.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: tools-category.category-content.shears.content-tiers.tier1.buy-items.shears
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: shears to Shop Category: tools-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent tools-category.category-content.pickaxe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiertools-category.category-content.pickaxe.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: tools-category.category-content.pickaxe.content-tiers.tier1.buy-items.wooden-pickaxe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiertools-category.category-content.pickaxe.content-tiers.tier2
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: tools-category.category-content.pickaxe.content-tiers.tier2.buy-items.iron-pickaxe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiertools-category.category-content.pickaxe.content-tiers.tier3
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: tools-category.category-content.pickaxe.content-tiers.tier3.buy-items.gold-pickaxe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiertools-category.category-content.pickaxe.content-tiers.tier4
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: tools-category.category-content.pickaxe.content-tiers.tier4.buy-items.diamond-pickaxe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: pickaxe to Shop Category: tools-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent tools-category.category-content.axe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiertools-category.category-content.axe.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: tools-category.category-content.axe.content-tiers.tier1.buy-items.wooden-axe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiertools-category.category-content.axe.content-tiers.tier2
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: tools-category.category-content.axe.content-tiers.tier2.buy-items.iron-axe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiertools-category.category-content.axe.content-tiers.tier3
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: tools-category.category-content.axe.content-tiers.tier3.buy-items.gold-axe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tiertools-category.category-content.axe.content-tiers.tier4
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: tools-category.category-content.axe.content-tiers.tier4.buy-items.diamond-axe
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: axe to Shop Category: tools-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding shop category: com.andrei1058.bedwars.shop.main.ShopCategory@393b50ff at slot 4
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading shop category: ranged-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent ranged-category.category-content.arrow
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierranged-category.category-content.arrow.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: ranged-category.category-content.arrow.content-tiers.tier1.buy-items.arrows
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: arrow to Shop Category: ranged-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent ranged-category.category-content.bow1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierranged-category.category-content.bow1.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: ranged-category.category-content.bow1.content-tiers.tier1.buy-items.bow
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: bow1 to Shop Category: ranged-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent ranged-category.category-content.bow2
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierranged-category.category-content.bow2.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: ranged-category.category-content.bow2.content-tiers.tier1.buy-items.bow
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: bow2 to Shop Category: ranged-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent ranged-category.category-content.bow3
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierranged-category.category-content.bow3.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: ranged-category.category-content.bow3.content-tiers.tier1.buy-items.bow
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: bow3 to Shop Category: ranged-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding shop category: com.andrei1058.bedwars.shop.main.ShopCategory@4cf80190 at slot 5
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading shop category: potions-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent potions-category.category-content.jump-potion
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierpotions-category.category-content.jump-potion.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: potions-category.category-content.jump-potion.content-tiers.tier1.buy-items.jump
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: jump-potion to Shop Category: potions-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent potions-category.category-content.speed-potion
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierpotions-category.category-content.speed-potion.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: potions-category.category-content.speed-potion.content-tiers.tier1.buy-items.speed
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: speed-potion to Shop Category: potions-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent potions-category.category-content.invisibility
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierpotions-category.category-content.invisibility.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: potions-category.category-content.invisibility.content-tiers.tier1.buy-items.invisibility
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: invisibility to Shop Category: potions-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding shop category: com.andrei1058.bedwars.shop.main.ShopCategory@6d0a3546 at slot 6
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading shop category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.golden-apple
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.golden-apple.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.golden-apple.content-tiers.tier1.buy-items.apple
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: golden-apple to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.bedbug
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.bedbug.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.bedbug.content-tiers.tier1.buy-items.bedbug
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: bedbug to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.dream-defender
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.dream-defender.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.dream-defender.content-tiers.tier1.buy-items.defender
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: dream-defender to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.fireball
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.fireball.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.fireball.content-tiers.tier1.buy-items.fireball
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: fireball to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.tnt
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.tnt.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.tnt.content-tiers.tier1.buy-items.tnt
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: tnt to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.ender-pearl
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.ender-pearl.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.ender-pearl.content-tiers.tier1.buy-items.ender-pearl
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: ender-pearl to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.water-bucket
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.water-bucket.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.water-bucket.content-tiers.tier1.buy-items.water-bucket
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: water-bucket to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.bridge-egg
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.bridge-egg.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.bridge-egg.content-tiers.tier1.buy-items.egg
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: bridge-egg to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.magic-milk
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.magic-milk.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.magic-milk.content-tiers.tier1.buy-items.milk
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: magic-milk to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.sponge
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.sponge.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.sponge.content-tiers.tier1.buy-items.sponge
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: sponge to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading CategoryContent utility-category.category-content.tower
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading content tierutility-category.category-content.tower.content-tiers.tier1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Loading BuyItems: utility-category.category-content.tower.content-tiers.tier1.buy-items.tower
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding CategoryContent: tower to Shop Category: utility-category
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Adding shop category: com.andrei1058.bedwars.shop.main.ShopCategory@539986a6 at slot 7
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: upgrade-swords
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: upgrade-armor
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: upgrade-miner
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: upgrade-forge
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: upgrade-heal-pool
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: upgrade-dragon
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: base-trap-1
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: base-trap-2
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: base-trap-3
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: base-trap-4
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: separator-back
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: category-traps
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: separator-glass
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: trap-slot-first
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: trap-slot-second
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade: trap-slot-third
[07:03:57] [Server thread/INFO]: [BedWars1058] DEBUG: Registering upgrade menu: default
[07:03:57] [Server thread/INFO]: [BedWars1058] Initializing SidebarLib by andrei1058
[07:03:57] [Server thread/INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[07:03:57] [Server thread/INFO]: Preparing level "world"
[07:03:57] [Server thread/INFO]: -------- World Settings For [world] --------
[07:03:57] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:03:57] [Server thread/INFO]: Clear tick list: false
[07:03:57] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:03:57] [Server thread/INFO]: View Distance: 10
[07:03:57] [Server thread/INFO]: Item Despawn Rate: 6000
[07:03:57] [Server thread/INFO]: Item Merge Radius: 2.5
[07:03:57] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:03:57] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:03:57] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:03:57] [Server thread/INFO]: Mob Spawn Range: 4
[07:03:57] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:03:57] [Server thread/INFO]: Anti X-Ray: true
[07:03:57] [Server thread/INFO]:     Engine Mode: 1
[07:03:57] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:03:57] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:03:57] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:03:57] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:03:57] [Server thread/INFO]: Structure Info Saving: true
[07:03:57] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:03:57] [Server thread/INFO]: Max Entity Collisions: 8
[07:03:57] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:03:57] [Server thread/INFO]: Random Lighting Updates: false
[07:03:57] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:03:57] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:03:57] [Server thread/INFO]: Max TNT Explosions: 100
[07:03:57] [Server thread/INFO]: -------- World Settings For [world] --------
[07:03:57] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:03:57] [Server thread/INFO]: World async lighting: false
[07:03:57] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:03:57] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:03:57] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:03:57] [Server thread/INFO]: Fix TNT cannons: false
[07:03:57] [Server thread/INFO]: Water over lava flow speed: 5
[07:03:57] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:03:57] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:03:57] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:03:57] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:03:57] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:03:57] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[07:03:57] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:03:57] [Server thread/INFO]: Clear tick list: false
[07:03:57] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:03:57] [Server thread/INFO]: View Distance: 10
[07:03:57] [Server thread/INFO]: Item Despawn Rate: 6000
[07:03:57] [Server thread/INFO]: Item Merge Radius: 2.5
[07:03:57] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:03:57] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:03:57] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:03:57] [Server thread/INFO]: Mob Spawn Range: 4
[07:03:57] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:03:57] [Server thread/INFO]: Anti X-Ray: true
[07:03:57] [Server thread/INFO]:     Engine Mode: 1
[07:03:57] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:03:57] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:03:57] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:03:57] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:03:57] [Server thread/INFO]: Structure Info Saving: true
[07:03:57] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:03:57] [Server thread/INFO]: Max Entity Collisions: 8
[07:03:57] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:03:57] [Server thread/INFO]: Random Lighting Updates: false
[07:03:57] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:03:57] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:03:57] [Server thread/INFO]: Max TNT Explosions: 100
[07:03:57] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[07:03:57] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:03:57] [Server thread/INFO]: World async lighting: false
[07:03:57] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:03:57] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:03:57] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:03:57] [Server thread/INFO]: Fix TNT cannons: false
[07:03:57] [Server thread/INFO]: Water over lava flow speed: 5
[07:03:57] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:03:57] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:03:57] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:03:57] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:03:57] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:03:57] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[07:03:57] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:03:57] [Server thread/INFO]: Clear tick list: false
[07:03:57] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:03:57] [Server thread/INFO]: View Distance: 10
[07:03:57] [Server thread/INFO]: Item Despawn Rate: 6000
[07:03:57] [Server thread/INFO]: Item Merge Radius: 2.5
[07:03:57] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:03:57] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:03:57] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:03:57] [Server thread/INFO]: Mob Spawn Range: 4
[07:03:57] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:03:57] [Server thread/INFO]: Anti X-Ray: true
[07:03:57] [Server thread/INFO]:     Engine Mode: 1
[07:03:57] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:03:57] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:03:57] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:03:57] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:03:57] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:03:57] [Server thread/INFO]: Structure Info Saving: true
[07:03:57] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:03:57] [Server thread/INFO]: Max Entity Collisions: 8
[07:03:57] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:03:57] [Server thread/INFO]: Random Lighting Updates: false
[07:03:57] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:03:57] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:03:57] [Server thread/INFO]: Max TNT Explosions: 100
[07:03:57] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[07:03:57] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:03:57] [Server thread/INFO]: World async lighting: false
[07:03:57] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:03:57] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:03:57] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:03:57] [Server thread/INFO]: Fix TNT cannons: false
[07:03:57] [Server thread/INFO]: Water over lava flow speed: 5
[07:03:57] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:03:57] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:03:57] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:03:57] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:03:57] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:03:57] [Server thread/INFO]: Preparing start region for level 0 (Seed: 1191435890337352043)
[07:03:58] [Server thread/INFO]: Preparing spawn area: 95%
[07:03:58] [Server thread/INFO]: Preparing start region for level 1 (Seed: 5966128937319831187)
[07:03:59] [Server thread/INFO]: Preparing start region for level 2 (Seed: 5966128937319831187)
[07:04:00] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v6.1.9;caf0ad9
[07:04:00] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[07:04:00] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_8_R3 as the Bukkit adapter
[07:04:00] [Server thread/INFO]: [Bedwars1058-AdminAddon] Enabling Bedwars1058-AdminAddon v1.1.6
[07:04:00] [Server thread/INFO]: [Bedwars1058-AdminAddon] Found Bedwars1058 & hooked into.
[07:04:00] [Server thread/INFO]: [Bedwars1058-AdminAddon] Found Bedwars1058-TeamSelector & hooked into.
[07:04:00] [Server thread/INFO]: [Bedwars1058-AdminAddon] Running Bedwars1058-AdminAddon v1.1.6 - By Zuyte
[07:04:00] [Server thread/INFO]: [SlimeWorldManager] Enabling SlimeWorldManager v2.2.1
[07:04:00] [Server thread/INFO]: [SWM] Checking for updates...

[07:04:01] [Server thread/INFO]: [SWM] You are running the latest version of Slime World Manager.

[07:04:01] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[07:04:01] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[07:04:01] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.1
[07:04:01] [Server thread/INFO]: [SwearFilter] Enabling SwearFilter v1.0
[07:04:01] [Server thread/INFO]:    __   __
[07:04:01] [Server thread/INFO]:   |__  |__   SwearFilter 1.0 by MasterDev
[07:04:01] [Server thread/INFO]:    __| |     Get those bad words out of the chat!
[07:04:01] [Server thread/INFO]: 
[07:04:01] [Server thread/ERROR]: Error occurred while enabling SwearFilter v1.0 (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/util/Consumer
    at masterdev.swearfilter.SwearFilter.onEnable(SwearFilter.java:39) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321) ~[patched_1.8.8.jar:git-PaperSpigot-445]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:332) [patched_1.8.8.jar:git-PaperSpigot-445]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:407) [patched_1.8.8.jar:git-PaperSpigot-445]
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:359) [patched_1.8.8.jar:git-PaperSpigot-445]
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:318) [patched_1.8.8.jar:git-PaperSpigot-445]
    at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:408) [patched_1.8.8.jar:git-PaperSpigot-445]
    at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:372) [patched_1.8.8.jar:git-PaperSpigot-445]
    at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:327) [patched_1.8.8.jar:git-PaperSpigot-445]
    at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:267) [patched_1.8.8.jar:git-PaperSpigot-445]
    at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:563) [patched_1.8.8.jar:git-PaperSpigot-445]
    at java.lang.Thread.run(Thread.java:1589) [?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.util.Consumer
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:92) ~[patched_1.8.8.jar:git-PaperSpigot-445]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:87) ~[patched_1.8.8.jar:git-PaperSpigot-445]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:588) ~[?:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 12 more
[07:04:01] [Server thread/INFO]: [SwearFilter] Disabling SwearFilter v1.0
[07:04:01] [Server thread/INFO]: [AntiDisconnectSpam] Enabling AntiDisconnectSpam v2.1.1
[07:04:01] [Server thread/INFO]: [AntiDisconnectSpam] Starting...
[07:04:01] [Server thread/INFO]: [AntiDisconnectSpam] Loading configs...
[07:04:01] [Server thread/INFO]: Config plugins/AntiDisconnectSpam/config.json loaded!
[07:04:01] [Server thread/INFO]: [AntiDisconnectSpam] Configs loaded!
[07:04:01] [Server thread/INFO]: [AntiDisconnectSpam] Started!
[07:04:01] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Enabling zoom-sendpacket v1.0
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: bukkit
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: MySQL
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: paper
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: purpur
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: spigot
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: bungeeguard
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: waterfall
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: geyser-mc
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: SQLite
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: velocity
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: lite-bans
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: discord
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: github
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: matrix
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: intave
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: vulcan
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: spartan
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: craft-bukkit
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: luck-perms
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Send Packet is: LPX
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Loaded LPX-3.3.1
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Connected LPX-3.3.1
[07:04:01] [Server thread/INFO]: [zoom-sendpacket] Enabled plugins :)
[07:04:01] [Server thread/INFO]: [TAB] Enabling TAB v4.0.3
[07:04:01] [Server thread/INFO]: [TAB] Server version: 1.8.8 (v1_8_R3)

[07:04:01] [Server thread/INFO]: [TAB] Loaded NMS hook in 21ms

[07:04:01] [Server thread/INFO]: [TAB] Enabled in 164ms

[07:04:01] [Server thread/INFO]: [CommandWhitelist] Enabling CommandWhitelist v2.8.1
[07:04:01] [Server thread/ERROR]: [CommandWhitelist] Plugin CommandWhitelist v2.8.1 has failed to register events for class eu.endermite.commandwhitelist.bukkit.listeners.TabCompleteBlockerListener because org/bukkit/event/server/TabCompleteEvent does not exist.
[07:04:01] [Server thread/ERROR]: [CommandWhitelist] Plugin CommandWhitelist v2.8.1 has failed to register events for class eu.endermite.commandwhitelist.bukkit.listeners.PlayerCommandSendListener because org/bukkit/event/player/PlayerCommandSendEvent does not exist.
[07:04:01] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[07:04:01] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[07:04:01] [Server thread/INFO]: You are running a server with limited API functionality. EssentialsX will still work, but certain features may be disabled.
[07:04:01] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[07:04:01] [Server thread/INFO]: No kits found to migrate.
[07:04:01] [Server thread/INFO]: Loaded 853 items from items.csv.
[07:04:01] [Server thread/INFO]: Using locale en_US
[07:04:01] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[07:04:02] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[07:04:02] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[07:04:02] [Server thread/INFO]: Using Vault based permissions (LuckPerms)
[07:04:02] [Server thread/INFO]: [Matrix] Enabling Matrix v7.4.1A
[07:04:02] [Server thread/INFO]: *   __  __       _        _

[07:04:02] [Server thread/INFO]: *  |  \/  |     | |      (_)

[07:04:02] [Server thread/INFO]: *  | \  / | __ _| |_ _ __ ___  __

[07:04:02] [Server thread/INFO]: *  | |\/| |/ _` | __| '__| \ \/ /

[07:04:02] [Server thread/INFO]: *  | |  | | (_| | |_| |  | |>  <

[07:04:02] [Server thread/INFO]: *  |_|  |_|\__,_|\__|_|  |_/_/\_\

[07:04:02] [Server thread/INFO]: * Matrix AntiCheat v7.4.1A | git-PaperSpigot-445 (MC: 1.8.8)

[07:04:02] [Server thread/INFO]: [Matrix] Checking Environment...
[07:04:02] [Server thread/INFO]: [Matrix] Passed all environment checks
[07:04:02] [Server thread/INFO]: [Matrix] Loaded 0 global placeholders
[07:04:02] [Server thread/WARN]: [Matrix] BadPackets check is disabled in the configuration file!
[07:04:02] [Server thread/WARN]: [Matrix] Please don't disable it, or it will cause Timer bypass!
[07:04:05] [Server thread/INFO]: [Matrix] Enabled 14 checks, Disabled 1 checks
[07:04:05] [Server thread/INFO]: [Matrix] Loaded all configuration files
[07:04:05] [Server thread/INFO]: [Matrix] Hooked with ViaVersion 4+
[07:04:06] [Server thread/INFO]: [Matrix] Scanning outdated log files....
[07:04:06] [Server thread/INFO]: [Matrix] Deleted 0 outdated log files!
[07:04:06] [Server thread/INFO]: [Matrix] Hooked with PlaceholderAPI
[07:04:06] [Server thread/INFO]: [Matrix] Welcome to Matrix!
[07:04:06] [Server thread/INFO]: [LPX] Enabling LPX v3.3.1
[07:04:06] [Server thread/INFO]: [LPX] CRACKED BY CR4ZYL0RD @ CR4ZYSQ | https://t.me/Cr4zySQ

[07:04:06] [Server thread/INFO]: [LPX] License successfully verified!
[07:04:06] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3188)
[07:04:06] [Server thread/INFO]: [Citizens] Loading external libraries
[07:04:06] [Server thread/INFO]: [Citizens] Loading shops from disk...
[07:04:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[07:04:06] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[07:04:07] [Server thread/INFO]: [BedWars1058-PopUpTowers] Enabling BedWars1058-PopUpTowers v0.7
[07:04:07] [Server thread/INFO]:  

[07:04:07] [Server thread/INFO]: BedWars1058 Pop-Up Towers

[07:04:07] [Server thread/INFO]: by kimoVoid

[07:04:07] [Server thread/INFO]:  

[07:04:07] [Server thread/INFO]: [BattlePass] Enabling BattlePass v3.18.4
[07:04:07] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[07:04:07] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[07:04:07] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[07:04:07] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully.
[07:04:07] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[07:04:07] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[07:04:07] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[07:04:07] [Server thread/ERROR]: [BattlePass] Plugin BattlePass v3.18.4 has failed to register events for class io.github.battlepass.quests.quests.internal.EnchantQuests because org/bukkit/event/inventory/PrepareAnvilEvent does not exist.
[07:04:07] [Server thread/INFO]: [BattlePass] Hooked into BedWars1058
[07:04:07] [Server thread/INFO]: [BattlePass] Hooked into Citizens
[07:04:07] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[07:04:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: battlepass [1.1]
[07:04:07] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.16
[07:04:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [6.2.16]
[07:04:07] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[07:04:07] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[07:04:07] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[07:04:07] [Server thread/INFO]: [BedWars1058-AntiDrop] Enabling BedWars1058-AntiDrop v1.2.1
[07:04:07] [Server thread/INFO]: [BedWars1058-TeamSelector] Enabling BedWars1058-TeamSelector v0.7
[07:04:07] [Server thread/INFO]: [BedWars1058-TeamSelector] Hook into BedWars1058!
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Enabling BW1058-Cosmetics v1.4.2
[07:04:07] [Server thread/INFO]: Found PlaceholderAPI, loading placeholders!
[07:04:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bwc [1.2]
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] All dependencies found, continuing with plugin startup.
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Configuration file successfully loaded.
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Loading SQLite database..
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Cosmetics list successfully loaded.
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Saving data to configs...
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Creating folders...
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Registering event listeners...
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Registering command to HCore...
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Loading data from resources in jar...
[07:04:07] [Server thread/INFO]: [BW1058-Cosmetics] Loading cosmetics...
[07:04:08] [Server thread/INFO]: [BW1058-Cosmetics] Addon have been loaded and enabled!
[07:04:08] [Server thread/INFO]: [BedWars1058-PlayAgain] Enabling BedWars1058-PlayAgain v2.0.2
[07:04:08] [Server thread/INFO]: [JumpPads] Enabling JumpPads v1.25.13
[07:04:08] [Server thread/INFO]: [BedWars1058-MapSelector] Enabling BedWars1058-MapSelector v1.2.6
[07:04:08] [Server thread/INFO]: BedWars1058 Map Selector addon has been successfully enabled.

[07:04:08] [Server thread/INFO]: [BedWars1058-WinStreak] Enabling BedWars1058-WinStreak v2.0.1-BETA
[07:04:08] [Server thread/INFO]: --------------------------------------------------

[07:04:08] [Server thread/INFO]: Loading WinStreak add-on 2.0.1-BETA ...

[07:04:08] [Server thread/INFO]: The add-on was developed by reussy. Much love ❤

[07:04:08] [Server thread/INFO]: Running on git-PaperSpigot-445 (MC: 1.8.8) fork 1.8.8-R0.1-SNAPSHOT.

[07:04:08] [Server thread/INFO]: 

[07:04:08] [Server thread/INFO]: Initializing API classes, utilities and wrappers...

[07:04:08] [Server thread/INFO]: WinStreak add-on API initialized successfully, the API is ready to use.

[07:04:08] [Server thread/INFO]: 

[07:04:08] [Server thread/INFO]: Initializing plugin integrations...

[07:04:08] [Server thread/INFO]: Using BedWars1058 as Bed Wars core.

[07:04:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: winstreak [1.2.0]
[07:04:08] [Server thread/INFO]: Successfully loaded PlaceholderAPI integration, registering expansion...

[07:04:08] [Server thread/INFO]: 

[07:04:08] [Server thread/INFO]: Registering storage service...

[07:04:08] [Server thread/INFO]: Storage service SQLite registered.

[07:04:08] [Server thread/INFO]: 

[07:04:08] [Server thread/INFO]: WinStreak add-on 2.0.1-BETA loaded in 185ms.

[07:04:08] [Server thread/INFO]: --------------------------------------------------

[07:04:08] [Server thread/INFO]: [BedWars1058-Compass] Enabling BedWars1058-Compass v1.4.3
[07:04:08] [Server thread/INFO]: [BedWars1058-Compass] Hook into Vault chat support
[07:04:09] [Server thread/INFO]: [BedWars1058-Compass] Successfully loaded in 192ms
[07:04:09] [Server thread/INFO]: [BedWars1058-ArenaSetup] Enabling BedWars1058-ArenaSetup v2.0
[07:04:09] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[07:04:09] [Server thread/INFO]: Done (11.485s)! For help, type "help" or "?"
[07:04:09] [Server thread/INFO]: Timings Reset
[07:04:09] [Server thread/INFO]: [BedWars1058] Hooked into vault chat support!
[07:04:09] [Server thread/INFO]: [BedWars1058] Hooked into vault economy support!
[07:04:09] [Server thread/INFO]: [JumpPads] CleanUp found no JumpPads to delete!

[07:04:09] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[07:04:09] [Craft Scheduler Thread - 7/INFO]: [Matrix] Start checking update....
[07:04:09] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.8.x (47)
[07:04:09] [Craft Scheduler Thread - 4/INFO]: Fetching version information...
[07:04:09] [Craft Scheduler Thread - 4/INFO]: Update checking disabled in config.
[07:04:09] [Server thread/WARN]: [ViaVersion] This version of Minecraft is extremely outdated and support for it has reached its end of life. You will still be able to run Via on this Minecraft version, but we are unlikely to provide any further fixes or help with problems specific to legacy Minecraft versions. Please consider updating to give your players a better experience and to avoid issues that have long been fixed.
[07:04:09] [Craft Scheduler Thread - 102/INFO]: [SWM] Loading world acropolis1v1.

[07:04:09] [Craft Scheduler Thread - 102/INFO]: [SWM] World acropolis1v1 loaded in 141ms.

[07:04:09] [Server thread/INFO]: [Citizens] Removing respawns of 19{1v1, PLAYER} due to SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Spawned 19{1v1, PLAYER} SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Removing respawns of 25{dobedo, PLAYER} due to SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Spawned 25{dobedo, PLAYER} SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Removing respawns of 27{solo, PLAYER} due to SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Spawned 27{solo, PLAYER} SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Removing respawns of 28{4v4, PLAYER} due to SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Spawned 28{4v4, PLAYER} SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Removing respawns of 29{double, PLAYER} due to SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Spawned 29{double, PLAYER} SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Removing respawns of 30{3v3v3v3, PLAYER} due to SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Spawned 30{3v3v3v3, PLAYER} SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Removing respawns of 31{4v4v4v4, PLAYER} due to SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Spawned 31{4v4v4v4, PLAYER} SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Removing respawns of 34{Cosmetics, PLAYER} due to SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Spawned 34{Cosmetics, PLAYER} SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Removing respawns of 33{stats, PLAYER} due to SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Spawned 33{stats, PLAYER} SpawnReason.RESPAWN
[07:04:09] [Server thread/INFO]: [Citizens] Loading shops... 0 0
[07:04:09] [Server thread/INFO]: [Citizens] Loaded 9 NPCs.
[07:04:09] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[07:04:09] [Server thread/INFO]: [SuperVanish] Your current version of SuperVanish is outdated - New version: '6.2.18'; Currently: '6.2.16'
[07:04:09] [Craft Scheduler Thread - 102/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[07:04:09] [Craft Scheduler Thread - 112/INFO]: [Vault] Checking for Updates ... 
[07:04:09] [Server thread/INFO]: -------- World Settings For [acropolis1v1] --------
[07:04:09] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:09] [Server thread/INFO]: Clear tick list: false
[07:04:09] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:09] [Server thread/INFO]: View Distance: 10
[07:04:09] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:09] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:09] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:09] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:09] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:09] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:09] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:09] [Server thread/INFO]: Anti X-Ray: true
[07:04:09] [Server thread/INFO]:     Engine Mode: 1
[07:04:09] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:09] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:09] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:09] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:09] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:09] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:09] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:09] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:09] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:09] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:09] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:09] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:09] [Server thread/INFO]: Structure Info Saving: true
[07:04:09] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:09] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:09] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:09] [Server thread/INFO]: Random Lighting Updates: false
[07:04:09] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:09] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:09] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:09] [Server thread/INFO]: -------- World Settings For [acropolis1v1] --------
[07:04:09] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:09] [Server thread/INFO]: World async lighting: false
[07:04:09] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:09] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:09] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:09] [Server thread/INFO]: Fix TNT cannons: false
[07:04:09] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:09] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:09] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:09] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:09] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:09] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:09] [Craft Scheduler Thread - 3/WARN]: [Matrix] Failed to fetch license: Invalid token
[07:04:10] [Server thread/INFO]: Loading world acropolis1v1
[07:04:10] [Server thread/INFO]: [BedWars1058] Loading arena: airshow
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena acropolis1v1 with map acropolis1v1
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=acropolis1v1},x=-42.5,y=71.8,z=-83.5,pitch=86.520775,yaw=-72.030495} - IRON - Red
[07:04:10] [Craft Scheduler Thread - 7/INFO]: You are using the latest version of Matrix! (v7.4.1A)

[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=acropolis1v1},x=-42.5,y=71.8,z=-83.5,pitch=86.520775,yaw=-72.030495} - GOLD - Red
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=acropolis1v1},x=-42.5,y=71.8,z=86.5,pitch=90.0,yaw=-4.2355886} - IRON - Blue
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=acropolis1v1},x=-42.5,y=71.8,z=86.5,pitch=90.0,yaw=-4.2355886} - GOLD - Blue
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=acropolis1v1},x=-42.5,y=68.0,z=23.5,pitch=90.0,yaw=176.83682} - DIAMOND - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=acropolis1v1},x=-42.5,y=68.0,z=-22.5,pitch=90.0,yaw=48.55887} - DIAMOND - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=acropolis1v1},x=-46.5,y=73.0,z=0.5,pitch=90.0,yaw=212.5364} - EMERALD - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=acropolis1v1},x=-39.5,y=73.0,z=0.5,pitch=90.0,yaw=266.6915} - EMERALD - NOTEAM
[07:04:10] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: acropolis1v1
[07:04:10] [Server thread/INFO]: [BedWars1058] Load done: acropolis1v1
[07:04:10] [Server thread/INFO]: World acropolis1v1 loaded in 45ms.
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.3) is available at:
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bw1058plus [1.2.2]
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [2.2]
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bw1058plus [1.2.1]
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.5]
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: progress [2.1]
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[07:04:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[07:04:10] [Server thread/INFO]: 9 placeholder hook(s) registered!

[07:04:10] [Craft Scheduler Thread - 3/INFO]: [SWM] Loading world airshow.

[07:04:10] [Server thread/INFO]: [HolographicDisplays] Found a new version available: v3.0.3
[07:04:10] [Server thread/INFO]: [HolographicDisplays] Download it on Bukkit Dev:
[07:04:10] [Server thread/INFO]: [HolographicDisplays] https://dev.bukkit.org/projects/holographic-displays
[07:04:10] [Craft Scheduler Thread - 112/INFO]: [Vault] No new version available
[07:04:10] [Craft Scheduler Thread - 3/INFO]: [SWM] World airshow loaded in 186ms.

[07:04:10] [Server thread/INFO]: -------- World Settings For [airshow] --------
[07:04:10] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:10] [Server thread/INFO]: Clear tick list: false
[07:04:10] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:10] [Server thread/INFO]: View Distance: 10
[07:04:10] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:10] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:10] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:10] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:10] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:10] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:10] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:10] [Server thread/INFO]: Anti X-Ray: true
[07:04:10] [Server thread/INFO]:     Engine Mode: 1
[07:04:10] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:10] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:10] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:10] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:10] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:10] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:10] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:10] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:10] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:10] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:10] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:10] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:10] [Server thread/INFO]: Structure Info Saving: true
[07:04:10] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:10] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:10] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:10] [Server thread/INFO]: Random Lighting Updates: false
[07:04:10] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:10] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:10] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:10] [Server thread/INFO]: -------- World Settings For [airshow] --------
[07:04:10] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:10] [Server thread/INFO]: World async lighting: false
[07:04:10] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:10] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:10] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:10] [Server thread/INFO]: Fix TNT cannons: false
[07:04:10] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:10] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:10] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:10] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:10] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:10] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:10] [Server thread/INFO]: Loading world airshow
[07:04:10] [Server thread/INFO]: [BedWars1058] Loading arena: airshow1v1
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena airshow with map airshow
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-39.5,y=63.8,z=-86.5,pitch=-4.6499987,yaw=-2.2552185} - IRON - Red
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-39.5,y=63.8,z=-86.5,pitch=-4.6499987,yaw=-2.2552185} - GOLD - Red
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=40.5,y=67.8,z=-86.5,pitch=-1.1999972,yaw=0.5947503} - IRON - Blue
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=40.5,y=67.8,z=-86.5,pitch=-1.1999972,yaw=0.5947503} - GOLD - Blue
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=87.5,y=67.8,z=-39.5,pitch=89.399994,yaw=98.69468} - IRON - Green
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=87.5,y=67.8,z=-39.5,pitch=89.399994,yaw=98.69468} - GOLD - Green
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=87.5,y=63.8,z=40.5,pitch=-1.9499857,yaw=90.594734} - IRON - Yellow
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=87.5,y=63.8,z=40.5,pitch=-1.9499857,yaw=90.594734} - GOLD - Yellow
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=40.5,y=63.8,z=87.5,pitch=90.0,yaw=-178.20541} - IRON - Aqua
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=40.5,y=63.8,z=87.5,pitch=90.0,yaw=-178.20541} - GOLD - Aqua
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-39.5,y=67.8,z=87.5,pitch=85.049995,yaw=-168.75536} - IRON - White
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-39.5,y=67.8,z=87.5,pitch=85.049995,yaw=-168.75536} - GOLD - White
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-86.5,y=67.8,z=40.5,pitch=89.85,yaw=-82.20467} - IRON - Pink
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-86.5,y=67.8,z=40.5,pitch=89.85,yaw=-82.20467} - GOLD - Pink
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-86.5,y=63.8,z=-39.5,pitch=90.0,yaw=-88.79837} - IRON - Gray
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-86.5,y=63.8,z=-39.5,pitch=90.0,yaw=-88.79837} - GOLD - Gray
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-39.5,y=61.0,z=-39.5,pitch=88.34999,yaw=-75.298386} - DIAMOND - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=40.5,y=65.0,z=-39.5,pitch=88.94999,yaw=-267.89832} - DIAMOND - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=40.5,y=61.0,z=40.5,pitch=88.79999,yaw=-176.54883} - DIAMOND - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-39.5,y=65.0,z=40.5,pitch=80.24999,yaw=-277.34845} - DIAMOND - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-11.5,y=65.0,z=12.5,pitch=89.24999,yaw=-103.798386} - EMERALD - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=12.5,y=61.0,z=12.5,pitch=90.0,yaw=-84.74863} - EMERALD - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=12.5,y=65.0,z=-11.5,pitch=90.0,yaw=-91.198814} - EMERALD - NOTEAM
[07:04:10] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow},x=-11.5,y=61.0,z=-11.5,pitch=90.0,yaw=-90.44882} - EMERALD - NOTEAM
[07:04:10] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: airshow
[07:04:10] [Server thread/INFO]: [BedWars1058] Load done: airshow
[07:04:10] [Server thread/INFO]: World airshow loaded in 16ms.
[07:04:10] [Craft Scheduler Thread - 102/INFO]: [SWM] Loading world airshow1v1.

[07:04:11] [Craft Scheduler Thread - 102/INFO]: [SWM] World airshow1v1 loaded in 66ms.

[07:04:11] [Server thread/INFO]: -------- World Settings For [airshow1v1] --------
[07:04:11] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:11] [Server thread/INFO]: Clear tick list: false
[07:04:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:11] [Server thread/INFO]: View Distance: 10
[07:04:11] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:11] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:11] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:11] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:11] [Server thread/INFO]: Anti X-Ray: true
[07:04:11] [Server thread/INFO]:     Engine Mode: 1
[07:04:11] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:11] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:11] [Server thread/INFO]: Structure Info Saving: true
[07:04:11] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:11] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:11] [Server thread/INFO]: Random Lighting Updates: false
[07:04:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:11] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:11] [Server thread/INFO]: -------- World Settings For [airshow1v1] --------
[07:04:11] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:11] [Server thread/INFO]: World async lighting: false
[07:04:11] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:11] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:11] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:11] [Server thread/INFO]: Fix TNT cannons: false
[07:04:11] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:11] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:11] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:11] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:11] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:11] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:11] [Server thread/INFO]: Loading world airshow1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] Loading arena: hollow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena airshow1v1 with map airshow1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow1v1},x=-39.5,y=61.8,z=86.5,pitch=85.00806,yaw=-160.04503} - IRON - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow1v1},x=-39.5,y=61.8,z=86.5,pitch=85.00806,yaw=-160.04503} - GOLD - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow1v1},x=-39.5,y=62.8,z=-86.5,pitch=90.0,yaw=10.942383} - IRON - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow1v1},x=-39.5,y=62.8,z=-86.5,pitch=90.0,yaw=10.942383} - GOLD - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow1v1},x=-39.5,y=61.0,z=-39.5,pitch=88.9411,yaw=303.60153} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow1v1},x=-39.5,y=60.0,z=39.5,pitch=90.0,yaw=-48.255344} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow1v1},x=-42.5,y=60.0,z=-0.5,pitch=90.0,yaw=259.884} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=airshow1v1},x=-36.5,y=60.0,z=-0.5,pitch=90.0,yaw=278.94418} - EMERALD - NOTEAM
[07:04:11] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: airshow1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] Load done: airshow1v1
[07:04:11] [Server thread/INFO]: World airshow1v1 loaded in 10ms.
[07:04:11] [Craft Scheduler Thread - 12/INFO]: [SWM] Loading world hollow.

[07:04:11] [Craft Scheduler Thread - 12/INFO]: [SWM] World hollow loaded in 14ms.

[07:04:11] [Server thread/INFO]: -------- World Settings For [hollow] --------
[07:04:11] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:11] [Server thread/INFO]: Clear tick list: false
[07:04:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:11] [Server thread/INFO]: View Distance: 10
[07:04:11] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:11] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:11] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:11] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:11] [Server thread/INFO]: Anti X-Ray: true
[07:04:11] [Server thread/INFO]:     Engine Mode: 1
[07:04:11] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:11] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:11] [Server thread/INFO]: Structure Info Saving: true
[07:04:11] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:11] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:11] [Server thread/INFO]: Random Lighting Updates: false
[07:04:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:11] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:11] [Server thread/INFO]: -------- World Settings For [hollow] --------
[07:04:11] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:11] [Server thread/INFO]: World async lighting: false
[07:04:11] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:11] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:11] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:11] [Server thread/INFO]: Fix TNT cannons: false
[07:04:11] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:11] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:11] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:11] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:11] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:11] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:11] [Server thread/INFO]: Loading world hollow
[07:04:11] [Server thread/INFO]: [BedWars1058] Loading arena: lighthouse
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena hollow with map hollow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-28.5,y=67.8,z=-83.5,pitch=86.672035,yaw=341.9733} - IRON - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-28.5,y=67.8,z=-83.5,pitch=86.672035,yaw=341.9733} - GOLD - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=28.5,y=67.8,z=-83.5,pitch=88.03347,yaw=-337.4097} - IRON - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=28.5,y=67.8,z=-83.5,pitch=88.03347,yaw=-337.4097} - GOLD - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=84.5,y=67.8,z=-28.5,pitch=90.0,yaw=107.02431} - IRON - Green
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=84.5,y=67.8,z=-28.5,pitch=90.0,yaw=107.02431} - GOLD - Green
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=84.5,y=67.8,z=28.5,pitch=90.0,yaw=-284.2386} - IRON - Yellow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=84.5,y=67.8,z=28.5,pitch=90.0,yaw=-284.2386} - GOLD - Yellow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=29.5,y=67.8,z=84.5,pitch=90.0,yaw=-183.01291} - IRON - Aqua
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=29.5,y=67.8,z=84.5,pitch=90.0,yaw=-183.01291} - GOLD - Aqua
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-27.5,y=67.8,z=84.5,pitch=90.0,yaw=-174.84409} - IRON - White
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-27.5,y=67.8,z=84.5,pitch=90.0,yaw=-174.84409} - GOLD - White
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-83.5,y=67.8,z=29.5,pitch=-1.0652502,yaw=-88.493866} - IRON - Pink
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-83.5,y=67.8,z=29.5,pitch=-1.0652502,yaw=-88.493866} - GOLD - Pink
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-83.5,y=67.8,z=-27.5,pitch=89.09238,yaw=-66.130615} - IRON - Gray
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-83.5,y=67.8,z=-27.5,pitch=89.09238,yaw=-66.130615} - GOLD - Gray
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-45.5,y=66.0,z=0.5,pitch=90.0,yaw=90.28305} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=0.5,y=66.0,z=-45.5,pitch=90.0,yaw=-351.7059} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=0.5,y=66.0,z=46.5,pitch=89.546196,yaw=-175.60025} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=46.5,y=66.0,z=0.5,pitch=82.133965,yaw=266.08615} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-20.5,y=66.0,z=-20.5,pitch=90.0,yaw=258.19412} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=21.5,y=66.0,z=-20.5,pitch=89.697464,yaw=-94.24237} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=21.5,y=66.0,z=21.5,pitch=88.03348,yaw=-349.56207} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=hollow},x=-20.5,y=66.0,z=21.5,pitch=90.0,yaw=-170.4569} - EMERALD - NOTEAM
[07:04:11] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: hollow
[07:04:11] [Server thread/INFO]: [BedWars1058] Load done: hollow
[07:04:11] [Server thread/INFO]: World hollow loaded in 22ms.
[07:04:11] [Craft Scheduler Thread - 7/INFO]: [SWM] Loading world lighthouse.

[07:04:11] [Server thread/INFO]: [BedWars1058] Loading internal Party system. /party
[07:04:11] [Craft Scheduler Thread - 7/INFO]: [SWM] World lighthouse loaded in 101ms.

[07:04:11] [Server thread/INFO]: -------- World Settings For [lighthouse] --------
[07:04:11] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:11] [Server thread/INFO]: Clear tick list: false
[07:04:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:11] [Server thread/INFO]: View Distance: 10
[07:04:11] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:11] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:11] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:11] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:11] [Server thread/INFO]: Anti X-Ray: true
[07:04:11] [Server thread/INFO]:     Engine Mode: 1
[07:04:11] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:11] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:11] [Server thread/INFO]: Structure Info Saving: true
[07:04:11] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:11] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:11] [Server thread/INFO]: Random Lighting Updates: false
[07:04:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:11] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:11] [Server thread/INFO]: -------- World Settings For [lighthouse] --------
[07:04:11] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:11] [Server thread/INFO]: World async lighting: false
[07:04:11] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:11] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:11] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:11] [Server thread/INFO]: Fix TNT cannons: false
[07:04:11] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:11] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:11] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:11] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:11] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:11] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:11] [Server thread/INFO]: Loading world lighthouse
[07:04:11] [Server thread/INFO]: [BedWars1058] Loading arena: mario1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena lighthouse with map lighthouse
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-22.5,y=65.8,z=-90.5,pitch=89.84873,yaw=15.127228} - IRON - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-22.5,y=65.8,z=-90.5,pitch=89.84873,yaw=15.127228} - GOLD - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=29.5,y=65.8,z=-90.5,pitch=90.0,yaw=-11.042847} - IRON - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=29.5,y=65.8,z=-90.5,pitch=90.0,yaw=-11.042847} - GOLD - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=94.5,y=65.8,z=-25.5,pitch=89.54619,yaw=-250.95978} - IRON - Green
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=94.5,y=65.8,z=-25.5,pitch=89.54619,yaw=-250.95978} - GOLD - Green
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=94.5,y=65.8,z=26.5,pitch=90.0,yaw=-267.14496} - IRON - Yellow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=94.5,y=65.8,z=26.5,pitch=90.0,yaw=-267.14496} - GOLD - Yellow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=29.5,y=65.8,z=91.5,pitch=90.0,yaw=-185.15697} - IRON - Aqua
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=29.5,y=65.8,z=91.5,pitch=90.0,yaw=-185.15697} - GOLD - Aqua
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-22.5,y=65.8,z=91.5,pitch=89.39492,yaw=-164.10376} - IRON - White
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-22.5,y=65.8,z=91.5,pitch=89.39492,yaw=-164.10376} - GOLD - White
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-87.5,y=65.8,z=26.5,pitch=90.0,yaw=290.89456} - IRON - Pink
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-87.5,y=65.8,z=26.5,pitch=90.0,yaw=290.89456} - GOLD - Pink
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-87.5,y=65.8,z=-25.5,pitch=90.0,yaw=271.96024} - IRON - Gray
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-87.5,y=65.8,z=-25.5,pitch=90.0,yaw=271.96024} - GOLD - Gray
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=55.5,y=67.0,z=52.5,pitch=89.243645,yaw=-52.97058} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=55.5,y=67.0,z=-51.5,pitch=87.27713,yaw=121.26837} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-48.5,y=67.0,z=-51.5,pitch=90.0,yaw=18.706451} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=-48.5,y=67.0,z=52.5,pitch=90.0,yaw=-82.696045} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=3.5,y=87.0,z=-6.5,pitch=87.12616,yaw=-345.3035} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=lighthouse},x=3.5,y=87.0,z=7.5,pitch=89.84873,yaw=-358.01028} - EMERALD - NOTEAM
[07:04:11] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: lighthouse
[07:04:11] [Server thread/INFO]: [BedWars1058] Load done: lighthouse
[07:04:11] [Server thread/INFO]: World lighthouse loaded in 17ms.
[07:04:11] [Craft Scheduler Thread - 12/INFO]: [SWM] Loading world mario1v1.

[07:04:11] [Craft Scheduler Thread - 12/INFO]: [SWM] World mario1v1 loaded in 5ms.

[07:04:11] [Server thread/INFO]: -------- World Settings For [mario1v1] --------
[07:04:11] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:11] [Server thread/INFO]: Clear tick list: false
[07:04:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:11] [Server thread/INFO]: View Distance: 10
[07:04:11] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:11] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:11] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:11] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:11] [Server thread/INFO]: Anti X-Ray: true
[07:04:11] [Server thread/INFO]:     Engine Mode: 1
[07:04:11] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:11] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:11] [Server thread/INFO]: Structure Info Saving: true
[07:04:11] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:11] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:11] [Server thread/INFO]: Random Lighting Updates: false
[07:04:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:11] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:11] [Server thread/INFO]: -------- World Settings For [mario1v1] --------
[07:04:11] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:11] [Server thread/INFO]: World async lighting: false
[07:04:11] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:11] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:11] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:11] [Server thread/INFO]: Fix TNT cannons: false
[07:04:11] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:11] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:11] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:11] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:11] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:11] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:11] [Server thread/INFO]: Loading world mario1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] Loading arena: picnic1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena mario1v1 with map mario1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=5.5,y=74.8,z=-73.5,pitch=89.84873,yaw=103.16693} - IRON - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=5.5,y=74.8,z=-73.5,pitch=89.84873,yaw=103.16693} - GOLD - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=-4.5,y=74.8,z=78.5,pitch=85.00806,yaw=-51.73474} - IRON - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=-4.5,y=74.8,z=78.5,pitch=85.00806,yaw=-51.73474} - GOLD - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=0.5,y=73.0,z=-42.5,pitch=90.0,yaw=352.33685} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=0.5,y=73.0,z=47.5,pitch=90.0,yaw=45.28226} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=0.5,y=76.0,z=-8.5,pitch=87.277115,yaw=186.69519} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=11.5,y=76.0,z=2.5,pitch=90.0,yaw=221.18506} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=0.5,y=76.0,z=13.5,pitch=82.58772,yaw=17.145905} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=mario1v1},x=-10.5,y=76.0,z=2.5,pitch=90.0,yaw=-171.18678} - EMERALD - NOTEAM
[07:04:11] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: mario1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] Load done: mario1v1
[07:04:11] [Server thread/INFO]: World mario1v1 loaded in 10ms.
[07:04:11] [Craft Scheduler Thread - 12/INFO]: [SWM] Loading world picnic1v1.

[07:04:11] [Craft Scheduler Thread - 12/INFO]: [SWM] World picnic1v1 loaded in 4ms.

[07:04:11] [Server thread/INFO]: -------- World Settings For [picnic1v1] --------
[07:04:11] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:11] [Server thread/INFO]: Clear tick list: false
[07:04:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:11] [Server thread/INFO]: View Distance: 10
[07:04:11] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:11] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:11] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:11] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:11] [Server thread/INFO]: Anti X-Ray: true
[07:04:11] [Server thread/INFO]:     Engine Mode: 1
[07:04:11] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:11] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:11] [Server thread/INFO]: Structure Info Saving: true
[07:04:11] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:11] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:11] [Server thread/INFO]: Random Lighting Updates: false
[07:04:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:11] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:11] [Server thread/INFO]: -------- World Settings For [picnic1v1] --------
[07:04:11] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:11] [Server thread/INFO]: World async lighting: false
[07:04:11] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:11] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:11] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:11] [Server thread/INFO]: Fix TNT cannons: false
[07:04:11] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:11] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:11] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:11] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:11] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:11] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:11] [Server thread/INFO]: Loading world picnic1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] Loading arena: solace
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena picnic1v1 with map picnic1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=picnic1v1},x=84.5,y=63.8,z=43.5,pitch=90.0,yaw=3.4789693} - IRON - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=picnic1v1},x=84.5,y=63.8,z=43.5,pitch=90.0,yaw=3.4789693} - GOLD - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=picnic1v1},x=84.5,y=63.8,z=198.5,pitch=88.48731,yaw=39.63302} - IRON - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=picnic1v1},x=84.5,y=63.8,z=198.5,pitch=88.48731,yaw=39.63302} - GOLD - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=picnic1v1},x=132.5,y=63.0,z=131.5,pitch=90.0,yaw=-358.059} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=picnic1v1},x=36.5,y=63.0,z=111.5,pitch=89.69746,yaw=-26.170004} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=picnic1v1},x=92.5,y=68.0,z=133.5,pitch=85.76441,yaw=-109.21783} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=picnic1v1},x=77.5,y=68.0,z=110.5,pitch=89.5462,yaw=-69.58479} - EMERALD - NOTEAM
[07:04:11] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: picnic1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] Load done: picnic1v1
[07:04:11] [Server thread/INFO]: World picnic1v1 loaded in 8ms.
[07:04:11] [Craft Scheduler Thread - 7/INFO]: [SWM] Loading world solace.

[07:04:11] [Craft Scheduler Thread - 7/INFO]: [SWM] World solace loaded in 12ms.

[07:04:11] [Server thread/INFO]: -------- World Settings For [solace] --------
[07:04:11] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:11] [Server thread/INFO]: Clear tick list: false
[07:04:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:11] [Server thread/INFO]: View Distance: 10
[07:04:11] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:11] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:11] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:11] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:11] [Server thread/INFO]: Anti X-Ray: true
[07:04:11] [Server thread/INFO]:     Engine Mode: 1
[07:04:11] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:11] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:11] [Server thread/INFO]: Structure Info Saving: true
[07:04:11] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:11] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:11] [Server thread/INFO]: Random Lighting Updates: false
[07:04:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:11] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:11] [Server thread/INFO]: -------- World Settings For [solace] --------
[07:04:11] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:11] [Server thread/INFO]: World async lighting: false
[07:04:11] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:11] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:11] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:11] [Server thread/INFO]: Fix TNT cannons: false
[07:04:11] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:11] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:11] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:11] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:11] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:11] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:11] [Server thread/INFO]: Loading world solace
[07:04:11] [Server thread/INFO]: [BedWars1058] Loading arena: speedway
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena solace with map solace
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-23.5,y=99.8,z=-84.5,pitch=90.0,yaw=-354.57977} - IRON - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-23.5,y=99.8,z=-84.5,pitch=90.0,yaw=-354.57977} - GOLD - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=24.5,y=99.8,z=-84.5,pitch=88.941185,yaw=7.4334717} - IRON - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=24.5,y=99.8,z=-84.5,pitch=88.941185,yaw=7.4334717} - GOLD - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=85.5,y=99.8,z=-23.5,pitch=90.0,yaw=-275.4395} - IRON - Green
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=85.5,y=99.8,z=-23.5,pitch=90.0,yaw=-275.4395} - GOLD - Green
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=85.5,y=99.8,z=24.5,pitch=80.46992,yaw=-234.16791} - IRON - Yellow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=85.5,y=99.8,z=24.5,pitch=80.46992,yaw=-234.16791} - GOLD - Yellow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=24.5,y=99.8,z=85.5,pitch=90.0,yaw=165.66727} - IRON - Aqua
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=24.5,y=99.8,z=85.5,pitch=90.0,yaw=165.66727} - GOLD - Aqua
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-23.5,y=99.8,z=85.5,pitch=85.310585,yaw=137.20331} - IRON - White
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-23.5,y=99.8,z=85.5,pitch=85.310585,yaw=137.20331} - GOLD - White
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-84.5,y=99.8,z=24.5,pitch=88.644966,yaw=277.1541} - IRON - Pink
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-84.5,y=99.8,z=24.5,pitch=88.644966,yaw=277.1541} - GOLD - Pink
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-84.5,y=99.8,z=-23.5,pitch=89.70382,yaw=287.96964} - IRON - Gray
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-84.5,y=99.8,z=-23.5,pitch=89.70382,yaw=287.96964} - GOLD - Gray
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=44.5,y=106.0,z=-43.5,pitch=88.94111,yaw=-245.18498} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=44.5,y=106.0,z=44.5,pitch=90.0,yaw=183.49217} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-43.5,y=106.0,z=44.5,pitch=90.0,yaw=-49.89386} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-43.5,y=106.0,z=-43.5,pitch=86.82334,yaw=-11.622162} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-17.5,y=108.0,z=-17.5,pitch=85.00814,yaw=351.25143} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=-17.5,y=108.0,z=18.5,pitch=89.54619,yaw=-155.58179} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=18.5,y=108.0,z=18.5,pitch=89.84873,yaw=-74.77728} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=solace},x=18.5,y=108.0,z=-17.5,pitch=90.0,yaw=-169.92705} - EMERALD - NOTEAM
[07:04:11] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: solace
[07:04:11] [Server thread/INFO]: [BedWars1058] Load done: solace
[07:04:11] [Server thread/INFO]: World solace loaded in 8ms.
[07:04:11] [Craft Scheduler Thread - 112/INFO]: [SWM] Loading world speedway.

[07:04:11] [Craft Scheduler Thread - 112/INFO]: [SWM] World speedway loaded in 4ms.

[07:04:11] [Server thread/INFO]: -------- World Settings For [speedway] --------
[07:04:11] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:11] [Server thread/INFO]: Clear tick list: false
[07:04:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:11] [Server thread/INFO]: View Distance: 10
[07:04:11] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:11] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:11] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:11] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:11] [Server thread/INFO]: Anti X-Ray: true
[07:04:11] [Server thread/INFO]:     Engine Mode: 1
[07:04:11] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:11] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:11] [Server thread/INFO]: Structure Info Saving: true
[07:04:11] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:11] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:11] [Server thread/INFO]: Random Lighting Updates: false
[07:04:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:11] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:11] [Server thread/INFO]: -------- World Settings For [speedway] --------
[07:04:11] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:11] [Server thread/INFO]: World async lighting: false
[07:04:11] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:11] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:11] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:11] [Server thread/INFO]: Fix TNT cannons: false
[07:04:11] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:11] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:11] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:11] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:11] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:11] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:11] [Server thread/INFO]: Loading world speedway
[07:04:11] [Server thread/INFO]: [BedWars1058] Loading arena: thepandas1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena speedway with map speedway
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-31.5,y=66.8,z=-86.5,pitch=90.0,yaw=12.504639} - IRON - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-31.5,y=66.8,z=-86.5,pitch=90.0,yaw=12.504639} - GOLD - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=32.5,y=66.8,z=-86.5,pitch=88.94111,yaw=-251.11023} - IRON - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=32.5,y=66.8,z=-86.5,pitch=88.94111,yaw=-251.11023} - GOLD - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=87.5,y=66.8,z=-31.5,pitch=86.218254,yaw=-331.637} - IRON - Green
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=87.5,y=66.8,z=-31.5,pitch=86.218254,yaw=-331.637} - GOLD - Green
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=87.5,y=66.8,z=32.5,pitch=90.0,yaw=81.98883} - IRON - Yellow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=87.5,y=66.8,z=32.5,pitch=90.0,yaw=81.98883} - GOLD - Yellow
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=32.5,y=66.8,z=87.5,pitch=88.78983,yaw=-193.95552} - IRON - Aqua
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=32.5,y=66.8,z=87.5,pitch=88.78983,yaw=-193.95552} - GOLD - Aqua
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-31.5,y=66.8,z=87.5,pitch=90.0,yaw=-140.85997} - IRON - White
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-31.5,y=66.8,z=87.5,pitch=90.0,yaw=-140.85997} - GOLD - White
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-86.5,y=66.8,z=32.5,pitch=90.0,yaw=87.585754} - IRON - Pink
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-86.5,y=66.8,z=32.5,pitch=90.0,yaw=87.585754} - GOLD - Pink
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-86.5,y=66.8,z=-31.5,pitch=89.54619,yaw=-324.0229} - IRON - Gray
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-86.5,y=66.8,z=-31.5,pitch=89.54619,yaw=-324.0229} - GOLD - Gray
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=32.5,y=65.0,z=-31.5,pitch=90.0,yaw=-271.2296} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-31.5,y=65.0,z=-31.5,pitch=89.697464,yaw=-101.22623} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-31.5,y=65.0,z=32.5,pitch=90.0,yaw=-228.44516} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=32.5,y=65.0,z=32.5,pitch=90.0,yaw=-312.8036} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-11.5,y=66.0,z=15.5,pitch=90.0,yaw=42.658142} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=-2.5,y=56.0,z=8.5,pitch=90.0,yaw=-319.63635} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=3.5,y=56.0,z=-7.5,pitch=90.0,yaw=-279.37256} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=speedway},x=12.5,y=66.0,z=-14.5,pitch=90.0,yaw=-342.60385} - EMERALD - NOTEAM
[07:04:11] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: speedway
[07:04:11] [Server thread/INFO]: [BedWars1058] Load done: speedway
[07:04:11] [Server thread/INFO]: World speedway loaded in 8ms.
[07:04:11] [Craft Scheduler Thread - 113/INFO]: [SWM] Loading world thepandas1v1.

[07:04:11] [Craft Scheduler Thread - 113/INFO]: [SWM] World thepandas1v1 loaded in 7ms.

[07:04:11] [Server thread/INFO]: -------- World Settings For [thepandas1v1] --------
[07:04:11] [Server thread/INFO]: Chunks to Grow per Tick: 650
[07:04:11] [Server thread/INFO]: Clear tick list: false
[07:04:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[07:04:11] [Server thread/INFO]: View Distance: 10
[07:04:11] [Server thread/INFO]: Item Despawn Rate: 6000
[07:04:11] [Server thread/INFO]: Item Merge Radius: 2.5
[07:04:11] [Server thread/INFO]: Arrow Despawn Rate: 1200
[07:04:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[07:04:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[07:04:11] [Server thread/INFO]: Mob Spawn Range: 4
[07:04:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[07:04:11] [Server thread/INFO]: Anti X-Ray: true
[07:04:11] [Server thread/INFO]:     Engine Mode: 1
[07:04:11] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[07:04:11] [Server thread/INFO]:     Replace Blocks: [1, 5]
[07:04:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[07:04:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[07:04:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[07:04:11] [Server thread/INFO]: Structure Info Saving: true
[07:04:11] [Server thread/INFO]: Sending up to 10 chunks per packet
[07:04:11] [Server thread/INFO]: Max Entity Collisions: 8
[07:04:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[07:04:11] [Server thread/INFO]: Random Lighting Updates: false
[07:04:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[07:04:11] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[07:04:11] [Server thread/INFO]: Max TNT Explosions: 100
[07:04:11] [Server thread/INFO]: -------- World Settings For [thepandas1v1] --------
[07:04:11] [Server thread/INFO]: Keep spawn chunk loaded: true
[07:04:11] [Server thread/INFO]: World async lighting: false
[07:04:11] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[07:04:11] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[07:04:11] [Server thread/INFO]: Allow undead horse types to be leashed: false
[07:04:11] [Server thread/INFO]: Fix TNT cannons: false
[07:04:11] [Server thread/INFO]: Water over lava flow speed: 5
[07:04:11] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[07:04:11] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[07:04:11] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[07:04:11] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[07:04:11] [Server thread/INFO]: Squids will spawn between Y: 45.0 and Y: 0.0
[07:04:11] [Server thread/INFO]: Loading world thepandas1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initialized arena thepandas1v1 with map thepandas1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=211.5,y=69.8,z=-67.5,pitch=90.0,yaw=-143.10248} - IRON - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=211.5,y=69.8,z=-67.5,pitch=90.0,yaw=-143.10248} - GOLD - Red
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=-42.5,y=69.8,z=-52.5,pitch=90.0,yaw=-82.318146} - IRON - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=-42.5,y=69.8,z=-52.5,pitch=90.0,yaw=-82.318146} - GOLD - Blue
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=5.5,y=70.0,z=-60.5,pitch=90.0,yaw=-148.57413} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=165.5,y=70.0,z=-60.5,pitch=89.84873,yaw=-78.561104} - DIAMOND - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=55.5,y=68.0,z=-83.5,pitch=88.033485,yaw=-91.8474} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=63.5,y=68.0,z=-29.5,pitch=90.0,yaw=-34.818165} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=117.5,y=68.0,z=-37.5,pitch=90.0,yaw=-272.91898} - EMERALD - NOTEAM
[07:04:11] [Server thread/INFO]: [BedWars1058] DEBUG: Initializing new generator at: Location{world=CraftWorld{name=thepandas1v1},x=109.5,y=68.0,z=-91.5,pitch=90.0,yaw=-69.18228} - EMERALD - NOTEAM
[07:04:11] [Server thread/WARN]: [BedWars1058] Using TeamSelectorAssigner team assigner on arena: thepandas1v1
[07:04:11] [Server thread/INFO]: [BedWars1058] Load done: thepandas1v1
[07:04:11] [Server thread/INFO]: World thepandas1v1 loaded in 24ms.
[07:04:11] [Server thread/INFO]: Registering /party command..
[07:04:12] [Server thread/INFO]: [BedWars1058] Hook into Citizens support. /bw npc
[07:04:14] [Server thread/INFO]: [BedWars1058] This server is running in MULTIARENA with auto-scale false
[07:04:14] [Craft Scheduler Thread - 94/WARN]: [Matrix] Failed to fetch license: Invalid token
[07:04:19] [Craft Scheduler Thread - 100/WARN]: [Matrix] Failed to fetch license: Invalid token
[07:04:24] [Craft Scheduler Thread - 8/WARN]: [Matrix] Failed to fetch license: Invalid token
[07:04:24] [Craft Scheduler Thread - 8/WARN]: [Matrix] Failed to fetch your license, please check your token.
[07:04:40] [Server thread/INFO]:    bw safemode enable/ disable

[07:04:42] [Server thread/INFO]:    bw safemode enable/ disable