mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
P_InitMapData: Don't print the base map names in the startup/dedicated log
This commit is contained in:
parent
2caa5ff018
commit
12fe57a805
1 changed files with 10 additions and 6 deletions
|
|
@ -9142,15 +9142,19 @@ UINT8 P_InitMapData(void)
|
||||||
// Okay, it does...
|
// Okay, it does...
|
||||||
{
|
{
|
||||||
ret |= MAPRET_ADDED;
|
ret |= MAPRET_ADDED;
|
||||||
CONS_Printf("%s\n", name);
|
|
||||||
|
|
||||||
if (basenummapheaders && mapheaderinfo[i]->lumpnum != LUMPERROR)
|
if (basenummapheaders)
|
||||||
{
|
{
|
||||||
G_SetGameModified(multiplayer, true); // oops, double-defined - no record attack privileges for you
|
CONS_Printf("%s\n", name);
|
||||||
|
|
||||||
//If you replaced the map you're on, end the level when done.
|
if (mapheaderinfo[i]->lumpnum != LUMPERROR)
|
||||||
if (i == gamemap - 1)
|
{
|
||||||
ret |= MAPRET_CURRENTREPLACED;
|
G_SetGameModified(multiplayer, true); // oops, double-defined - no record attack privileges for you
|
||||||
|
|
||||||
|
//If you replaced the map you're on, end the level when done.
|
||||||
|
if (i == gamemap - 1)
|
||||||
|
ret |= MAPRET_CURRENTREPLACED;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mapheaderinfo[i]->lumpnum = maplump;
|
mapheaderinfo[i]->lumpnum = maplump;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue