summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-07-19 20:17:57 +0200
committerTor Andersson <tor@ccxvii.net>2023-07-19 20:19:21 +0200
commit18bff30a0c1d0b533b49bee658703eca07d81ca7 (patch)
tree9105b304851f3e5201357e85114beb151f407795
parent25354888d43bdb340e9a277b6a45dadd7c6f2d19 (diff)
downloadrommel-in-the-desert-18bff30a0c1d0b533b49bee658703eca07d81ca7.tar.gz
Fix typo in combat matrix Inf vs AT.
-rw-r--r--play.html2
-rw-r--r--rules.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/play.html b/play.html
index 736a975..53c5ead 100644
--- a/play.html
+++ b/play.html
@@ -203,7 +203,7 @@
<td><img src="icons/infantry.svg" title="Infantry">
<td>SF
<td class="required_target" title="Required target">(SF)
-<td>SF
+<td>DF
<td class="only_unsupported" title="Only if unsupported">[TF]
<tr>
<td><img src="icons/motorized_antitank_old.svg" title="Anti-tank">
diff --git a/rules.js b/rules.js
index 686dcdb..391b9c2 100644
--- a/rules.js
+++ b/rules.js
@@ -122,7 +122,7 @@ const SUPPLY_RANGE = [ 1, 2, 3, 0, 3 ]
const FIREPOWER_MATRIX = [
[ SF, DF, SF, TF ],
- [ SF, SF, SF, TF ],
+ [ SF, SF, DF, TF ],
[ DF, SF, SF, TF ],
[ SF, DF, DF, SF ],
]