From 3523a48d898fbfa0d3aefb672dc27e0e8c2933e4 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 15 Feb 2019 00:15:35 -0500 Subject: [PATCH] IV Drip Wheel Sound --- code/game/machinery/iv_drip.dm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index 6a0c2cd42ed..c49a6576142 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -55,7 +55,14 @@ /obj/machinery/iv_drip/examine(mob/user) ..(user) - bag.examine(user) + if(bag) + bag.examine(user) + +/obj/machinery/iv_drip/Move(NewLoc, direct) + . = ..() + if(!.) // ..() will return 0 if we didn't actually move anywhere. + return . + playsound(loc, pick('sound/items/cartwheel1.ogg', 'sound/items/cartwheel2.ogg'), 100, 1, ignore_walls = FALSE) #undef IV_TAKING #undef IV_INJECTING \ No newline at end of file