From 5d8ace116036484f60257c7534e349003d90f7aa Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Sat, 3 Oct 2009 12:51:25 +0000 Subject: /give funds should accept non-integral arguments woo one line commit woo --- src/game/g_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game') diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index f3f793b2..02c35643 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -364,7 +364,7 @@ void Cmd_Give_f( gentity_t *ent ) if( give_all || Q_stricmpn( name, "funds", 5 ) == 0 ) { - int credits = atoi( name + 6 ); + float credits = atof( name + 6 ); if( ent->client->pers.teamSelection == TEAM_ALIENS ) credits *= ALIEN_CREDITS_PER_KILL; -- cgit