1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-02-03 13:11:21 +02:00
RedMew/map_gen/maps/diggy/feature/belts_n_bullets.lua
2022-06-17 16:56:36 +01:00

17 lines
474 B
Lua

-- This module disables some technologies to focus on belts and bullets
local Event = require 'utils.event'
-- local ScenarioInfo = require 'features.gui.info'
local BeltsnBullets = {}
function BeltsnBullets.register (config)
local disabled_technologies = config.disabled_technologies
Event.on_init(function ()
for i, dis_tech in ipairs(disabled_technologies) do
game.forces.player.technologies[dis_tech].enabled = false
end
end)
end
return BeltsnBullets