disabled dualgeom and special chaos in WEB

This commit is contained in:
Zeno Rogue 2019-06-01 17:03:55 +02:00
parent 41dc9dfa61
commit 5a44320585
1 changed files with 2 additions and 1 deletions

View File

@ -492,6 +492,7 @@ void show_chaos() {
dialog::add_action([] { dialog::do_if_confirmed([] { restart_game(rg::chaos); }); });
if(chaosUnlocked) for(int a=1; a<5; a++) {
if(a > 1 && ISWEB) continue;
dialog::addBoolItem(
a == 1 ? XLATN("Crossroads IV") :
a == 2 ? XLATN("Palace") :
@ -545,7 +546,7 @@ void showChangeMode() {
#if CAP_RACING
dialog::addBoolItem(XLAT("racing mode"), racing::on, 'R');
#endif
#if CAP_ARCM
#if CAP_ARCM && !ISWEB
if(multi::players == 1) {
dialog::addBoolItem(XLAT("dual geometry mode"), dual::state, 'D');
dialog::add_action([] { dialog::do_if_confirmed([] { restart_game(rg::dualmode); }); });