In order to get infinite resources during mining (the game usually runs out of resources and you need to look for a new source for mining), you need to in the file "Factorio\data\base\data.lua" between the lines "end" and "local main_menu_simulations = data. raw["utility-constants"]["default"].main_menu_simulations" insert lines:
for k, v in pairs(data.raw.resource) do
data.raw.resource[k].infinite = true
data.raw.resource[k].minimum = 100
data.raw.resource[k].normal = 100
end
Comments
Post a Comment