Fixed class selection not saved in cookies on instant class change.

This commit is contained in:
richard 2009-12-09 14:57:33 +01:00
parent 03cf46beb5
commit 0adc2c597a

View File

@ -388,6 +388,7 @@ public ClassMenuSelectHandle(Handle:menu, MenuAction:action, client, slot)
// Player isn't alive. The class can be directly changed.
ClassSelected[client][teamid] = classindex;
}
}
// Save selected class index in cookie if enabled.
if (GetConVarBool(g_hCvarsList[CVAR_CLASSES_SAVE]))
@ -395,7 +396,6 @@ public ClassMenuSelectHandle(Handle:menu, MenuAction:action, client, slot)
CookiesSetInt(client, g_hClassCookieClassSelected[teamid], classindex + 1);
}
}
}
case MenuAction_Cancel:
{
if (slot == MenuCancel_ExitBack)