'land structure' selector now displays OFF if the default structure is selected

This commit is contained in:
Zeno Rogue 2021-04-23 20:40:07 +02:00
parent ce11319968
commit 60c1e0f8f3
1 changed files with 12 additions and 1 deletions

View File

@ -675,7 +675,18 @@ EX void mode_higlights() {
}
EX void menuitem_land_structure(char key) {
dialog::addSelItem(XLAT("land structure"), land_structure_name(true), key);
eLandStructure ls =
bounded ? lsSingle :
(tactic::on || princess::challenge) ? lsSingle :
yendor::on ? yendor::get_land_structure() :
specialland == laCanvas ? lsSingle :
nice_walls_available() ? lsNiceWalls :
lsNoWalls;
if(ls == land_structure)
dialog::addBoolItem(XLAT("land structure"), false, key);
else
dialog::addSelItem(XLAT("land structure"), land_structure_name(true), key);
dialog::add_action_push(show_chaos);
}