From a16b3c7e9eda7f205b90adb9e09be5e2d07decf7 Mon Sep 17 00:00:00 2001 From: DigitalSquirrel95 <48812209+DigitalSquirrel95@users.noreply.github.com> Date: Mon, 11 Nov 2024 15:46:13 -0500 Subject: [PATCH] Update robot.dm --- code/modules/mob/living/silicon/robot/robot.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index d8b8e479668..c7c56639e95 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -738,7 +738,7 @@ else to_chat(user, span_filter_notice("[span_red("Access denied.")]")) if(user == src) //RS edit: No self-unlocking. - to_chat(user, "You are not allowed to manipulate your own lock.") + to_chat(user, span_filter_notice("You are not allowed to manipulate your own lock.")) else if(istype(W, /obj/item/borg/upgrade/)) var/obj/item/borg/upgrade/U = W @@ -747,7 +747,7 @@ else if(!src.module && U.require_module) to_chat(usr, span_filter_notice("The borg must choose a module before it can be upgraded!")) else if(user == src) //RS edit: No self-upgrading. - to_chat(user, "You lack the reach to be able to upgrade yourself.") + to_chat(user, span_filter_notice("You lack the reach to be able to upgrade yourself.")) else if(U.locked) to_chat(usr, span_filter_notice("The upgrade is locked and cannot be used yet!")) else