From 79e2b1215c7896b6627bcebeb3f82f0b966e3e77 Mon Sep 17 00:00:00 2001 From: Leo Kim <47556641+KimJeongSun@users.noreply.github.com> Date: Wed, 24 Jul 2024 23:58:26 +0900 Subject: [PATCH] [Move] Water Shuriken guarantees 3 hits with battle bond (#2687) --- src/data/move.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/move.ts b/src/data/move.ts index 67807e389e1..19b2b77c5d8 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -1719,6 +1719,7 @@ export class MultiHitAttr extends MoveAttr { } else { const hitType = new Utils.IntegerHolder(this.multiHitType); applyMoveAttrs(ChangeMultiHitTypeAttr, user, target, move, hitType); + this.multiHitType = hitType.value; hitTimes = this.getHitCount(user, target); }