More patterns fixes

This commit is contained in:
Aleksey 2020-10-15 15:18:45 +03:00
parent 8306f245e1
commit 835b2e56d6
11 changed files with 40 additions and 32 deletions

View file

@ -37,18 +37,19 @@ public class BlockGate extends FenceGateBlock implements Patterned {
@Override
public String getModelPattern(String block) {
Identifier blockId = Registry.BLOCK.getId(this);
Identifier parentId = Registry.BLOCK.getId(parent);
if (block.contains("wall")) {
if (block.contains("open")) {
return Patterned.createJson(Patterned.GATE_MODEL_WALL_OPEN, parentId, block);
return Patterned.createJson(Patterned.GATE_MODEL_WALL_OPEN, parentId, blockId.getPath());
} else {
return Patterned.createJson(Patterned.GATE_MODEL_WALL_CLOSED, parentId, block);
return Patterned.createJson(Patterned.GATE_MODEL_WALL_CLOSED, parentId, blockId.getPath());
}
}
if (block.contains("open")) {
return Patterned.createJson(Patterned.GATE_MODEL_OPEN, parentId, block);
return Patterned.createJson(Patterned.GATE_MODEL_OPEN, parentId, blockId.getPath());
}
return Patterned.createJson(Patterned.GATE_MODEL_CLOSED, parentId, block);
return Patterned.createJson(Patterned.GATE_MODEL_CLOSED, parentId, blockId.getPath());
}
@Override