diff --git a/src/shattered_sword/AI/EnemyStates/Attack.ts b/src/shattered_sword/AI/EnemyStates/Attack.ts index 19e57d9..fa6687d 100644 --- a/src/shattered_sword/AI/EnemyStates/Attack.ts +++ b/src/shattered_sword/AI/EnemyStates/Attack.ts @@ -14,7 +14,7 @@ export default class Attack extends EnemyState { this.attacked = this.owner.id+"attacked"; // TODO replace DYING with CHARGING - (this.owner).animation.play("DYING", false, this.charged); + (this.owner).animation.play("CHARGE", false, this.charged); this.receiver.subscribe(this.charged); this.receiver.subscribe(this.attacked); }