summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Schwarz <lakitu7@gmail.com>2009-10-10 01:51:37 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:16:45 +0000
commit973713ec7e01dd43a8fab78013992471f56a941a (patch)
treef3c352d7de49d0c26dd7b7f2d280056455d7b926
parenta1f3d889f1eca9b3a670363dd386480ec2b48a76 (diff)
* Fix tutorial text for dodge/sprint (thanks tjw)
-rw-r--r--src/cgame/cg_tutorial.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/cgame/cg_tutorial.c b/src/cgame/cg_tutorial.c
index 75bca690..5a650d06 100644
--- a/src/cgame/cg_tutorial.c
+++ b/src/cgame/cg_tutorial.c
@@ -35,7 +35,8 @@ static bind_t bindings[ ] =
{
{ "+button2", "Activate Upgrade", { -1, -1 } },
{ "+speed", "Run/Walk", { -1, -1 } },
- { "+button6", "Sprint/Dodge", { -1, -1 } },
+ { "+button6", "Dodge", { -1, -1 } },
+ { "+button8", "Sprint", { -1, -1 } },
{ "+moveup", "Jump", { -1, -1 } },
{ "+movedown", "Crouch", { -1, -1 } },
{ "+attack", "Primary Attack", { -1, -1 } },
@@ -529,11 +530,11 @@ static void CG_HumanText( char *text, playerState_t *ps )
CG_KeyNameForCommand( "+button7" ) ) );
Q_strcat( text, MAX_TUTORIAL_TEXT,
- va( "Press %s and forward to sprint\n",
- CG_KeyNameForCommand( "+button6" ) ) );
+ va( "Press %s and any direction to sprint\n",
+ CG_KeyNameForCommand( "+button8" ) ) );
Q_strcat( text, MAX_TUTORIAL_TEXT,
- va( "Press %s and another direction to dodge\n",
+ va( "Press %s and back, left-strafe, or right-strafe to dodge\n",
CG_KeyNameForCommand( "+button6" ) ) );
}