diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-08 11:40:04 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-08 11:40:04 +0000 |
commit | 8b9f51b9a547531a8b045f0b60d9fec9e58da4fd (patch) | |
tree | 909b891e92e37aefd07d0ed5d6c62db44efef547 | |
parent | e3d8b1c1639218973805c0fa64e33af8b66b33aa (diff) | |
download | 1989-dawn-of-freedom-8b9f51b9a547531a8b045f0b60d9fec9e58da4fd.tar.gz |
Fix typo in Normalization
-rw-r--r-- | events.txt | 2 | ||||
-rw-r--r-- | rules.js | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -400,7 +400,7 @@ add_infl_free CARD 52 - Normalisation # Remove all Democratic SPs from the Czechoslovakia Elite and Bureaucrat Spaces. permanently_remove -if !is_auto_resolve(C_NORMALISATION) +if !is_auto_resolve(C_NORMALIZATION) normalisation prompt 'the Czechoslovakia Elite and Bureaucrat Spaces' remove_all_infl 2 @@ -8304,7 +8304,7 @@ CODE[51] = [ // 40th Anniversary Celebration* CODE[52] = [ // Normalisation [ vm_permanently_remove ], - [ vm_if, ()=>!is_auto_resolve(C_NORMALISATION) ], + [ vm_if, ()=>!is_auto_resolve(C_NORMALIZATION) ], [ vm_normalisation ], [ vm_prompt, 'the Czechoslovakia Elite and Bureaucrat Spaces' ], [ vm_remove_all_infl, 2 ], |