Fixes misc grammar issues

This commit is contained in:
Tenebrosity
2014-02-10 19:46:33 +13:00
parent a875b6bd18
commit f70c8d29d9
9 changed files with 49 additions and 33 deletions
+9 -2
View File
@@ -8,8 +8,8 @@
* Stacks
*/
/obj/item/stack
gender = PLURAL
origin_tech = "materials=1"
gender = PLURAL
var/list/datum/stack_recipe/recipes
var/singular_name
var/amount = 1
@@ -29,7 +29,14 @@
/obj/item/stack/examine()
set src in view(1)
..()
usr << "There are [src.amount] [src.singular_name]\s in the stack."
if(src.singular_name && src.amount>1)
usr << "There are [src.amount] [src.singular_name]\s in the stack."
else if(src.singular_name && src.amount==1)
usr << "There is [src.amount] [src.singular_name] in the stack."
else if(src.amount>1)
usr << "There are [src.amount] in the stack."
else
usr << "There is [src.amount] in the stack."
return
/obj/item/stack/attack_self(mob/user as mob)