From 34908a2252b9cc67c29f71790bd4aa9c0e0705c9 Mon Sep 17 00:00:00 2001 From: Evan Date: Wed, 27 Jan 2021 19:56:11 -0700 Subject: [PATCH] fix fire blast power --- src/data/battle_moves.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/battle_moves.h b/src/data/battle_moves.h index fdc6b15f99..a5bbf6627e 100644 --- a/src/data/battle_moves.h +++ b/src/data/battle_moves.h @@ -1951,9 +1951,9 @@ const struct BattleMove gBattleMoves[MOVES_COUNT] = [MOVE_FIRE_BLAST] = { #if B_UPDATED_MOVE_DATA >= GEN_6 - .power = 120, - #else .power = 110, + #else + .power = 120, #endif .effect = EFFECT_BURN_HIT, .type = TYPE_FIRE,