From 3a56bcbfbbb086d8fee66613cbb98fd5a3d49e97 Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Mon, 4 Feb 2002 05:44:00 +0000 Subject: [PATCH] Fixed a typo in knives name --- reaction/game/g_teamplay.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reaction/game/g_teamplay.c b/reaction/game/g_teamplay.c index ac1fc554..2493fb9f 100644 --- a/reaction/game/g_teamplay.c +++ b/reaction/game/g_teamplay.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.9 2002/02/04 05:44:00 jbravo +// Fixed a typo in knives name +// // Revision 1.8 2002/02/03 21:23:51 slicer // More Matchmode code and fixed 2 bugs in TP // @@ -455,7 +458,7 @@ void RQ3_Cmd_Choose_f( gentity_t *ent ) } else if (Q_stricmp (cmd, RQ3_SSG3000_NAME) == 0 || Q_stricmp (cmd, "sniper") == 0) { ent->client->teamplayWeapon = WP_SSG3000; trap_SendServerCommand(ent-g_entities, va("print \"Weapon selected: %s\n\"", RQ3_SSG3000_NAME)); - } else if (Q_stricmp (cmd, RQ3_KNIFE_NAME) == 0 || Q_stricmp (cmd, "knifes") == 0) { + } else if (Q_stricmp (cmd, RQ3_KNIFE_NAME) == 0 || Q_stricmp (cmd, "knives") == 0) { ent->client->teamplayWeapon = WP_KNIFE; trap_SendServerCommand(ent-g_entities, va("print \"Weapon selected: %s\n\"", RQ3_KNIFE_NAME)); } else if (Q_stricmp (cmd, RQ3_AKIMBO_NAME) == 0 || Q_stricmp (cmd, "akimbo") == 0) {