•Added quick fix about processor not accepting the milk bottle

•Fixed blood decals and positioning of the chef's knife
•Actually included a log this time, derp
•Nutrition limit to get fat raised a lil' bit, from 400 to 600. We're gonna have a lot of fatsos now with meatbread. Working on East-West fatguy sprites.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@62 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
polyxenitopalidou
2010-09-06 08:11:36 +00:00
parent 17ec44fcfb
commit a41e5eed2c
4 changed files with 12 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ obj/machinery/processor/attackby(var/obj/item/O as obj, var/mob/user as mob)
user << "Something is already in the processing chamber."
return 0
else
if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/wheat) || istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/chili) || istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/tomato))
if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/wheat) || istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/chili) || istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/tomato) || istype(O, /obj/item/weapon/reagent_containers/food/drinks/milk))
user.drop_item()
O.loc = src
else