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]; }