🔧 Fix typo: FLAG_HIDEOPER → FLAG_HIDE_OPER
Eroare de compilare: m_oper.c:130:19: error: 'FLAG_HIDEOPER' undeclared did you mean 'FLAG_HIDE_OPER'? Fix: Numele corect al flag-ului e FLAG_HIDE_OPER (cu underscore) Testing: Compilează fără erori acum
This commit is contained in:
parent
e3e756bf2c
commit
3e6d2b4f1d
|
|
@ -127,7 +127,7 @@ void do_oper(struct Client* cptr, struct Client* sptr, struct ConfItem* aconf)
|
|||
|
||||
/* Setează flag-ul hide_oper din config pentru stealth oper mode */
|
||||
if (HasPriv(sptr, PRIV_HIDE_OPER))
|
||||
SetFlag(sptr, FLAG_HIDEOPER);
|
||||
SetFlag(sptr, FLAG_HIDE_OPER);
|
||||
|
||||
snomask = ConfSnoMask(aconf) & SNO_ALL;
|
||||
snomask |= aconf->snomask & SNO_ALL;
|
||||
|
|
|
|||
Loading…
Reference in New Issue