removed unused setting

This commit is contained in:
monica
2023-01-09 11:14:59 -05:00
parent 73589b5c81
commit ca8dc6c6cf
3 changed files with 13 additions and 12 deletions

View File

@@ -1,11 +1,12 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 1.3.0 Version: 1.2.10
Date: 2022-1-7 Date: 2022-1-9
Changes: Changes:
- Improved performance when fuel threshold is set to 1 - Improved performance when fuel threshold is set to 1
Bugfixes: Bugfixes:
- Fixed a bug where it was possible for a single station to be updated twice per dispatch cycle, which could cause a crash - Fixed a bug where it was possible for a single station to be updated twice per dispatch cycle, which could cause a crash
- Fixed a crash where trains would sometimes think a destoyed depot still exists - Fixed a crash where trains would sometimes think a destoyed depot still exists
- Removed unfinished mod setting with the broken translation key
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 1.2.9 Version: 1.2.9
Date: 2022-1-7 Date: 2022-1-7

View File

@@ -267,7 +267,7 @@ local migrations_table = {
train.use_any_depot = true train.use_any_depot = true
end end
end, end,
["1.3.0"] = function() ["1.2.10"] = function()
---@type MapData ---@type MapData
local map_data = global local map_data = global
map_data.warmup_station_cycles = {} map_data.warmup_station_cycles = {}

View File

@@ -102,13 +102,13 @@ data:extend({
setting_type = "runtime-global", setting_type = "runtime-global",
default_value = false, default_value = false,
}, },
{ --{
type = "int-setting", -- type = "int-setting",
name = "cybersyn-history-length", -- name = "cybersyn-history-length",
setting_type = "runtime-global", -- setting_type = "runtime-global",
minimum_value = 10, -- minimum_value = 10,
maximum_value = 1000, -- maximum_value = 1000,
default_value = 50, -- default_value = 50,
order = "ea", -- order = "ea",
}, --},
}) })