From 6c04aadff8acaff3542ec8c140a958b14574511d Mon Sep 17 00:00:00 2001 From: Eduardo Quezada D'Ottone Date: Mon, 2 Nov 2020 00:31:04 -0300 Subject: [PATCH] Going to bed now --- src/battle_script_commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index aa9a98091..642e7b53d 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -9973,7 +9973,7 @@ static void Cmd_handleballthrow(void) if (catchRate < 21 && ballAddition == -20) catchRate = 1; else - catchRate = catchRate - ballAddition; + catchRate = catchRate + ballAddition; odds = ((catchRate) * ballMultiplier / 10) * (gBattleMons[gBattlerTarget].maxHP * 3 - gBattleMons[gBattlerTarget].hp * 2)