From 4e644df7cc94ffcf94f7544510a949b81e933db8 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Thu, 24 Sep 2015 16:17:37 -0500 Subject: [PATCH] Runtime fix --- code/modules/mob/living/simple_animal/guardian/guardian.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/simple_animal/guardian/guardian.dm b/code/modules/mob/living/simple_animal/guardian/guardian.dm index 0f361b23a71..37684be84a3 100644 --- a/code/modules/mob/living/simple_animal/guardian/guardian.dm +++ b/code/modules/mob/living/simple_animal/guardian/guardian.dm @@ -313,6 +313,8 @@ src << "Your power is on cooldown. You must wait five minutes between placing beacons." /mob/living/simple_animal/hostile/guardian/healer/AltClickOn(atom/movable/A) + if(!istype(A)) + return if(src.loc == summoner) src << "You must be manifested to warp a target!" return @@ -453,6 +455,8 @@ var/bomb_cooldown = 0 /mob/living/simple_animal/hostile/guardian/bomb/AltClickOn(atom/movable/A) + if(!istype(A)) + return if(src.loc == summoner) src << "You must be manifested to create bombs!" return