5 lines
149 B
JavaScript
5 lines
149 B
JavaScript
|
if (this.actor.hasCondition("surprised"))
|
||
|
{
|
||
|
this.script.scriptNotification("Cannot be surprised");
|
||
|
this.actor.removeCondition("surprised");
|
||
|
}
|