From 5184ec1521b801d9370f74867add70d7a5b1be15 Mon Sep 17 00:00:00 2001 From: starburst Date: Thu, 19 May 2022 22:45:39 -0500 Subject: [PATCH] Make the bunny hood not change text reactions --- soh/src/code/z_face_reaction.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/soh/src/code/z_face_reaction.c b/soh/src/code/z_face_reaction.c index d463da4f7..53d60e390 100644 --- a/soh/src/code/z_face_reaction.c +++ b/soh/src/code/z_face_reaction.c @@ -66,5 +66,7 @@ u16 sReactionTextIds[][PLAYER_MASK_MAX] = { u16 Text_GetFaceReaction(GlobalContext* globalCtx, u32 reactionSet) { u8 currentMask = Player_GetMask(globalCtx); + if (currentMask == PLAYER_MASK_BUNNY) + return sReactionTextIds[reactionSet][0]; return sReactionTextIds[reactionSet][currentMask]; }