diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-14 15:26:13 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-14 15:26:13 +0000 |
commit | f615efdd51ce089c5631c81339b4b3c1b8609ffd (patch) | |
tree | 3fafd2b886d41dbd49d83c52bf072be34e3cdd2d | |
parent | 69658dea8662d4caa31f7b88ebf5fffefb421009 (diff) | |
download | 1989-dawn-of-freedom-f615efdd51ce089c5631c81339b4b3c1b8609ffd.tar.gz |
Fix icons COM to DEM
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2815,7 +2815,7 @@ function get_icons(starting_control, end_control) { console.log('in long bit') if (starting_control === DEM && end_control === COM) return ' (£DC .to £CC)' - else if (starting_control === COM && end_control === COM) + else if (starting_control === COM && end_control === DEM) return ' (£CC .to £DC)' else if (starting_control === 'd_ahead' && end_control === DEM) return ' (£DU .to £DC)' |