X-Git-Url: https://jasonwoof.com/gitweb/?p=hexbog.git;a=blobdiff_plain;f=main.coffee;h=459f152b95f323cedece996784d8744c1ea9fe1d;hp=147b76a2ff4680e47cd7b2881ea122ae5aac5db2;hb=b20403c1264f721d3e85779df74200def0bea565;hpb=643696e68d5a23c907592334432796738fcc288c diff --git a/main.coffee b/main.coffee index 147b76a..459f152 100644 --- a/main.coffee +++ b/main.coffee @@ -548,7 +548,11 @@ blip_selection = -> force = effects.force.last() if force > 0 for tile in area.up - tile.new_hp = tile.hp + force + if tile.new_hp + # for overlap of board and [n]neigbors + tile.new_hp += force + else + tile.new_hp = tile.hp + force for s in spaces s.tile.new_hp ?= s.tile.hp - 1 if s.tile.new_hp < 0