This commit is contained in:
Anuken
2026-02-04 14:13:39 -05:00
parent 1381291256
commit f92e7fffac

View File

@@ -353,7 +353,9 @@ public class Turret extends ReloadTurret{
@Override
public boolean shouldConsume(){
return isShooting() || reloadCounter < reload;
//when the block is first placed, it shouldn't consume power/liquid just to "cool down" from the initial reload
//thus, it should only consume once it has actually shot at something
return isShooting() || (reloadCounter < reload && totalShots > 0);
}
@Override