Fixed #11603
This commit is contained in:
@@ -353,7 +353,9 @@ public class Turret extends ReloadTurret{
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean shouldConsume(){
|
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
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user