From d1ca234252e469f014fdaadddc37f649ee83297f Mon Sep 17 00:00:00 2001 From: Erthilo Date: Tue, 15 May 2012 19:33:06 +0100 Subject: [PATCH] text() splatted out. --- code/game/objects/storage/coat.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/storage/coat.dm b/code/game/objects/storage/coat.dm index ecb2c1fc4e8..96c0404f5f2 100644 --- a/code/game/objects/storage/coat.dm +++ b/code/game/objects/storage/coat.dm @@ -108,15 +108,15 @@ /obj/item/clothing/suit/storage/proc/orient_objs(tx, ty, mx, my) var/cx = tx var/cy = ty - src.boxes.screen_loc = text("[tx],[ty] to [mx],[my]") + src.boxes.screen_loc = "[tx],[ty] to [mx],[my]" for(var/obj/O in src.contents) - O.screen_loc = text("[cx],[cy]") + O.screen_loc = "[cx],[cy]" O.layer = 20 cx++ if (cx > mx) cx = tx cy-- - src.closer.screen_loc = text("[mx+1],[my]") + src.closer.screen_loc = "[mx+1],[my]" return /obj/item/clothing/suit/storage/proc/show_to(mob/user as mob)