Fix prefix of "halfop" when "multi-prefix" is active

This commit is contained in:
Alexander Barton 2012-09-23 19:23:23 +02:00
parent 1744a8d145
commit fc39146f48
1 changed files with 1 additions and 1 deletions

View File

@ -820,7 +820,7 @@ who_flags_qualifier(CLIENT *Client, const char *chan_user_modes, char *str, size
if (strchr(chan_user_modes, 'o'))
strlcat(str, "@", len);
if (strchr(chan_user_modes, 'h'))
strlcat(str, "&", len);
strlcat(str, "%", len);
if (strchr(chan_user_modes, 'v'))
strlcat(str, "+", len);