Compare commits

...

4 commits
1.0.0 ... main

Author SHA1 Message Date
Simon Brodtmann
00c92b133c 1.0.1 2025-09-30 21:22:24 +02:00
Simon Brodtmann
4ed1af54b1 Move mapgen settings to final-fixes 2025-09-30 21:20:18 +02:00
Simon Brodtmann
1b18fde830 Fix migration 2025-09-30 21:19:32 +02:00
Simon Brodtmann
71109a3bc3 Increase pure sand usage in advanced cactus tissue cultivation 2025-09-29 22:48:50 +02:00
6 changed files with 15 additions and 8 deletions

View file

@ -0,0 +1,8 @@
---------------------------------------------------------------------------------------------------
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

@ -0,0 +1,3 @@
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", "name": "wooden-arig",
"version": "1.0.0", "version": "1.0.1",
"title": "Wooden Arig", "title": "Wooden Arig",
"description": "Adds wood production to Arig.", "description": "Adds wood production to Arig.",
"author": "cackling fiend", "author": "cackling fiend",

View file

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

View file

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

View file

@ -45,7 +45,3 @@ data:extend({
order = "a[cactus-tissue]", 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"] = {}