From 12e17e666f3b74eb3b3114abc270c1f156ab14de Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Wed, 11 Feb 2015 19:53:08 +0100 Subject: [PATCH] Minor casing fix. I couldn't unsee the lowercase t in sentences beginning with "\the" instead of "\The". I'm sorry.. --- code/game/machinery/jukebox.dm | 4 ++-- code/modules/recycling/disposal.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/machinery/jukebox.dm b/code/game/machinery/jukebox.dm index 4301d344950..2a6755015b2 100644 --- a/code/game/machinery/jukebox.dm +++ b/code/game/machinery/jukebox.dm @@ -70,7 +70,7 @@ datum/track/New(var/title_name, var/audio) return if(stat & (NOPOWER|BROKEN)) - usr << "\the [src] doesn't appear to function." + usr << "\The [src] doesn't appear to function." return if(href_list["change_track"]) @@ -109,7 +109,7 @@ datum/track/New(var/title_name, var/audio) /obj/machinery/media/jukebox/interact(mob/user) if(stat & (NOPOWER|BROKEN)) - usr << "\the [src] doesn't appear to function." + usr << "\The [src] doesn't appear to function." return ui_interact(user) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 0df50cc6fe7..34dbe0998f4 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -462,10 +462,10 @@ if(prob(75)) I.loc = src for(var/mob/M in viewers(src)) - M.show_message("\the [I] lands in \the [src].", 3) + M.show_message("\The [I] lands in \the [src].", 3) else for(var/mob/M in viewers(src)) - M.show_message("\the [I] bounces off of \the [src]'s rim!", 3) + M.show_message("\The [I] bounces off of \the [src]'s rim!", 3) return 0 else return ..(mover, target, height, air_group)