diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-28 20:51:07 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-01-28 20:51:07 +0100 |
commit | a1ce65223d7ef384544514ae77f1459956f10569 (patch) | |
tree | ef0c14e424a6493cca099cca08e4ad618da7499e /create.html | |
parent | f042b65f7d413653fae66b0256746cc5d0e35cfe (diff) | |
download | julius-caesar-a1ce65223d7ef384544514ae77f1459956f10569.tar.gz |
Reword delayed/autohit options.
Diffstat (limited to 'create.html')
-rw-r--r-- | create.html | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/create.html b/create.html index 6ca0763..b0e3f92 100644 --- a/create.html +++ b/create.html @@ -21,18 +21,16 @@ Julius Caesar goes first on the first turn regardless of the cards played. <dt> <label> <input type="checkbox" id="delay_hits" name="delay_hits" value="true"> -Delay hit assignment +Delayed hit assignment </label> -<dd>Let all blocks with the same initiative fire before assigning hits. -<dd>This option is recommended for games that are not played live. +<dd>Fire all blocks with the same initiative before assigning hits. <dt> <label> <input type="checkbox" id="autohit" name="autohit" value="true"> -Automatically assign hits when possible. +Automatic hit assignment </label> -<dd> -<i class="warning" id="warning"></i> +<dd>Assign hits automatically when there is no choice. </dl> <p> @@ -51,19 +49,9 @@ House rules: <br><label><input type="checkbox" name="remove_vulcan" value="true">Remove Vulcan.</label> --> -<p> -<i class="warning" id="warning"></i> - <script> let cb1 = document.getElementById("autohit") let cb2 = document.getElementById("delay_hits") -let msg = document.getElementById("warning") -function warn_opts() { - if (cb1.checked) - msg.textContent = "Tip: Delay hit assignment is a better option for async play." - else - msg.textContent = "" -} -cb1.onchange = function () { if (cb1.checked) cb2.checked = false; warn_opts() } -cb2.onchange = function () { if (cb2.checked) cb1.checked = false; warn_opts() } +cb1.onchange = function () { if (cb1.checked) cb2.checked = false } +cb2.onchange = function () { if (cb2.checked) cb1.checked = false } </script> |