From 1e2e2ea3bb68031e7924c080e77ff26c3a5fb039 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 25 May 2024 16:50:33 +0200 Subject: rotate clock of fate with other player panels --- play.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'play.js') diff --git a/play.js b/play.js index ab0edec..f2dc0a2 100644 --- a/play.js +++ b/play.js @@ -235,15 +235,15 @@ const fate_effect_text = [ /* PANEL ORDER */ -const panel_order = [ P_PRUSSIA, P_HANOVER, P_RUSSIA, P_SWEDEN, P_AUSTRIA, P_IMPERIAL, P_FRANCE ] +const panel_order = [ P_PRUSSIA, P_HANOVER, P_RUSSIA, P_SWEDEN, P_AUSTRIA, P_IMPERIAL, P_FRANCE, P_FRANCE+1 ] function sort_power_panel() { let start = 0 if (view) start = view.power ui.power_panel_list.replaceChildren() - for (let i = 0; i < 7; ++i) { - let p = panel_order[(i + start) % 7] + for (let i = 0; i < 8; ++i) { + let p = panel_order[(i + start) % 8] ui.power_panel_list.appendChild(ui.power_panel[p]) } } @@ -266,6 +266,7 @@ const ui = { document.getElementById("hand_austria_panel"), document.getElementById("hand_imperial_panel"), document.getElementById("hand_france_panel"), + document.getElementById("clock_of_fate_panel"), ], hand: [ document.getElementById("hand_prussia"), -- cgit v1.2.3