From 6d27914a565998d5e36ead64c3c70aeb86936b71 Mon Sep 17 00:00:00 2001 From: Jimmybald1 <122436263+Jimmybald1@users.noreply.github.com> Date: Thu, 5 Jun 2025 08:28:38 +0200 Subject: [PATCH] Removed console log Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com> --- src/data/moves/move.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/data/moves/move.ts b/src/data/moves/move.ts index f1c9503831e..8f558362c85 100644 --- a/src/data/moves/move.ts +++ b/src/data/moves/move.ts @@ -5795,7 +5795,6 @@ export class ProtectAttr extends AddBattlerTagAttr { timesUsed++ } - // console.log(`Wave Move History: ${user.tempSummonData.waveMoveHistory.reverse().map(t => t.move)}\nTimes Used In Row: ${timesUsed}\nSuccess chance: 1 in ${Math.pow(3, timesUsed)}`) return timesUsed === 0 || user.randBattleSeedInt(Math.pow(3, timesUsed)) === 0; }); }