Cheaper Erekir cores

This commit is contained in:
Anuken
2022-10-20 00:56:11 -04:00
parent c38a8c3ef4
commit cc7fefc9e2
3 changed files with 13 additions and 12 deletions

View File

@@ -18,6 +18,7 @@ public class BaseTurret extends Block{
public float range = 80f;
public float placeOverlapMargin = 8 * 7f;
public float rotateSpeed = 5;
public float fogRadiusMultiuplier = 1f;
/** Effect displayed when coolant is used. */
public Effect coolEffect = Fx.fuelburn;
@@ -53,7 +54,7 @@ public class BaseTurret extends Block{
}
placeOverlapRange = Math.max(placeOverlapRange, range + placeOverlapMargin);
fogRadius = Math.max(Mathf.round(range / tilesize), fogRadius);
fogRadius = Math.max(Mathf.round(range / tilesize * fogRadiusMultiuplier), fogRadius);
super.init();
}