Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed sweet tooth turd not allowing for fast upgrade/downgrade #274

Merged
merged 2 commits into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Date: ?
- fungal-substrate-01, fungal-substrate-02, fungal-substrate-03 are now affected by productivity modules.
- The serine recipe is now effected by productivity modules.
- Increased the health of the fish farm 100 -> 500.
- Fixed sweet tooth turd not allowing for fast upgrade/downgrade
TURD:
- Rebalanced the turd reset technology scaling factor from 2^N to 1.5^N.
- Rebalanced all 3 mukmoux turds. Added a 10 hour grace period for a free mukmoux turd reset.
Expand Down
3 changes: 3 additions & 0 deletions prototypes/upgrades/compost.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ if data and not yafc_turd_integration then
local entity = table.deepcopy(data.raw["furnace"][name])
local collision_box = entity.collision_box
entity.name = name .. "-turd"
if i ~= 4 then
entity.next_upgrade = "compost-plant-mk0" .. i + 1 .. "-turd"
end
entity.localised_name = {"entity-name." .. name}
entity.placeable_by = {item = name, count = 1}
effect_receiver = {
Expand Down
Loading