From e1f05fd1555c862f28ac2bb8a18bdf8b0f4d6c67 Mon Sep 17 00:00:00 2001 From: staphen Date: Mon, 4 Sep 2023 22:45:02 -0400 Subject: [PATCH] Load stash data based on gbIsHellfire, not gbIsHellfireSaveGame --- Source/diablo.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/diablo.cpp b/Source/diablo.cpp index 51c3bcdad..fa96870e3 100644 --- a/Source/diablo.cpp +++ b/Source/diablo.cpp @@ -2736,7 +2736,10 @@ void LoadGameLevel(bool firstflag, lvl_entry lvldir) } if (firstflag || lvldir == ENTRY_LOAD) { + bool isHellfireSaveGame = gbIsHellfireSaveGame; + gbIsHellfireSaveGame = gbIsHellfire; LoadStash(); + gbIsHellfireSaveGame = isHellfireSaveGame; } IncProgress();