From 754bc20fff63f35b35845235abe653f44b0181b3 Mon Sep 17 00:00:00 2001 From: geeil-han Date: Sun, 17 Nov 2024 01:22:31 +0100 Subject: [PATCH] removed console.log messages used for debugging --- src/data/move.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/data/move.ts b/src/data/move.ts index d0cd7532061..b872bece80d 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -5070,7 +5070,6 @@ export class VariableMoveTypeChartAttr extends MoveAttr { * @returns true if application of the attribute succeeds */ apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - console.log("Did not call SpectralThiefAttr correctly"); return false; } } @@ -5080,7 +5079,6 @@ export class VariableMoveTypeChartAttr extends MoveAttr { */ export class FreezeDryAttr extends VariableMoveTypeChartAttr { apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean { - console.log("Did call SpectralThiefAttr correctly"); const multiplier = args[0] as Utils.NumberHolder; const defType = args[1] as Type;