From e428ac19ecb4221f4ec0e207fb58bbb45bf22d08 Mon Sep 17 00:00:00 2001 From: "elly1989@rocketmail.com" Date: Sun, 8 Apr 2012 06:06:15 +0000 Subject: [PATCH] whoops: "You slash the wall with the wall; the thermite ignites!" (Typo :P) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3411 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/turf.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/turf.dm b/code/game/turf.dm index 4a9449a70e5..494db297a31 100644 --- a/code/game/turf.dm +++ b/code/game/turf.dm @@ -411,7 +411,7 @@ var/obj/item/weapon/melee/energy/blade/EB = W EB.spark_system.start() - user << "You slash \the [src] with \the [src]; the thermite ignites!" + user << "You slash \the [src] with \the [EB]; the thermite ignites!" playsound(src.loc, "sparks", 50, 1) playsound(src.loc, 'blade1.ogg', 50, 1) @@ -523,7 +523,7 @@ var/obj/item/weapon/melee/energy/blade/EB = W EB.spark_system.start() - user << "You slash \the [src] with \the [src]; the thermite ignites!" + user << "You slash \the [src] with \the [EB]; the thermite ignites!" playsound(src.loc, "sparks", 50, 1) playsound(src.loc, 'blade1.ogg', 50, 1) @@ -707,7 +707,7 @@ else if( istype(W, /obj/item/stack/sheet/metal) && d_state ) var/obj/item/stack/sheet/metal/MS = W - user << "You begin patching-up the wall with \a [src]." + user << "You begin patching-up the wall with \a [MS]." sleep( max(20*d_state,100) ) //time taken to repair is proportional to the damage! (max 10 seconds) if( !istype(src, /turf/simulated/wall/r_wall) || !user || !MS || !T ) return @@ -745,7 +745,7 @@ var/turf/simulated/floor/F = ReplaceWithPlating() F.burn_tile() F.icon_state = "wall_thermite" - user << "The thermite melts through \the [src]." + user << "The thermite melts through the wall." spawn(100) if(O) del(O)