- Ensure g_nextskill is used everywhere so that setting skill for next level works properly.

This commit is contained in:
Mitchell Richters 2021-07-20 18:51:34 +10:00
parent 33845c4a23
commit 675356be1a
9 changed files with 19 additions and 19 deletions

View file

@ -7045,7 +7045,7 @@ void MultiPlayLimits(void)
MapRecord *next = nullptr;
next = FindNextMap(currentLevel);
ChangeLevel(next, -1);
ChangeLevel(next, g_nextskill);
}
}
@ -7206,7 +7206,7 @@ domovethings(void)
{
map = FindNextMap(currentLevel);
}
ChangeLevel(map, -1);
ChangeLevel(map, g_nextskill);
}
}
}