Don't update drills when there is nothing to drill

This commit is contained in:
Anuken
2025-06-30 19:00:49 -04:00
parent 06fff3efac
commit ecb3984110

View File

@@ -246,7 +246,7 @@ public class Drill extends Block{
@Override
public boolean shouldConsume(){
return items.total() < itemCapacity && enabled;
return items.total() < itemCapacity && enabled && dominantItem != null;
}
@Override