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
This commit is contained in:
Buggy123
2019-11-25 16:10:36 +00:00
committed by Emmett Gaines
parent 38b8754cdb
commit 43ef5fb4b6
+3 -3
View File
@@ -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())