7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
for(let effect of this.actor.effects.filter(e => e.isCondition))
|
|
{
|
|
if (effect.isCondition)
|
|
{
|
|
effect.delete();
|
|
}
|
|
} |