From 88e9a624729f5b7e2560baba4b2525bfcdcf6856 Mon Sep 17 00:00:00 2001 From: Krausus Date: Mon, 25 May 2015 07:38:07 -0400 Subject: [PATCH] Fixes disposal expulsion runtime --- code/modules/recycling/disposal.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index efa6d2fec2a..ebb92a8474f 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -1297,7 +1297,8 @@ AM.pipe_eject(dir) if(!istype(AM,/mob/living/silicon/robot/drone)) //Drones keep smashing windows from being fired out of chutes. Bad for the station. ~Z spawn(5) - AM.throw_at(target, 3, 1) + if(AM) + AM.throw_at(target, 3, 1) H.vent_gas(src.loc) del(H)