1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-18 03:21:47 +02:00

minor fixes

This commit is contained in:
Maik Wild 2018-09-11 17:07:07 +02:00
parent d1030b5198
commit 3ea6a301f1
3 changed files with 5 additions and 5 deletions

View File

@ -38,8 +38,8 @@ But be careful, eating too much might have it´s consequences too...
]])
if global.scenario and global.config then
if global.config.player_list then
if global.scenario and global.scenario.config then
if global.scenario.config.player_list then
global.scenario.config.player_list.enable_coin_col = nil
end
if global.scenario.config.fish_market then

View File

@ -19,7 +19,7 @@ local tiles_per_tick = 32
--require "map_gen.combined.dimensions"
--require "map_gen.combined.dagobah_swamp"
--require "map_gen.combined.meteor_strike" --unfinished
--require 'map_gen/combined/cave_miner/cave_miner'
require 'map_gen.combined.cave_miner.cave_miner'
--presets--

View File

@ -449,8 +449,8 @@ local function get_default_player_settings()
columns[6] = coin_heading_name
offset = 7
end
columns[offset] = deaths_heading_name,
columns[offset + 1] = poke_name_heading_name,
columns[offset] = deaths_heading_name
columns[offset + 1] = poke_name_heading_name
columns[offset + 2] = report_heading_name
return {
columns = columns,