Made a few updates and now it is showing so... I guess I should have waited a moment
Code: Select all
local autoMiner = util.table.deepcopy(data.raw["simple-entity-with-force"])
autoMiner = {}
autoMiner.type = "simple-entity-with-force"
autoMiner.name = "autoMiner"
autoMiner.icon = "__AutoMine__/autoMineEast.png"
autoMiner.render_layer = "object"
autoMiner.flags = {
"placeable-neutral",
"placeable-player",
"player-creation"
}
autoMiner.pictures = {
filename = "__AutoMine__/autoMineNorth.png",
width = 32,
height = 32,
}
local autoMinerItem = table.deepcopy(data.raw.item["simple-entity-with-force"])
autoMinerItem.name="autoMiner"
autoMinerItem.place_result="autoMiner"
autoMinerItem.icon="__AutoMine__/autoMineEast.png"
local autoMinerRecipe = {
type = "recipe",
enabled = true,
normal = {
ingredients = {},
result = "autoMiner",
},
name = "autoMiner",
}
data:extend({autoMiner, autoMinerRecipe, autoMinerItem})