Fix agricultural towers not buildable on Lignumis
This commit is contained in:
parent
009fcf4d50
commit
819bf6e26b
4 changed files with 12 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 1.0.9
|
||||
Date: 05.02.2025
|
||||
Bug Fixes:
|
||||
- Fix agricultural towers not buildable on Lignumis
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 1.0.8
|
||||
Date: 04.02.2025
|
||||
Bug Fixes:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "lignumis",
|
||||
"version": "1.0.8",
|
||||
"version": "1.0.9",
|
||||
"title": "Lignumis",
|
||||
"description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.",
|
||||
"author": "cackling fiend",
|
||||
|
|
|
@ -22,6 +22,7 @@ agricultural_tower.resistances = nil
|
|||
agricultural_tower.input_inventory_size = 1
|
||||
agricultural_tower.output_inventory_size = 3
|
||||
agricultural_tower.radius = 2
|
||||
agricultural_tower.surface_conditions[1].min = 900
|
||||
|
||||
local crane = agricultural_tower.crane
|
||||
crane.parts[1].rotated_sprite.filenames = { gfx .. "burner-agricultural-tower-crane-1-1.png", gfx ..
|
||||
|
|
|
@ -69,6 +69,11 @@ end
|
|||
data.raw["ammo-turret"]["gun-turret"].attack_parameters.range = 20
|
||||
|
||||
|
||||
-- Agricultural tower
|
||||
|
||||
data.raw["agricultural-tower"]["agricultural-tower"].surface_conditions[1].min = 900
|
||||
|
||||
|
||||
-- Wood processing
|
||||
|
||||
local wood_processing = data.raw.recipe["wood-processing"]
|
||||
|
|
Loading…
Add table
Reference in a new issue