diff options
Diffstat (limited to 'src/strife')
-rw-r--r-- | src/strife/d_net.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/strife/d_net.c b/src/strife/d_net.c index ab9d7e12..f2bfc629 100644 --- a/src/strife/d_net.c +++ b/src/strife/d_net.c @@ -133,6 +133,7 @@ static void LoadGameSettings(net_gamesettings_t *settings) respawnparm = settings->respawn_monsters; timelimit = settings->timelimit; consoleplayer = settings->consoleplayer; + randomparm = settings->random; if (lowres_turn) { @@ -164,6 +165,7 @@ static void SaveGameSettings(net_gamesettings_t *settings) settings->fast_monsters = fastparm; settings->respawn_monsters = respawnparm; settings->timelimit = timelimit; + settings->random = randomparm; settings->lowres_turn = M_ParmExists("-record") && !M_ParmExists("-longtics"); |