Extend: Bugfix
This commit is contained in:
parent
c932ee868c
commit
0bb248fb3a
@ -353,4 +353,15 @@ public int Handler_VoteCallback(Menu menu, MenuAction action, int param1, int pa
|
|||||||
void CancelGameOver()
|
void CancelGameOver()
|
||||||
{
|
{
|
||||||
StoreToAddress(g_pGameOver, 0, NumberType_Int8);
|
StoreToAddress(g_pGameOver, 0, NumberType_Int8);
|
||||||
|
|
||||||
|
for (int client = 1; client <= MaxClients; client++)
|
||||||
|
{
|
||||||
|
if (IsClientInGame(client))
|
||||||
|
{
|
||||||
|
if (IsClientObserver(client))
|
||||||
|
SetEntityMoveType(client, MOVETYPE_NOCLIP);
|
||||||
|
else
|
||||||
|
SetEntityMoveType(client, MOVETYPE_WALK);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user