Make the bunny hood not change text reactions

This commit is contained in:
starburst 2022-05-19 22:45:39 -05:00
commit 5184ec1521

View file

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