mirror of
https://github.com/rehlds/Metamod-R.git
synced 2025-08-14 18:49:42 +03:00
mutil_CenterSayVarargs: Ignore dormant client's
This commit is contained in:
parent
2b059821c9
commit
41be316e12
1 changed files with 3 additions and 0 deletions
|
@ -145,6 +145,9 @@ void EXT_FUNC mutil_CenterSayVarargs(plid_t plid, hudtextparms_t tparms, const c
|
|||
if (FNullEnt(pEntity) || pEntity->free)
|
||||
continue;
|
||||
|
||||
if ((pEntity->v.flags & FL_DORMANT) == FL_DORMANT)
|
||||
continue;
|
||||
|
||||
UTIL_HudMessage(pEntity, tparms, buf);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue