From 445b65c13fcac733550f69152191a7c0817afb4b Mon Sep 17 00:00:00 2001 From: DZD Date: Mon, 3 Aug 2015 11:56:52 -0400 Subject: [PATCH] Fixes parenthesis --- code/__HELPERS/lists.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/lists.dm b/code/__HELPERS/lists.dm index 8cec13010a5..77bf2bf2350 100644 --- a/code/__HELPERS/lists.dm +++ b/code/__HELPERS/lists.dm @@ -569,7 +569,7 @@ proc/dd_sortedObjectList(list/incoming) /proc/subtypesof(var/path) //Returns a list containing all subtypes of the given path, but not the given path itself. if(!path || !ispath(path)) - CRASH("Invalid path, failed to fetch subtypes of \"[path]\".)") + CRASH("Invalid path, failed to fetch subtypes of \"[path]\".") return (typesof(path) - path) /datum/proc/dd_SortValue()