- 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:
parent
a849564d62
commit
1225071f78
8 changed files with 13 additions and 8 deletions
|
|
@ -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"))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue