5 lines
141 B
JavaScript
5 lines
141 B
JavaScript
|
if (this.actor.hasCondition("broken"))
|
||
|
{
|
||
|
this.actor.removeCondition("broken")
|
||
|
this.script.scriptNotification(`Cannot have Broken`);
|
||
|
}
|