From 4e7cea5faf3470e1cd1bf71eda5ad2999e82a822 Mon Sep 17 00:00:00 2001 From: Cody Date: Tue, 18 Jul 2017 05:38:06 -0500 Subject: Can now evolve and be boosted --- src/game/g_cmds.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index cd68354..17ec730 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -3100,7 +3100,7 @@ void Cmd_Class_f( gentity_t *ent ) vec3_t mins, maxs; int num; gentity_t *other; - + int oldBoostTime = -1; clientNum = ent->client - level.clients; trap_Argv( 1, s, sizeof( s ) ); @@ -3278,7 +3278,17 @@ void Cmd_Class_f( gentity_t *ent ) ent->client->pers.classSelection = newClass; ClientUserinfoChanged( clientNum, qfalse ); VectorCopy( infestOrigin, ent->s.pos.trBase ); + + if( ent->client->ps.stats[ STAT_STATE ] & SS_BOOSTED ) + oldBoostTime = ent->client->lastBoostedTime; + ClientSpawn( ent, ent, ent->s.pos.trBase, ent->s.apos.trBase ); + + if( oldBoostTime > 0 ) + { + ent->client->lastBoostedTime = oldBoostTime; + ent->client->ps.stats[ STAT_STATE ] |= SS_BOOSTED; + } return; } else -- cgit