Explosive Update no Jutsu!

- Bottle of Olive oil removed from kitchen.
- Olive Oil reagent renamed 'Corn Oil.' Functionality remains the same as Olive Oil (in both use and reactions).
- Corn Oil can be produced by blending Corn in the blender.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@738 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
morikou@gmail.com
2010-12-30 22:00:43 +00:00
parent 084393fa65
commit 526ccaa738
5 changed files with 12 additions and 18 deletions

View File

@@ -88,6 +88,8 @@ the blender or the processor: Processor items are solid objects and Blender resu
src.reagents.add_reagent("soymilk", 5)
else if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/tomato))
src.reagents.add_reagent("ketchup", 5)
else if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/corn))
src.reagents.add_reagent("cornoil", 5)
if(istype(O, /obj/item/weapon/reagent_containers/food/snacks)) //This is intentionally not an "else if"
O.reagents.trans_to(src, O.reagents.total_volume) //Think of it as the "pulp" leftover.
del(O)