From 98da910178cef698f5444a7a6c4bd3d9ff13c698 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 1 Sep 2017 11:21:50 -0500 Subject: [PATCH] Update read_from_file.dm --- code/citadel/custom_loadout/read_from_file.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/citadel/custom_loadout/read_from_file.dm b/code/citadel/custom_loadout/read_from_file.dm index d4af163b7e..0ed38e8d41 100644 --- a/code/citadel/custom_loadout/read_from_file.dm +++ b/code/citadel/custom_loadout/read_from_file.dm @@ -43,7 +43,7 @@ GLOBAL_LIST(custom_item_list) var/path_str_sep = findtext(item_string, "=") var/path = copytext(item_string, 1, path_str_sep) //Path to spawn var/amount = copytext(item_string, path_str_sep+1) //Amount to spawn - world << "DEBUG: Item string [item_string] processed" + //world << "DEBUG: Item string [item_string] processed" amount = text2num(amount) path = text2path(path) if(!ispath(path) || !isnum(amount))