Fixed idle animation for Two Handed items

Nintendo messed up and put a 0 instead of a 1, which will restore the two handed animations that are normally loaded
This commit is contained in:
PurpleHato 2022-05-11 23:42:17 +02:00
commit a2acc6bedb

View file

@ -6981,7 +6981,7 @@ void func_808409CC(GlobalContext* globalCtx, Player* this) {
if (sp34 < 4) {
if (((sp34 != 0) && (sp34 != 3)) || ((this->rightHandType == PLAYER_MODELTYPE_RH_SHIELD) &&
((sp34 == 3) || Player_GetSwordHeld(this)))) {
if ((sp34 == 0) && Player_HoldsTwoHandedWeapon(this)) {
if ((sp34 == 1) && Player_HoldsTwoHandedWeapon(this)) {
sp34 = 4;
}
sp38 = sp34 + 9;