Building target discovered check

This commit is contained in:
Anuken
2022-10-22 11:06:08 -04:00
parent b2d27c70e6
commit 43b4dc321c
4 changed files with 19 additions and 2 deletions

View File

@@ -63,6 +63,10 @@ public class BaseTurret extends Block{
super.drawPlace(x, y, rotation, valid);
Drawf.dashCircle(x * tilesize + offset, y * tilesize + offset, range, Pal.placing);
if(fogRadiusMultiuplier < 0.99f && state.rules.fog){
Drawf.dashCircle(x * tilesize + offset, y * tilesize + offset, range * fogRadiusMultiuplier, Pal.lightishGray);
}
}
@Override