1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2024-12-30 23:17:53 +02:00

minor fix

This commit is contained in:
Gerkiz 2020-08-22 20:28:24 +02:00
parent 7e2215ee3b
commit f828c422b2

View File

@ -226,6 +226,17 @@ local fortress_functions = {
'has disabled the item spillage function. Ores no longer drop to surface when mining.'
)
end
end,
['comfy_panel_void_or_tile'] = function(event)
local WPT = package.loaded['maps.mountain_fortress_v3.table']
local this = WPT.get()
if event.element.switch_state == 'left' then
this.void_or_tile = 'out-of-map'
get_actor(event, '{Void}', 'has changes the the tiles of the zones to: out-of-map (void)')
else
this.void_or_tile = 'lab-dark-2'
get_actor(event, '{Void}', 'has changes the the tiles of the zones to: dark-tiles (flammable tiles)')
end
end
}
@ -477,6 +488,19 @@ local build_config_gui = (function(player, frame)
'Left = enables ore spillage to surface when mining.\nRight = disables ore spillage to surface when mining.'
)
scroll_pane.add({type = 'line'})
switch_state = 'right'
if this.void_or_tile then
switch_state = 'left'
end
add_switch(
scroll_pane,
switch_state,
'comfy_panel_void_or_tile',
'Void Tiles',
'Left = changes the tiles to out-of-map.\nRight = changes the tiles to lab-dark-2'
)
scroll_pane.add({type = 'line'})
end
end
for _, e in pairs(scroll_pane.children) do