Merge branch 'master-MC1.8.9' of github.com:MightyPirates/OpenComputers into master-MC1.9.4

This commit is contained in:
Florian Nücke 2016-05-27 23:52:52 +02:00
commit 18f7091c72

View File

@ -122,6 +122,7 @@ trait Rotatable extends RotationAware with internal.Rotatable {
def setState(newState: IBlockState): Boolean = {
if (oldState.hashCode() != newState.hashCode()) {
world.setBlockState(getPos, newState)
updateTranslation()
true
}
else false