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)