7 lines
133 B
JavaScript
Raw Normal View History

for(let effect of this.actor.effects.filter(e => e.isCondition))
{
if (effect.isCondition)
{
effect.delete();
}
}