added autohud support

format fixes
This commit is contained in:
Borja Ferrer
2005-11-21 22:30:32 +00:00
parent 8196ddd0b3
commit 7ed757dc0d
2 changed files with 27 additions and 27 deletions

View File

@ -548,13 +548,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])
}