From d591f258296790dee9664de0d053fc0217cb38cc Mon Sep 17 00:00:00 2001 From: TheLastMudkip <124942719+TheLastMudkip@users.noreply.github.com> Date: Tue, 14 May 2024 23:51:59 -0700 Subject: [PATCH] Update Avalanche to be Single Target (#4581) Avalanche is a single target move in doubles. Currently it is bugged to be a spread move this change corrects that. Source: https://bulbapedia.bulbagarden.net/wiki/Avalanche_(move) --- src/data/moves_info.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/moves_info.h b/src/data/moves_info.h index b45139550c..4e4f32fbac 100644 --- a/src/data/moves_info.h +++ b/src/data/moves_info.h @@ -10084,7 +10084,7 @@ const struct MoveInfo gMovesInfo[MOVES_COUNT_DYNAMAX] = .type = TYPE_ICE, .accuracy = 100, .pp = 10, - .target = MOVE_TARGET_BOTH, + .target = MOVE_TARGET_SELECTED, .priority = -4, .category = DAMAGE_CATEGORY_PHYSICAL, .makesContact = TRUE,