mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-12 23:44:06 +00:00
VITA/NX: Fix Weapon_Name_Touch not being sent to client
This commit is contained in:
parent
80f88c7c02
commit
46e1838d96
1 changed files with 3 additions and 0 deletions
|
@ -841,6 +841,9 @@ void SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg)
|
||||||
if (ent->v.Weapon_Name)
|
if (ent->v.Weapon_Name)
|
||||||
bits |= SU_WEAPONNAME;
|
bits |= SU_WEAPONNAME;
|
||||||
|
|
||||||
|
if (ent->v.Weapon_Name_Touch)
|
||||||
|
bits |= SU_TOUCHNAME;
|
||||||
|
|
||||||
//if (ent->v.ADS_Offset[0])
|
//if (ent->v.ADS_Offset[0])
|
||||||
// bits |= SU_ADSOFS;
|
// bits |= SU_ADSOFS;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue