Fix craftbook

This commit is contained in:
Jesse Boyd
2019-12-20 05:54:03 +00:00
parent f37bc9417c
commit c2cc4f5aeb
8 changed files with 21 additions and 38 deletions

View File

@ -7,7 +7,7 @@ public enum CompoundInput {
CONTAINER() {
@Override
public BaseBlock get(BlockState state, ITileInput input, int x, int y, int z) {
return state.toBaseBlock(input.getTag(x, y, z));
return state.toBaseBlock(input.getTile(x, y, z));
}
}

View File

@ -91,7 +91,7 @@ public class FuzzyBlockState extends BlockState {
@Override
public BaseBlock toBaseBlock() {
return new BaseBlock();
return new BaseBlock(this);
}
@Override