mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-14 05:41:02 +00:00
Move where multiplayer replays are started
This particularly allows a server to record the first map after startup as a replay. Players joining mid-map can no longer record replays tho
This commit is contained in:
parent
894db0c6fd
commit
ab226c1e39
2 changed files with 6 additions and 6 deletions
|
@ -2337,11 +2337,6 @@ static void Got_Mapcmd(UINT8 **cp, INT32 playernum)
|
|||
return;
|
||||
}
|
||||
|
||||
//@TODO NET REPLAYS NEED BETTER FILE NAMING STUFF. ALSO OPTIONS. FUCK.
|
||||
if (multiplayer) {
|
||||
G_RecordDemo("net_replay_test");
|
||||
}
|
||||
|
||||
if (chmappending)
|
||||
chmappending--;
|
||||
|
||||
|
|
|
@ -3156,6 +3156,11 @@ boolean P_SetupLevel(boolean skipprecip)
|
|||
? cv_basenumlaps.value
|
||||
: mapheaderinfo[gamemap - 1]->numlaps);
|
||||
|
||||
//@TODO NET REPLAYS NEED BETTER FILE NAMING STUFF. ALSO OPTIONS. FUCK.
|
||||
if (!demoplayback && multiplayer) {
|
||||
G_RecordDemo("net_replay_test");
|
||||
}
|
||||
|
||||
// ===========
|
||||
// landing point for netgames.
|
||||
netgameskip:
|
||||
|
@ -3435,7 +3440,7 @@ boolean P_AddWadFile(const char *wadfilename)
|
|||
//
|
||||
R_AddSkins(wadnum); // faB: wadfile index in wadfiles[]
|
||||
|
||||
//
|
||||
//
|
||||
// edit music defs
|
||||
//
|
||||
S_LoadMusicDefs(wadnum);
|
||||
|
|
Loading…
Reference in a new issue