🔧 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:
mihaiitdata 2026-02-23 22:54:02 +02:00
parent e3e756bf2c
commit 3e6d2b4f1d
1 changed files with 1 additions and 1 deletions

View File

@ -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 */ /* Setează flag-ul hide_oper din config pentru stealth oper mode */
if (HasPriv(sptr, PRIV_HIDE_OPER)) if (HasPriv(sptr, PRIV_HIDE_OPER))
SetFlag(sptr, FLAG_HIDEOPER); SetFlag(sptr, FLAG_HIDE_OPER);
snomask = ConfSnoMask(aconf) & SNO_ALL; snomask = ConfSnoMask(aconf) & SNO_ALL;
snomask |= aconf->snomask & SNO_ALL; snomask |= aconf->snomask & SNO_ALL;