mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-01-31 13:20:34 +00:00
Preview of the coming weapon for weapprev/weapnext
The weapon you are changing to appears in the HUD, in "pickup" format. Requires g_quick_weap == 1.
This commit is contained in:
parent
9eca08fd92
commit
01ce6787dc
1 changed files with 12 additions and 0 deletions
|
@ -768,6 +768,12 @@ Cmd_WeapPrev_f(edict_t *ent)
|
|||
|
||||
if (cl->newweapon == it)
|
||||
{
|
||||
if (g_quick_weap->value)
|
||||
{
|
||||
cl->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(cl->newweapon->icon);
|
||||
cl->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS + ITEM_INDEX(cl->newweapon);
|
||||
cl->pickup_msg_time = level.time + 0.9f;
|
||||
}
|
||||
return; /* successful */
|
||||
}
|
||||
}
|
||||
|
@ -824,6 +830,12 @@ Cmd_WeapNext_f(edict_t *ent)
|
|||
|
||||
if (cl->newweapon == it)
|
||||
{
|
||||
if (g_quick_weap->value)
|
||||
{
|
||||
cl->ps.stats[STAT_PICKUP_ICON] = gi.imageindex(cl->newweapon->icon);
|
||||
cl->ps.stats[STAT_PICKUP_STRING] = CS_ITEMS + ITEM_INDEX(cl->newweapon);
|
||||
cl->pickup_msg_time = level.time + 0.9f;
|
||||
}
|
||||
return; /* successful */
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue