Item plural now shows whenever quantity is not 1

This commit is contained in:
Thaum
2015-02-06 08:58:32 +00:00
parent d6a2fff851
commit 3bde7a5e97
3 changed files with 6 additions and 3 deletions

View File

@@ -116,5 +116,8 @@ Template.itemDialog.helpers({
},
canEquip: function(){
return this.equipmentSlot !== "none";
},
ne1: function(num){
return num != 1;
}
});
});