Skip to content

Commit

Permalink
Fix oil slime making vegetable oil instead of corn oil (tgstation#87730)
Browse files Browse the repository at this point in the history
## About The Pull Request
Fixes bug caused by
tgstation@b1c5e5e#diff-aedb81aab354c31e90007bd0ad4e8babf347ac7d6003c3b01da14021ff5a10f4R387

The wiki and code prior both say oil slimes should make corn oil, but
they currently make vegetable oil. Since corn oil is needed for
nitroglycerin and oil slimes are explosive-centric, it makes sense they
should be making corn oil.
## Why It's Good For The Game
Fixes: tgstation#81036
## Changelog
:cl:
fix: Fixes oil slimes making vegetable oil instead of corn oil
/:cl:
  • Loading branch information
thegrb93 authored Nov 8, 2024
1 parent f2efb68 commit 35e53f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/reagents/chemistry/recipes/slime_extracts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@


/datum/chemical_reaction/slime/slimeoil
results = list(/datum/reagent/consumable/nutriment/fat/oil = 10)
results = list(/datum/reagent/consumable/nutriment/fat/oil/corn = 10)
required_reagents = list(/datum/reagent/blood = 1)
required_container = /obj/item/slime_extract/oil

Expand Down

0 comments on commit 35e53f5

Please sign in to comment.