Bugfixes, cleanup / Created stub processor class

This commit is contained in:
Anuken
2020-03-17 11:51:33 -04:00
parent 08488857da
commit 0ed21a1d5f
6 changed files with 58 additions and 39 deletions

View File

@@ -497,6 +497,10 @@ public class Tile implements Position{
other.entity = null;
}
other.block = Blocks.air;
//manually call changed event
other.updateOcclusion();
world.notifyChanged(other);
}
}
}