From 240f41fc589cacb27a11cb4727c6b96fe1b862d6 Mon Sep 17 00:00:00 2001 From: Eduardo Quezada Date: Fri, 14 Jul 2023 10:53:40 -0400 Subject: [PATCH] Reverted BattleMove power to u8 Nothing was using it, despite what the comment suggested --- include/pokemon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pokemon.h b/include/pokemon.h index 022c155ae1..56359d8826 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -337,7 +337,7 @@ struct SpeciesInfo /*0x24*/ struct BattleMove { u16 effect; - u16 power; //higher than 255 for z moves + u8 power; u8 type; u8 accuracy; u8 pp;