From ebdb8f1809c7a2423b5fac2cadd2b9cf1ae2a406 Mon Sep 17 00:00:00 2001 From: c0 Date: Fri, 21 Apr 2017 11:42:55 +0300 Subject: [PATCH] Cleans up some copypasted src and accidently commited changes --- code/modules/mob/living/carbon/human/human_defense.dm | 4 ++-- code/modules/paperwork/photography.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index e68237363e5..133a11f8202 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -682,10 +682,10 @@ status += "numb" if(status == "") status = "OK" - to_chat(src, " [status == "OK" ? "\blue" : "\red"] Your [LB.name] is [status].") + to_chat(src, "\t [status == "OK" ? "\blue" : "\red"] Your [LB.name] is [status].") for(var/obj/item/I in LB.embedded_objects) - to_chat(src, " There is \a [I] embedded in your [LB.name]!") + to_chat(src, "\t There is \a [I] embedded in your [LB.name]!") for(var/t in missing) to_chat(src, "Your [parse_zone(t)] is missing!") diff --git a/code/modules/paperwork/photography.dm b/code/modules/paperwork/photography.dm index 5fc9ee32da5..e9fe951f62c 100644 --- a/code/modules/paperwork/photography.dm +++ b/code/modules/paperwork/photography.dm @@ -556,7 +556,7 @@ /obj/structure/sign/picture_frame/New(loc, dir, building) ..() if(dir) - src.setDir(dir) + setDir(dir) if(building) pixel_x = (dir & 3)? 0 : (dir == 4 ? -30 : 30) pixel_y = (dir & 3)? (dir ==1 ? -30 : 30) : 0