Skip to content

Commit

Permalink
All settings: Fix missing flags checkbox caused by 'possible flags' o…
Browse files Browse the repository at this point in the history
…rder (#8997)

Previously, the 'rivers' checkbox was missing for mgcarpathian, caused by the 'possible flags' order: 'caverns,nocaverns,rivers,norivers'.
Also reorder mgcarpathian 'possible flags', but only for consistency.
  • Loading branch information
srifqi authored and paramat committed Sep 27, 2019
1 parent 5fde697 commit b79741c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions builtin/mainmenu/dlg_settings_advanced.lua
Expand Up @@ -688,14 +688,16 @@ local function create_change_setting_formspec(dialogdata)
height = height - 1

local fields = {} -- To build formspec
for i, name in ipairs(setting.possible) do
local j = 1
for _, name in ipairs(setting.possible) do
if name:sub(1, 2) ~= "no" then
local x = 0.5
local y = height + i / 2 - 0.75
if i - 1 >= flags_count / 2 then -- 2nd column
local y = height + j / 2 - 0.75
if j - 1 >= flags_count / 2 then -- 2nd column
x = 5
y = y - max_height
end
j = j + 1;
local checkbox_name = "cb_" .. name
local is_enabled = flags[name] == true -- to get false if nil
checkboxes[checkbox_name] = is_enabled
Expand Down
2 changes: 1 addition & 1 deletion builtin/settingtypes.txt
Expand Up @@ -1615,7 +1615,7 @@ mgv7_np_dungeons (Dungeon noise) noise_params_3d 0.9, 0.5, (500, 500, 500), 0, 2
[*Mapgen Carpathian]

# Map generation attributes specific to Mapgen Carpathian.
mgcarpathian_spflags (Mapgen Carpathian specific flags) flags caverns,norivers caverns,nocaverns,rivers,norivers
mgcarpathian_spflags (Mapgen Carpathian specific flags) flags caverns,norivers caverns,rivers,nocaverns,norivers

# Defines the base ground level.
mgcarpathian_base_level (Base ground level) float 12.0
Expand Down

0 comments on commit b79741c

Please sign in to comment.