From fe17f0498945bb9d96d347021e6fb06699f9467c Mon Sep 17 00:00:00 2001 From: MacHac Date: Sat, 23 May 2020 14:37:56 -0400 Subject: [PATCH] Failing to place a guardian telebeacon now gives a message. --- .../modules/mob/living/simple_animal/guardian/types/support.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/guardian/types/support.dm b/code/modules/mob/living/simple_animal/guardian/types/support.dm index 30f04d43f7f0..87d4f01cba4f 100644 --- a/code/modules/mob/living/simple_animal/guardian/types/support.dm +++ b/code/modules/mob/living/simple_animal/guardian/types/support.dm @@ -69,11 +69,12 @@ set desc = "Mark a floor as your beacon point, allowing you to warp targets to it. Your beacon will not work at extreme distances." if(beacon_cooldown >= world.time) - to_chat(src, "Your power is on cooldown. You must wait five minutes between placing beacons.") + to_chat(src, "Your power is on cooldown. You must wait five minutes between placing beacons.") return var/turf/beacon_loc = get_turf(src.loc) if(!isfloorturf(beacon_loc)) + to_chat(src, "Your beacon can only be placed on solid flooring!") return if(beacon)