Browse Source

Fix S_BBuyEnter

pull/124/head
Anders Jenbo 7 years ago
parent
commit
efc4be344c
  1. 2
      Source/stores.cpp

2
Source/stores.cpp

@ -2378,7 +2378,7 @@ void S_BBuyEnter()
stextlhold = 10;
stextvhold = stextsval;
stextshold = STORE_BBOY;
if (plr[myplr]._pGold >= boyitem._iIvalue + (boyitem._iIvalue >> 1)) {
if (plr[myplr]._pGold < boyitem._iIvalue + (boyitem._iIvalue >> 1)) {
StartStore(STORE_NOMONEY);
} else {
plr[myplr].HoldItem = boyitem;

Loading…
Cancel
Save