From 8e745d6bd2e157efea0027213036e45fff6394db Mon Sep 17 00:00:00 2001 From: "quartz235@gmail.com" Date: Sat, 11 Feb 2012 19:32:34 +0000 Subject: [PATCH] i am the greatest coder of all time and am also amazing at thoroughly testing what i make git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3103 316c924e-a436-60f5-8080-3fe189b3f50e --- code/defines/obj/toy.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/defines/obj/toy.dm b/code/defines/obj/toy.dm index e425284f0a3..a97d12b8114 100644 --- a/code/defines/obj/toy.dm +++ b/code/defines/obj/toy.dm @@ -432,15 +432,15 @@ return /obj/item/toy/balloon/throw_impact(atom/hit_atom) - ..() if(src.reagents.total_volume >= 1) src.visible_message("\red The [src] bursts!","You hear a pop and a splash.") src.reagents.reaction(get_turf(hit_atom)) for(var/atom/A in get_turf(hit_atom)) src.reagents.reaction(A) src.icon_state = "burst" - sleep(5) - del(src) + spawn(5) + if(src) + del(src) return /obj/item/toy/balloon/update_icon()