Files
DiceCloud/app/client/globalHelpers/canCast.js
2018-06-07 01:07:49 -07:00

4 lines
128 B
JavaScript

Template.registerHelper("canCast", function() {
return Characters.find({_id: this._id, spells: {$size: 0}}).count() === 0;
});