From 2d87a2b318f959299ccfa907403fedf9c86ca64c Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Wed, 30 Apr 2025 07:56:15 -0400 Subject: [PATCH] Update move.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/data/moves/move.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/data/moves/move.ts b/src/data/moves/move.ts index 95c821a7ad8..74479fd3892 100644 --- a/src/data/moves/move.ts +++ b/src/data/moves/move.ts @@ -2761,11 +2761,6 @@ export class StealEatBerryAttr extends EatBerryAttr { * @returns `true` if the function succeeds */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - // Stealing fails against substitute - if (move.hitsSubstitute(user, target)) { - return false; - } - // check for abilities that block item theft const cancelled = new BooleanHolder(false); applyAbAttrs(BlockItemTheftAbAttr, target, cancelled);