diff options
Diffstat (limited to 'src/game/g_trigger.c')
-rw-r--r-- | src/game/g_trigger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_trigger.c b/src/game/g_trigger.c index 65bf1bd1..b3d21860 100644 --- a/src/game/g_trigger.c +++ b/src/game/g_trigger.c @@ -1097,7 +1097,7 @@ void trigger_ammo_touch( gentity_t *self, gentity_t *other, trace_t *trace ) if( other->client->ps.weaponstate != WEAPON_READY ) return; - weapon = BG_PrimaryWeapon( other->client->ps.stats ); + weapon = other->client->ps.stats[ STAT_WEAPON ]; if( BG_Weapon( weapon )->usesEnergy && self->spawnflags & 2 ) return; |