Hello, I'm working with an IRCx server. I was working on an access list and accidentally set access like this.

/access $chan add owner :

The server saw this and figured : was a nick so it added the entry like this.

CHANNEL OWNER :!*@*$* 0

When I look at the list with mIRC, raw 804 presents it like this.

CHANNEL OWNER !*@*$* 0 :

So trying to work with !*@*$*, the server tells me there is no entry because it is actually :!*@*$*. In the debug window it shows correctly.

Code:
If I set:

/access $chan add owner : 0 :Comment

it does the exact same thing.


Is this a bug?