Compare commits

..

No commits in common. "main" and "1.0.0" have entirely different histories.
main ... 1.0.0

6 changed files with 8 additions and 15 deletions

View file

@ -1,8 +0,0 @@
---------------------------------------------------------------------------------------------------
Version: 1.0.1
Date: 30.09.2025
Changes:
- Increase pure sand usage in advanced cactus tissue cultivation
Bug Fixes:
- Fix crash due to migration
- Move mapgen settings to final-fixes

View file

@ -1,3 +0,0 @@
local autoplace = data.raw.planet["arig"].map_gen_settings.autoplace_settings
autoplace.decorative.settings["arig-small-cactus"] = nil
autoplace.entity.settings["arig-small-cactus"] = {}

View file

@ -1,6 +1,6 @@
{
"name": "wooden-arig",
"version": "1.0.1",
"version": "1.0.0",
"title": "Wooden Arig",
"description": "Adds wood production to Arig.",
"author": "cackling fiend",

View file

@ -1,4 +1,4 @@
local arig = game.get_surface("arig") or game.planets["arig"].create_surface()
local arig = game.get_surface("arig")
local mgs = arig.map_gen_settings
mgs.autoplace_settings.decorative.settings["arig-small-cactus"] = nil

View file

@ -14,7 +14,7 @@ data:extend({
category = "muluna-greenhouse-11x11",
ingredients = {
{ type = "item", name = "cactus-tissue", amount = 20 },
{ type = "fluid", name = "planetaris-pure-sand", amount = 20 },
{ type = "fluid", name = "planetaris-pure-sand", amount = 4 },
{ type = "fluid", name = "steam", amount = 25 },
},
results = { { type = "item", name = "cactus-tissue", amount = 50 } },

View file

@ -45,3 +45,7 @@ data:extend({
order = "a[cactus-tissue]",
}
})
local autoplace = data.raw.planet["arig"].map_gen_settings.autoplace_settings
autoplace.decorative.settings["arig-small-cactus"] = nil
autoplace.entity.settings["arig-small-cactus"] = {}