Compare commits
4 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
00c92b133c | ||
![]() |
4ed1af54b1 | ||
![]() |
1b18fde830 | ||
![]() |
71109a3bc3 |
6 changed files with 15 additions and 8 deletions
8
wooden-arig/changelog.txt
Normal file
8
wooden-arig/changelog.txt
Normal 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
|
3
wooden-arig/data-final-fixes.lua
Normal file
3
wooden-arig/data-final-fixes.lua
Normal 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"] = {}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wooden-arig",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"title": "Wooden Arig",
|
||||
"description": "Adds wood production to Arig.",
|
||||
"author": "cackling fiend",
|
||||
|
|
|
@ -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
|
||||
mgs.autoplace_settings.decorative.settings["arig-small-cactus"] = nil
|
|
@ -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 = 4 },
|
||||
{ type = "fluid", name = "planetaris-pure-sand", amount = 20 },
|
||||
{ type = "fluid", name = "steam", amount = 25 },
|
||||
},
|
||||
results = { { type = "item", name = "cactus-tissue", amount = 50 } },
|
||||
|
|
|
@ -45,7 +45,3 @@ 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"] = {}
|
Loading…
Add table
Add a link
Reference in a new issue