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