From 9ebb3271ff8ebb946e9fc9b26cbf3fb60a504201 Mon Sep 17 00:00:00 2001 From: "daniel.cf.hultgren@gmail.com" Date: Wed, 27 Jun 2012 16:46:16 +0000 Subject: [PATCH] It now properly compiles. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3929 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/food/food.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/food/food.dm b/code/modules/food/food.dm index 8aef1d92ae2..cb8a8774d6e 100644 --- a/code/modules/food/food.dm +++ b/code/modules/food/food.dm @@ -1946,7 +1946,7 @@ /obj/item/pizzabox/attack_hand( mob/user as mob ) if( open && pizza ) - user.put_in_hand( pizza ) + user.put_in_hands( pizza ) user << "\red You take the [src.pizza] out of the [src]." src.pizza = null @@ -1961,7 +1961,7 @@ var/obj/item/pizzabox/box = boxes[boxes.len] boxes -= box - user.put_in_hand( box ) + user.put_in_hands( box ) user << "\red You remove the topmost [src] from your hand." box.update_icon() update_icon()