diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-16 09:06:59 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-16 09:06:59 +0000 |
commit | 7f729722dec329486d8d205c593f3517487e3da9 (patch) | |
tree | 6a97caa65573f6b8c974d2b67b9296a805be3b06 /rules.js | |
parent | 04971bb43cc866cecbcca0ce07d63ea3a3ce3803 (diff) | |
download | 1989-dawn-of-freedom-7f729722dec329486d8d205c593f3517487e3da9.tar.gz |
Improve the wall must go logging
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -3255,10 +3255,16 @@ function finish_the_wall() { } } if (game.active === DEM) {next_player()} + game.return = COM vm_next () } else { permanently_remove(C_THE_WALL_MUST_GO) delete game.the_wall_must_go + if (game.vm_infl_to_do) { + game.return = COM + } else { + game.return = game.active + } vm_return() } } |