From 7556f267c7d038152e3327c14af901b585616ba4 Mon Sep 17 00:00:00 2001 From: Eric Robinson Date: Tue, 8 Oct 2024 19:05:16 -0400 Subject: [PATCH] Fix dungeon messages --- Source/diablo.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/diablo.cpp b/Source/diablo.cpp index e50b62433bd..c831d1046aa 100644 --- a/Source/diablo.cpp +++ b/Source/diablo.cpp @@ -2951,7 +2951,6 @@ void LoadGameLevel(bool firstflag, lvl_entry lvldir) } } - PlayDungMsgs(); InitMultiView(); IncProgress(); @@ -3019,6 +3018,9 @@ void LoadGameLevel(bool firstflag, lvl_entry lvldir) for (int y = 0; y < DMAXY; y++) UpdateAutomapExplorer({ x, y }, MAP_EXP_SELF); } + + PlayDungMsgs(); + if (UseMultiplayerQuests()) ResyncMPQuests(); else @@ -3053,7 +3055,6 @@ void LoadGameLevel(bool firstflag, lvl_entry lvldir) } } IncProgress(); - PlayDungMsgs(); InitMultiView(); IncProgress(); @@ -3069,6 +3070,7 @@ void LoadGameLevel(bool firstflag, lvl_entry lvldir) ResyncQuests(); } + PlayDungMsgs(); InitMissiles(); IncProgress(); }