From 7e489a88afe6a4a3aa11330562e45b9f535f66b2 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 f5e5ac046..e398029de 100644 --- a/Source/diablo.cpp +++ b/Source/diablo.cpp @@ -2756,7 +2756,10 @@ void LoadGameLevel(bool firstflag, lvl_entry lvldir) } if (firstflag || lvldir == ENTRY_LOAD) { + bool isHellfireSaveGame = gbIsHellfireSaveGame; + gbIsHellfireSaveGame = gbIsHellfire; LoadStash(); + gbIsHellfireSaveGame = isHellfireSaveGame; } IncProgress();