newline formatting

This commit is contained in:
Remie Richards
2016-01-18 01:08:18 +00:00
parent def68f134c
commit 83ef5bc47e
+2 -2
View File
@@ -196,12 +196,12 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that
if(istext(assoc_check) && (returnedlist[assoc_check] != null))
. += "[procname] returned an associative list:"
for(var/key in returnedlist)
. += "[key] = [returnedlist[key]]"
. += "[key] = [returnedlist[key]]\n"
else
. += "[procname] returned a list:"
for(var/elem in returnedlist)
. += "[elem]"
. += "[elem]\n"
else
. = "[procname] returned an empty list"
. += "</font>"