'reset special modes' disables dual geometry

This commit is contained in:
Zeno Rogue 2021-03-06 11:59:32 +01:00
parent 3940f624fd
commit 693ee60fe3
1 changed files with 2 additions and 0 deletions

View File

@ -1109,6 +1109,8 @@ EX void resetModes(char leave IS('c')) {
if(inv::on != (leave == rg::inv)) stop_game_and_switch_mode(rg::inv);
if(chaosmode != (leave == rg::chaos)) stop_game_and_switch_mode(rg::chaos);
if((!!dual::state) != (leave == rg::dualmode)) stop_game_and_switch_mode(rg::dualmode);
if(peace::on != (leave == rg::peace)) stop_game_and_switch_mode(rg::peace);
#if CAP_TOUR
if(tour::on != (leave == rg::tour)) stop_game_and_switch_mode(rg::tour);