From 3541ef420b2d9f1781774ad015d056b2d9eb8845 Mon Sep 17 00:00:00 2001 From: "Anton E. Gavrilov" Date: Mon, 31 Jul 2000 12:57:30 +0000 Subject: [PATCH] bind command will now accept any number of parameters, e.g. bind 5 impulse 5 --- source/keys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/keys.c b/source/keys.c index a8a6f5c..721a179 100644 --- a/source/keys.c +++ b/source/keys.c @@ -625,7 +625,7 @@ void Key_Bind_f (void) c = Cmd_Argc(); - if (c != 2 && c != 3) + if (c < 2) { Con_Printf ("bind [command] : attach a command to a key\n"); return;