Browse Source

🐛 Fix gold pickup still working the old way in Diablo

pull/1485/head
Anders Jenbo 5 years ago
parent
commit
eb45544f84
  1. 2
      Source/inv.cpp

2
Source/inv.cpp

@ -2140,7 +2140,7 @@ void InvGetItem(int pnum, int ii)
CheckBookLevel(pnum);
CheckItemStats(pnum);
bool cursor_updated = false;
if (gbIsHellfire && plr[pnum].HoldItem._itype == ITYPE_GOLD && GoldAutoPlace(pnum))
if (plr[pnum].HoldItem._itype == ITYPE_GOLD && GoldAutoPlace(pnum))
cursor_updated = true;
CleanupItems(ii);
pcursitem = -1;

Loading…
Cancel
Save