diff options
Diffstat (limited to 'src/game/g_weapon.c')
-rw-r--r-- | src/game/g_weapon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c index 75aebbe9..e36c42c4 100644 --- a/src/game/g_weapon.c +++ b/src/game/g_weapon.c @@ -636,7 +636,8 @@ void Weapon_Build_Fire( gentity_t *ent, dynMenu_t menu ) { if( ( ent->client->ps.stats[ STAT_BUILDABLE ] & ~SB_VALID_TOGGLEBIT ) > BA_NONE ) { - ent->client->allowedToLaunch = qtrue; + G_ValidateBuild( ent, ent->client->ps.stats[ STAT_BUILDABLE ] & ~SB_VALID_TOGGLEBIT ); + ent->client->ps.stats[ STAT_BUILDABLE ] = BA_NONE; return; } |