Adding Concrete powder to replaced blocks
Dieser Commit ist enthalten in:
Ursprung
32d3e9c92f
Commit
f229f88d63
@ -45,12 +45,15 @@ public class FightTeam {
|
||||
private static final BaseBlock GLASS_PANE = new BaseBlock(Material.STAINED_GLASS_PANE.getId(), COLOR_TO_REPLACE);
|
||||
@SuppressWarnings("deprecation")
|
||||
private static final BaseBlock CONCRETE = new BaseBlock(Material.CONCRETE.getId(), COLOR_TO_REPLACE);
|
||||
@SuppressWarnings("deprecation")
|
||||
private static final BaseBlock CONCRETE_POWDER = new BaseBlock(Material.CONCRETE_POWDER.getId(), COLOR_TO_REPLACE);
|
||||
|
||||
private static final Set<BaseBlock> WOOL_SET = Collections.singleton(WOOL);
|
||||
private static final Set<BaseBlock> CONCRETE_SET = Collections.singleton(CONCRETE);
|
||||
private static final Set<BaseBlock> CLAY_SET = Collections.singleton(CLAY);
|
||||
private static final Set<BaseBlock> GLASS_SET = Collections.singleton(GLASS);
|
||||
private static final Set<BaseBlock> GLASS_PANE_SET = Collections.singleton(GLASS_PANE);
|
||||
private static final Set<BaseBlock> CONCRETE_POWDER_SET = Collections.singleton(CONCRETE_POWDER);
|
||||
|
||||
private FightPlayer leader;
|
||||
private final Set<FightPlayer> players = new HashSet<>();
|
||||
@ -261,6 +264,7 @@ public class FightTeam {
|
||||
try {
|
||||
e.replaceBlocks(region, WOOL_SET, new BaseBlock(WOOL.getId(), c.getWoolData()));
|
||||
e.replaceBlocks(region, CONCRETE_SET, new BaseBlock(CONCRETE.getId(), c.getWoolData()));
|
||||
e.replaceBlocks(region, CONCRETE_POWDER_SET, new BaseBlock(CONCRETE.getId(), c.getWoolData()));
|
||||
e.replaceBlocks(region, CLAY_SET, new BaseBlock(CLAY.getId(), c.getWoolData()));
|
||||
e.replaceBlocks(region, GLASS_SET, new BaseBlock(GLASS.getId(), c.getWoolData()));
|
||||
e.replaceBlocks(region, GLASS_PANE_SET, new BaseBlock(GLASS_PANE.getId(), c.getWoolData()));
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren