Remove console logs

This commit is contained in:
Matthew Ross 2024-05-03 12:48:31 -07:00
parent b9fda10c21
commit 57c9e5ba26

View File

@ -2022,10 +2022,9 @@ export class KnockOffPowerAttr extends VariablePowerAttr {
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
if(target.getHeldItems().length > 0){
(args[0] as Utils.NumberHolder).value *= 1.5;
console.log(args[0])
return true;
}
console.log(args[0])
return false;
}
}