Fix wrong color for team gate

This commit is contained in:
Connor Monahan 2018-11-19 02:02:44 -06:00
parent 7f7babf104
commit db7a7864f9
1 changed files with 1 additions and 4 deletions

View File

@ -552,10 +552,7 @@ public class ZoneLobby {
}
private void setBlock(Block block, TeamKind kind) {
BlockState blockState = block.getState();
blockState.setType(kind.getBlockHead().getType());
blockState.setData(kind.getBlockHead().getData());
blockState.update(true);
block.setType(kind.getMaterial());
}
private void placeAutoAssignGate() {