Skip to content

Commit ca1d81d

Browse files
qol(sword-slitter): Added a target dead check before the second hit
1 parent efd57f1 commit ca1d81d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/abilities/Bounty-Hunter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export default (G: Game) => {
162162
* and the ability is upgraded,
163163
* make a second attack
164164
*/
165-
if (targetOriginalHealth - target.health >= target.health && this.isUpgraded()) {
165+
if ((targetOriginalHealth - target.health >= target.health) && !target.dead && this.isUpgraded()) {
166166
// Added a delay for the second attack
167167
setTimeout(() => {
168168
G.Phaser.camera.shake(0.01, 150, true, G.Phaser.camera.SHAKE_HORIZONTAL, true);

0 commit comments

Comments
 (0)