From db3a2e02a539e94db564159ca7b68f346e44ecfb Mon Sep 17 00:00:00 2001 From: Monster Iestyn <iestynjealous@ntlworld.com> Date: Sun, 25 Aug 2019 22:24:08 +0100 Subject: [PATCH] Modify defaults for smpstage_start and smpstage_end to 60 and 66 respectively --- src/g_game.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/g_game.c b/src/g_game.c index e70241269b..576ea0c335 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -3285,9 +3285,11 @@ void G_LoadGameSettings(void) { // defaults spstage_start = 1; - sstage_start = smpstage_start = 50; - sstage_end = smpstage_end = 56; // 7 special stages in vanilla SRB2 + sstage_start = 50; + sstage_end = 56; // 7 special stages in vanilla SRB2 sstage_end++; // plus one weirdo + smpstage_start = 60; + smpstage_end = 66; // 7 multiplayer special stages too // initialize free sfx slots for skin sounds S_InitRuntimeSounds(); -- GitLab