Bean guy text formatting and rando fixes (#6444)

This commit is contained in:
Chris
2026-03-29 21:33:16 -04:00
committed by GitHub
parent efc4086c6a
commit 14b464bab2
4 changed files with 23 additions and 4 deletions
+3 -1
View File
@@ -150,7 +150,9 @@ void EnMs_Talk(EnMs* this, PlayState* play) {
void EnMs_Sell(EnMs* this, PlayState* play) {
if (Actor_HasParent(&this->actor, play)) {
Rupees_ChangeBy(-sPrices[BEANS_BOUGHT]);
if (GameInteractor_Should(VB_MAGIC_BEAN_SALESMAN_TAKE_MONEY, true, this)) {
Rupees_ChangeBy(-sPrices[BEANS_BOUGHT]);
}
this->actor.parent = NULL;
this->actionFunc = EnMs_TalkAfterPurchase;
} else {