From ef1bb731cbddc8ad2943d93b54bae1f3548703e9 Mon Sep 17 00:00:00 2001 From: Yoshax Date: Wed, 31 Aug 2016 21:55:14 +0100 Subject: [PATCH] Closes 2 missing spans --- code/modules/projectiles/gun.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index a455507e05f..9271e505032 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -203,7 +203,7 @@ if(dna_lock && attached_lock && !attached_lock.controller_lock) user << "You begin removing \the [attached_lock] from \the [src]." if(do_after(user, 25)) - user << "You remove \the [attached_lock] from \the [src]." + user << "You remove \the [attached_lock] from \the [src]." user.put_in_hands(attached_lock) dna_lock = 0 attached_lock = null @@ -215,7 +215,7 @@ /obj/item/weapon/gun/emag_act(var/remaining_charges, var/mob/user) if(dna_lock && attached_lock.controller_lock) - user << "You short circuit the internal locking mechanisms of \the [src]!" + user << "You short circuit the internal locking mechanisms of \the [src]!" attached_lock.controller_dna = null attached_lock.controller_lock = 0 attached_lock.stored_dna = list()