Skip to content

Commit

Permalink
Fix dungeon messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kphoenix137 committed Oct 8, 2024
1 parent d6c8189 commit 7556f26
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Source/diablo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2951,7 +2951,6 @@ void LoadGameLevel(bool firstflag, lvl_entry lvldir)
}
}

PlayDungMsgs();
InitMultiView();
IncProgress();

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -3053,7 +3055,6 @@ void LoadGameLevel(bool firstflag, lvl_entry lvldir)
}
}
IncProgress();
PlayDungMsgs();
InitMultiView();
IncProgress();

Expand All @@ -3069,6 +3070,7 @@ void LoadGameLevel(bool firstflag, lvl_entry lvldir)
ResyncQuests();
}

PlayDungMsgs();
InitMissiles();
IncProgress();
}
Expand Down

0 comments on commit 7556f26

Please sign in to comment.