From 567e1827092b70329ad425796e0934cc14b575fe Mon Sep 17 00:00:00 2001 From: OfficialCHenry Date: Mon, 9 May 2022 13:38:19 -0400 Subject: [PATCH] removed gravity for assassin --- src/shattered_sword/AI/EnemyStates/AssassinAttack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shattered_sword/AI/EnemyStates/AssassinAttack.ts b/src/shattered_sword/AI/EnemyStates/AssassinAttack.ts index 4c60b90..1c692c2 100644 --- a/src/shattered_sword/AI/EnemyStates/AssassinAttack.ts +++ b/src/shattered_sword/AI/EnemyStates/AssassinAttack.ts @@ -28,7 +28,7 @@ export default class AssassinAttack extends Attack { if(this.parent.getPlayerPosition() !==null) - this.owner.position = this.parent.getPlayerPosition().clone().add(new Vec2( (this.parent.player).invertX ? 32 : -32 ,0)); + this.owner.position = this.parent.getPlayerPosition().clone().add(new Vec2( (this.parent.player).invertX ? 56 : -56 ,0)); this.pauseTimer.start();