X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=blobdiff_plain;f=ircd%2Fwhocmds.c;fp=ircd%2Fwhocmds.c;h=e100c1947842555c53d264b79f521a5a0ba50804;hp=584cebbbb146f098c6576067a8dcc95e38ee684b;hb=b8402b9ef585580454491088f9581a1c3a8ca8ef;hpb=13e67fb3455fe03d0102970788ff764a491df43c diff --git a/ircd/whocmds.c b/ircd/whocmds.c index 584cebb..e100c19 100644 --- a/ircd/whocmds.c +++ b/ircd/whocmds.c @@ -178,6 +178,8 @@ void do_who(struct Client* sptr, struct Client* acptr, struct Channel* repchan, */ if (IsChanOp(chan)) *(p1++) = '@'; + if (IsHalfOp(chan)) + *(p1++) = '%'; if (HasVoice(chan)) *(p1++) = '+'; if (IsZombie(chan)) @@ -188,6 +190,8 @@ void do_who(struct Client* sptr, struct Client* acptr, struct Channel* repchan, else { if (IsChanOp(chan)) *(p1++) = '@'; + else if (IsHalfOp(chan)) + *(p1++) = '%'; else if (HasVoice(chan)) *(p1++) = '+'; else if (IsZombie(chan))