Added new conveyor animation

This commit is contained in:
Anuken
2018-06-21 12:41:33 -04:00
parent 8c194398a9
commit 13bb78ffa0
18 changed files with 287 additions and 285 deletions

View File

@@ -48,7 +48,7 @@ public class BlockInventoryFragment implements Fragment {
public void showFor(Tile t){
this.tile = t.target();
if(tile == null || tile.entity == null || !tile.block().isAccessible()) return;
if(tile == null || tile.entity == null || !tile.block().isAccessible() || tile.entity.items.totalItems() == 0) return;
rebuild();
}