From 43ef5fb4b603f5e268a82d31a69942e73eb69077 Mon Sep 17 00:00:00 2001 From: Buggy123 Date: Mon, 25 Nov 2019 11:10:36 -0500 Subject: [PATCH] Fixes partial sentences when examining a radioactive object at a distance (#47835) * Fixes partial sentences when examining a radioactive object * Fixed missing period * Fixed unintentional examine balance change --- code/datums/components/radioactive.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/datums/components/radioactive.dm b/code/datums/components/radioactive.dm index 37f38ffcc1a..ed34ac90074 100644 --- a/code/datums/components/radioactive.dm +++ b/code/datums/components/radioactive.dm @@ -65,11 +65,11 @@ out += "The air around [master] feels warm" switch(strength) if(RAD_AMOUNT_LOW to RAD_AMOUNT_MEDIUM) - out += "[out ? " and it " : "[master] "]feels weird to look at." + out += "[length(out) ? " and it " : "[master] "]feels weird to look at." if(RAD_AMOUNT_MEDIUM to RAD_AMOUNT_HIGH) - out += "[out ? " and it " : "[master] "]seems to be glowing a bit." + out += "[length(out) ? " and it " : "[master] "]seems to be glowing a bit." if(RAD_AMOUNT_HIGH to INFINITY) //At this level the object can contaminate other objects - out += "[out ? " and it " : "[master] "]hurts to look at." + out += "[length(out) ? " and it " : "[master] "]hurts to look at." else out += "." to_chat(user, out.Join())