From ba47081f804c907202cca065a0d7e654dd26fc5f Mon Sep 17 00:00:00 2001
From: Tor Andersson <tor@ccxvii.net>
Date: Sat, 26 Oct 2024 19:27:25 +0200
Subject: Add supply check back to sequence of play.

---
 rules.js | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/rules.js b/rules.js
index 6df687f..f5afb73 100644
--- a/rules.js
+++ b/rules.js
@@ -1109,6 +1109,7 @@ const sequence_of_play = [
 	{ power: P_FRANCE, action: start_action_stage },
 	{ power: P_FRANCE, action: goto_tactical_cards },
 	{ power: P_BAVARIA, action: goto_tactical_cards },
+	{ power: P_FRANCE, action: goto_supply },
 	{ power: P_FRANCE, action: init_movement },
 	{ power: P_FRANCE, action: goto_movement_global },
 	{ power: P_FRANCE, action: end_movement },
@@ -1127,6 +1128,7 @@ const sequence_of_play = [
 				next_sequence_of_play()
 		},
 	},
+	{ power: P_PRUSSIA, action: goto_supply },
 	{ power: P_PRUSSIA, action: init_movement },
 	{ power: P_PRUSSIA, action: goto_movement_global },
 	{ power: P_PRUSSIA, action: end_movement },
@@ -1136,6 +1138,7 @@ const sequence_of_play = [
 	{ power: P_PRUSSIA, action: goto_prussia_annexes_silesia },
 
 	{ power: P_AUSTRIA, action: start_action_stage },
+
 	{ power: P_AUSTRIA, action: goto_tactical_cards },
 	{
 		power: P_SAXONY,
@@ -1146,7 +1149,10 @@ const sequence_of_play = [
 				goto_tactical_cards()
 		},
 	},
+	{ power: P_AUSTRIA, action: goto_supply },
+
 	{ power: P_PRAGMATIC, action: goto_tactical_cards },
+	{ power: P_PRAGMATIC, action: goto_supply },
 
 	// alternate moves on flanders starting with pragmatic army
 	{ power: P_PRAGMATIC, action: init_movement },
-- 
cgit v1.2.3