Now it no longer works, and I'm not sure what to do. I've tried removing the dependencies on other mods (Agent Orange (which I've "hack-updated" to 1.1 for my own use), as well as Klonan's Torches mod), but that didn't make the mod work, so the issue is clearly something else.
This is the entirety of the control.lua file, which did work 2-3 years ago:
Code: Select all
script.on_event(defines.events.on_player_created, function(event)
local player = game.players[event.player_index]
player.insert{name="solid-fuel", count=4}
player.insert{name="cliff-explosives", count=10}
player.insert{name="wooden-chest", count=2}
player.insert{name="burner-mining-drill", count=2}
player.insert{name="stone-furnace", count=2}
end)