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