mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
bind command will now accept any number of parameters, e.g.
bind 5 impulse 5
This commit is contained in:
parent
bbb594019b
commit
3541ef420b
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ void Key_Bind_f (void)
|
|||
|
||||
c = Cmd_Argc();
|
||||
|
||||
if (c != 2 && c != 3)
|
||||
if (c < 2)
|
||||
{
|
||||
Con_Printf ("bind <key> [command] : attach a command to a key\n");
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue