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"]