Add rotations to various blocks that were missing them.

Up/down levers still broken.

Fixes WORLDEDIT-3490.
This commit is contained in:
wizjany
2017-02-26 18:56:38 -05:00
parent a4455e875e
commit e511758d99
3 changed files with 833 additions and 122 deletions

View File

@ -25,7 +25,7 @@ import javax.annotation.Nullable;
import java.util.Collections;
import java.util.Map;
class SimpleState implements State {
public class SimpleState implements State {
private Byte dataMask;
private Map<String, SimpleStateValue> values;
@ -47,7 +47,7 @@ class SimpleState implements State {
return null;
}
byte getDataMask() {
public byte getDataMask() {
return dataMask != null ? dataMask : 0xF;
}