Fixed beam drills not contributing to production

This commit is contained in:
Anuken
2022-01-27 14:39:21 -05:00
parent ec32981f4e
commit 7cdd9edb5f
2 changed files with 1 additions and 0 deletions

View File

@@ -267,6 +267,7 @@ public class BeamDrill extends Block{
Item drop = tile == null ? null : tile.wallDrop();
if(items.total() < itemCapacity && drop != null){
items.add(drop, 1);
produced(drop);
}
}
time %= drillTime;