Files
DiceCloud/app/client/globalHelpers/canCast.js
2018-05-21 14:21:07 +02:00

4 lines
128 B
JavaScript

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