mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-24 05:01:24 +00:00
Grenadebug when dropping bandolier
This commit is contained in:
parent
cf0abd33b8
commit
8e78110528
1 changed files with 4 additions and 1 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.184 2003/03/30 00:36:03 jbravo
|
||||||
|
// Grenadebug when dropping bandolier
|
||||||
|
//
|
||||||
// Revision 1.183 2003/03/29 18:53:41 jbravo
|
// Revision 1.183 2003/03/29 18:53:41 jbravo
|
||||||
// Fixed ammo bug when dropping bandolier. Added color to more errormessages
|
// Fixed ammo bug when dropping bandolier. Added color to more errormessages
|
||||||
//
|
//
|
||||||
|
@ -2689,7 +2692,7 @@ void Cmd_DropItem_f(gentity_t * ent)
|
||||||
}
|
}
|
||||||
if (ent->client->numClips[WP_AKIMBO] > RQ3_AKIMBO_EXTRA_AMMO)
|
if (ent->client->numClips[WP_AKIMBO] > RQ3_AKIMBO_EXTRA_AMMO)
|
||||||
ent->client->numClips[WP_AKIMBO] = RQ3_AKIMBO_EXTRA_AMMO;
|
ent->client->numClips[WP_AKIMBO] = RQ3_AKIMBO_EXTRA_AMMO;
|
||||||
if (ent->client->ps.ammo[WP_GRENADE] > 0)
|
if (ent->client->ps.ammo[WP_GRENADE] > 2)
|
||||||
ent->client->ps.ammo[WP_GRENADE] = 2;
|
ent->client->ps.ammo[WP_GRENADE] = 2;
|
||||||
if (ent->client->numClips[WP_PISTOL] > 1)
|
if (ent->client->numClips[WP_PISTOL] > 1)
|
||||||
ent->client->numClips[WP_PISTOL] = 1;
|
ent->client->numClips[WP_PISTOL] = 1;
|
||||||
|
|
Loading…
Reference in a new issue