From 77e2a2da3215d3651a398f79cef0ad658b52255e Mon Sep 17 00:00:00 2001 From: Eduardo Quezada Date: Thu, 25 Aug 2022 23:19:46 -0400 Subject: [PATCH] Fixed Net Ball Gen 7+ multiplier --- 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 5ef95d1ac..cdf0e30ea 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -13675,7 +13675,7 @@ static void Cmd_handleballthrow(void) case ITEM_NET_BALL: if (IS_BATTLER_OF_TYPE(gBattlerTarget, TYPE_WATER) || IS_BATTLER_OF_TYPE(gBattlerTarget, TYPE_BUG)) #if B_NET_BALL_MODIFIER >= GEN_7 - ballMultiplier = 50; + ballMultiplier = 35; #else ballMultiplier = 30; #endif