From fd86eba8f6c2840e0bf6cdd7c39b80137d8e1de7 Mon Sep 17 00:00:00 2001 From: mochi <1496804+dearmochi@users.noreply.github.com> Date: Sat, 13 Nov 2021 10:40:42 +0100 Subject: [PATCH] Removes some from borgs too --- code/modules/mob/living/silicon/robot/robot.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 37c8f73463b..be2e7b2dd65 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -165,6 +165,11 @@ GLOBAL_LIST_INIT(robot_verbs_default, list( ..() add_robot_verbs() + + // Remove inherited verbs that effectively do nothing for cyborgs, or lead to unintended behaviour. + verbs -= /mob/living/verb/lay_down + verbs -= /mob/living/verb/mob_sleep + verbs -= /mob/living/verb/resist if(cell) var/datum/robot_component/cell_component = components["power cell"]