From eb45544f84e2b1bed85929e0a760b2373a00c548 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Mon, 12 Apr 2021 17:28:32 +0200 Subject: [PATCH] :bug: Fix gold pickup still working the old way in Diablo --- Source/inv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/inv.cpp b/Source/inv.cpp index ab97fca8d..f3879acce 100644 --- a/Source/inv.cpp +++ b/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;