- Fixed: Skill level confirmation only worked with Doom. Also fixed parsing

of MustConfirm: It looked for TK_String when it should have used TK_StringConst.
- Fixed: When travelling to a new non-hub map, any items being carried with
  amounts of 0 would be upped to 1.


SVN r589 (trunk)
This commit is contained in:
Randy Heit 2007-12-09 02:27:02 +00:00
commit 1225071f78
8 changed files with 13 additions and 8 deletions

View file

@ -3144,12 +3144,10 @@ static void ParseSkill ()
else if (SC_Compare("MustConfirm"))
{
skill.MustConfirm = true;
/*
if (SC_CheckToken(TK_String))
if (SC_CheckToken(TK_StringConst))
{
skill.MustConfirmText = sc_String;
}
*/
}
else if (SC_Compare("Key"))
{