backgrounds now have proficiencies

This commit is contained in:
Stefan Zermatten
2015-06-17 08:49:26 +02:00
parent 6caf19bc99
commit 9ff45dbcc2
6 changed files with 46 additions and 15 deletions

View File

@@ -0,0 +1,8 @@
Template.backgroundDialog.helpers({
value: function(){
var fieldSelector = {fields: {}};
fieldSelector.fields[this.field] = 1;
var char = Characters.findOne(this.charId, fieldSelector);
return char[this.field];
}
});