- fixed: nextmap and nextsecret CCMDs set skill to 0.

SVN r1449 (trunk)
This commit is contained in:
Christoph Oelckers 2009-02-25 23:25:47 +00:00
parent 2c65d5b8f5
commit 1f5cf23418
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,5 @@
February 25, 2009 (Changes by Graf Zahl)
- fixed: nextmap and nextsecret CCMDs set skill to 0.
- fixed: level.flags2 was not stored in savegames. Also bumped min. savegame
version and removed old compatibility handlings.

View file

@ -865,7 +865,7 @@ CCMD(nextmap)
if (next != NULL && strncmp(next, "enDSeQ", 6))
{
G_DeferedInitNew(next, false);
G_DeferedInitNew(next);
}
else
{
@ -886,7 +886,7 @@ CCMD(nextsecret)
if (next != NULL && strncmp(next, "enDSeQ", 6))
{
G_DeferedInitNew(next, false);
G_DeferedInitNew(next);
}
else
{

View file

@ -2012,7 +2012,6 @@ static FArchive &operator<<(FArchive &arc, FSoundChan &chan)
<< chan.Rolloff.MinDistance
<< chan.Rolloff.MaxDistance
<< chan.LimitRange;
}
if (arc.IsLoading())
{