Skip to content

Commit

Permalink
fix uranium processing tech
Browse files Browse the repository at this point in the history
  • Loading branch information
przemo1232 committed Oct 26, 2024
1 parent 5b62de2 commit 5a790ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Version: 3.0.10
Date: yes
Changes:
- Made resource rocks spawn closer to spawn in py recommended preset.
- Fixed nuclear research technology.
---------------------------------------------------------------------------------------------------
Version: 3.0.9
Date: 2024-10-24
Expand Down
8 changes: 4 additions & 4 deletions prototypes/updates/base-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ data.raw.technology["uranium-ammo"].unit.ingredients = {
{"military-science-pack", 1},
{"chemical-science-pack", 1}
}
data.raw.technology["uranium-ammo"].prerequisites = {"military-2", "uranium-mining"}
data.raw.technology["uranium-ammo"].prerequisites = {"military-2", "uranium-processing"}

TECHNOLOGY("concrete"):remove_prereq("automation-2")
-- Remove empty vanilla techs
Expand Down Expand Up @@ -348,8 +348,8 @@ data.raw.technology["electronics"].unit = {

local cargo_landing_pad = RECIPE("cargo-landing-pad"):remove_ingredient("processing-unit"):add_ingredient {"advanced-circuit", 100}:remove_ingredient("steel-plate"):add_ingredient {"steel-plate", 500}
if mods.pyalienlife then
cargo_landing_pad:add_ingredient {"py-warehouse-buffer", 1}:add_ingredient{"titanium-plate", 500}
cargo_landing_pad:add_ingredient {"py-warehouse-buffer", 1}:add_ingredient {"titanium-plate", 500}
end
if mods.pyalternativeenergy then
cargo_landing_pad:add_ingredient{"mechanical-parts-02", 2}
end
cargo_landing_pad:add_ingredient {"mechanical-parts-02", 2}
end

0 comments on commit 5a790ac

Please sign in to comment.