From ef251fc3a7dc41b1fe3320cb48cbb96e2ba04097 Mon Sep 17 00:00:00 2001 From: BeeSting12 Date: Wed, 26 Jul 2017 14:37:48 -0400 Subject: [PATCH] might be better to use total worth instead --- code/game/objects/items/stacks/cash.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/stacks/cash.dm b/code/game/objects/items/stacks/cash.dm index b366e085826..94f6fca28ca 100644 --- a/code/game/objects/items/stacks/cash.dm +++ b/code/game/objects/items/stacks/cash.dm @@ -19,7 +19,7 @@ /obj/item/stack/spacecash/proc/update_desc() var/total_worth = amount*value - desc = "It's worth [total_worth] credit[( value > 1 ) ? "s" : ""]" + desc = "It's worth [total_worth] credit[( total_worth > 1 ) ? "s" : ""]" /obj/item/stack/spacecash/merge(obj/item/stack/S) @@ -68,4 +68,4 @@ /obj/item/stack/spacecash/c1000 icon_state = "spacecash1000" singular_name = "one thousand credit bill" - value = 1000 \ No newline at end of file + value = 1000