add missing method to baseblock

This commit is contained in:
Jesse Boyd 2019-07-18 17:00:33 +10:00
parent be8213d8ee
commit 1bc35eb59a
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -299,4 +299,8 @@ public class BaseBlock implements BlockStateHolder<BaseBlock>, TileEntityBlock {
return blockState.getAsString();
// }
}
public BlockState toBlockState() {
return blockState;
}
}