added autohud

format fixes
This commit is contained in:
Borja Ferrer
2005-12-02 23:34:11 +00:00
parent 507a901a9e
commit 186728053a
6 changed files with 74 additions and 74 deletions

View File

@ -555,13 +555,13 @@ public actionClcmdMenu(id,key) {
replace(command,63,"%authid%",authid)
replace(command,63,"%name%",name)
if (flags & 1) {
server_cmd(command)
server_cmd("%s", command)
server_exec()
}
else if (flags & 2)
client_cmd(id,command)
client_cmd(id, "%s", command)
else if (flags & 4)
client_cmd(player,command)
client_cmd(player, "%s", command)
}
if (flags & 8) displayClcmdMenu(id,g_menuPosition[id])
}