From fc1d699bb242cea12f05783c47df198e00e46b41 Mon Sep 17 00:00:00 2001 From: DakkJaniels <6080734+DakkJaniels@users.noreply.github.com> Date: Tue, 26 Apr 2022 14:17:42 -0400 Subject: [PATCH] Restore randomization of stores for multiplayer games --- Source/stores.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/stores.cpp b/Source/stores.cpp index f71381b53..024e9bbac 100644 --- a/Source/stores.cpp +++ b/Source/stores.cpp @@ -2204,6 +2204,8 @@ void SetupTownStores() if (myPlayer._pLvlVisited[i]) l = i; } + } else { + SetRndSeed(glSeedTbl[currlevel] * SDL_GetTicks()); } l = clamp(l + 2, 6, 16);