5 lines
151 B
JavaScript
5 lines
151 B
JavaScript
|
if (this.actor.hasCondition("ablaze"))
|
||
|
{
|
||
|
this.script.scriptNotification("Immune to Ablaze")
|
||
|
await this.actor.hasCondition("ablaze")?.delete()
|
||
|
}
|