summaryrefslogtreecommitdiff
path: root/create.html
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-10-12 12:58:16 +0200
committerTor Andersson <tor@ccxvii.net>2023-10-20 18:54:21 +0200
commit0920295b9ad52bd2c6ef383b88a7e6e7313caa47 (patch)
treef2ed0d23a40618cd7cdd1c0f77ef48819c8a3180 /create.html
parent17e9c3d2393ee698b088735a9a382c102c38a8a4 (diff)
downloadjulius-caesar-0920295b9ad52bd2c6ef383b88a7e6e7313caa47.tar.gz
Make delayed hit assignment default.
Diffstat (limited to 'create.html')
-rw-r--r--create.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/create.html b/create.html
index 729f63f..a8eabf1 100644
--- a/create.html
+++ b/create.html
@@ -17,22 +17,6 @@ deployed blocks in each city is maintained.
Julius Caesar goes first on the first turn regardless of the cards played.
</dl>
-<dl>
-<dt>
-<label>
-<input type="checkbox" id="delay_hits" name="delay_hits" value="true">
-Delayed hit assignment
-</label>
-<dd>Fire blocks with the same initiative together.
-
-<dt>
-<label>
-<input type="checkbox" id="autohit" name="autohit" value="true">
-Automatic hit assignment
-</label>
-<dd>Assign hits automatically when there is no choice.
-</dl>
-
<p>
House rules:
<br><label><input type="checkbox" name="max_2_events" value="true">Max 2 event cards per hand.</label>
@@ -48,10 +32,3 @@ House rules:
<br><label><input type="checkbox" name="remove_pluto" value="true">Remove Pluto.</label>
<br><label><input type="checkbox" name="remove_vulcan" value="true">Remove Vulcan.</label>
-->
-
-<script>
-let cb1 = document.getElementById("autohit")
-let cb2 = document.getElementById("delay_hits")
-cb1.onchange = function () { if (cb1.checked) cb2.checked = false }
-cb2.onchange = function () { if (cb2.checked) cb1.checked = false }
-</script>