summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index c6858e3..cfea486 100644
--- a/rules.js
+++ b/rules.js
@@ -6254,7 +6254,10 @@ function goto_strike_storm() {
log(`L${game.battle.array[A2]} struck L${game.battle.array[D2]}.`)
}
game.battle.sg = [ A2 ]
- game.battle.hg = [ D2 ]
+ if (game.battle.array[D2] !== NOBODY)
+ game.battle.hg = [ D2 ]
+ else
+ game.battle.hg = []
} else {
if (game.battle.garrison) {
if (game.battle.array[D2] === NOBODY)