From 275d97d918cec9664b16a03889dff4c794ed8a0b Mon Sep 17 00:00:00 2001 From: Joël Simoneau Date: Thu, 3 Apr 2025 07:20:43 -0400 Subject: Fix Shaded 6 for non attack --- rules.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rules.js b/rules.js index c9d5fc9..8a289da 100644 --- a/rules.js +++ b/rules.js @@ -5635,7 +5635,12 @@ function vm_shaded_6() { game.state = "campaign" } -function vm_shaded_6_2() { game.state = "shaded_6_2" } +function vm_shaded_6_2() { + if (has_piece_faction(game.vm.m, BK) || has_piece_faction(game.vm.m, VE)) + game.state = "shaded_6_2" + else + vm_next() +} states.shaded_6_2 = { prompt() { -- cgit v1.2.3