From d138162b6cffb873a6295cee1606a712f07f3126 Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Thu, 18 Sep 2025 19:57:21 -0400 Subject: [PATCH] borer can't do that (#18520) --- .../mob/living/simple_mob/subtypes/animal/borer/borer.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm index de047125919..f535c60cf66 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm @@ -216,6 +216,12 @@ /mob/living/simple_mob/animal/borer/cannot_use_vents() return +/mob/living/simple_mob/animal/borer/UnarmedAttack(var/atom/A, var/proximity) + if(ismob(loc)) + to_chat(src, span_warning("You cannot interact with that from inside a host!")) + return + . = ..() + // This is awful but its literally say code. /mob/living/simple_mob/animal/borer/say(var/message, var/datum/language/speaking = null, var/whispering = 0) message = sanitize(message)