This commit is contained in:
Anuken
2021-10-23 09:26:30 -04:00
parent a7c78c4193
commit 88d1165909
3 changed files with 3 additions and 4 deletions
@@ -109,7 +109,7 @@ public class OverdriveProjector extends Block{
float realRange = range + phaseHeat * phaseRangeBoost;
charge = 0f;
indexer.eachBlock(this, realRange, other -> true, other -> other.applyBoost(realBoost(), reload + 1f));
indexer.eachBlock(this, realRange, other -> other.block.canOverdrive, other -> other.applyBoost(realBoost(), reload + 1f));
}
if(timer(timerUse, useTime) && efficiency() > 0 && consValid()){
@@ -231,7 +231,7 @@ public class Reconstructor extends UnitBlock{
@Override
public boolean shouldConsume(){
return constructing();
return constructing() && enabled;
}
public UnitType unit(){