diff --git a/code/game/machinery/requests_console.dm b/code/game/machinery/requests_console.dm index 7029c01bfbe..004c1cf5383 100644 --- a/code/game/machinery/requests_console.dm +++ b/code/game/machinery/requests_console.dm @@ -431,7 +431,7 @@ var/list/obj/machinery/requests_console/allConsoles = list() /obj/machinery/say_quote(input, list/spans) var/ending = copytext(input, length(input) - 2) if (ending == "!!!") - return "blares, \"attach_spans(input, spans)\"" + return "blares, \"[attach_spans(input, spans)]\"" return ..() diff --git a/code/game/objects/items/weapons/implants/implant.dm b/code/game/objects/items/weapons/implants/implant.dm index a2157fbec72..0e7fd19d6c9 100644 --- a/code/game/objects/items/weapons/implants/implant.dm +++ b/code/game/objects/items/weapons/implants/implant.dm @@ -43,12 +43,12 @@ if(activated) action_button_name = "Activate [src.name]" - if(istype(source, /mob/living/carbon/human)) - var/mob/living/carbon/human/H = source - H.sec_hud_set_implants() src.loc = source imp_in = source implanted = 1 + if(istype(source, /mob/living/carbon/human)) + var/mob/living/carbon/human/H = source + H.sec_hud_set_implants() if(user) add_logs(user, source, "implanted", object="[name]")