Removed console log

Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com>
This commit is contained in:
Jimmybald1 2025-06-05 08:28:38 +02:00 committed by GitHub
parent 8d91a82125
commit 6d27914a56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5795,7 +5795,6 @@ export class ProtectAttr extends AddBattlerTagAttr {
timesUsed++ 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; return timesUsed === 0 || user.randBattleSeedInt(Math.pow(3, timesUsed)) === 0;
}); });
} }