Skip to content

Commit

Permalink
Fix max HP once more
Browse files Browse the repository at this point in the history
Signed-off-by: Kirill Leyfer <[email protected]>
  • Loading branch information
BOOtak committed Oct 2, 2022
1 parent 8e749f4 commit cea750f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Tower(override val pos: Vector2, override var shouldDestroy: Boolean = fal
pos.x, pos.y - Const.Balance.Tower.VISUAL_HEIGHT
)

var currentHP = Const.Balance.Tower.RADIUS
var currentHP = Const.Balance.Tower.MAX_HP
private val beaconPoint = topPoint.cpy().add(0f, -65f)
private val beaconTop = beaconPoint.cpy().add(0f, 30f)
private val beaconBottom = beaconPoint.cpy().add(0f, -30f)
Expand Down

0 comments on commit cea750f

Please sign in to comment.