diff --git a/code/modules/antagonists/slaughter/slaughter.dm b/code/modules/antagonists/slaughter/slaughter.dm index d76c7987b94..c7309c455c4 100644 --- a/code/modules/antagonists/slaughter/slaughter.dm +++ b/code/modules/antagonists/slaughter/slaughter.dm @@ -112,6 +112,11 @@ /mob/living/simple_animal/hostile/imp/slaughter/CtrlShiftClickOn(atom/A) if(!isliving(A)) return ..() + + if(!Adjacent(A)) + to_chat(src, "You are too far away to use your slam attack on [A]!") + return + if(slam_cooldown + slam_cooldown_time > world.time) to_chat(src, "Your slam ability is still on cooldown!") return