all chaos modes can now be used for achievements

This commit is contained in:
Zeno Rogue 2020-02-26 00:54:25 +01:00
parent acfd182913
commit 04e5a47371
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ EX bool wrongMode(char flags) {
#if CAP_TOUR #if CAP_TOUR
if(tour::on) return true; if(tour::on) return true;
#endif #endif
if(chaosmode != (flags == rg::chaos)) return true; if((!!chaosmode) != (flags == rg::chaos)) return true;
if((numplayers() > 1) != (flags == rg::multi)) return true; if((numplayers() > 1) != (flags == rg::multi)) return true;
return false; return false;
} }