From 8c8d1963c3850f89196a8a0ae6c0a802d19837cf Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Wed, 4 Aug 2010 00:17:05 +0000 Subject: * Cancel ghost buildables upon selling weapons to prevent minor bugs when people switch weapons more quickly than pmove can keep up with --- src/game/g_cmds.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/game') diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index 2a3edfd9..01bb8c71 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -2046,6 +2046,8 @@ void Cmd_Sell_f( gentity_t *ent ) } ent->client->ps.stats[ STAT_WEAPON ] = WP_NONE; + // Cancel ghost buildables + ent->client->ps.stats[ STAT_BUILDABLE ] = BA_NONE; //add to funds G_AddCreditToClient( ent->client, (short)BG_Weapon( weapon )->price, qfalse ); -- cgit