Minor casing fix.

I couldn't unsee the lowercase t in sentences beginning with "\the" instead of "\The". I'm sorry..
This commit is contained in:
PsiOmega
2015-02-11 19:53:08 +01:00
parent 5e9831783c
commit 12e17e666f
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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)