1
0

Fixed horse UI desync when taking saddle out (#5108)

due to overlooked fallthrough
This commit is contained in:
wereii 2021-01-16 19:27:50 +01:00 committed by GitHub
parent 054a89dd9e
commit bdb45998c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2803,6 +2803,7 @@ void cSlotAreaHorse::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a_C
{
return;
}
break;
}
case ArmorSlot:
{
@ -2810,9 +2811,11 @@ void cSlotAreaHorse::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a_C
{
return;
}
break;
}
default: break;
}
}
default: break;
}