1
0
Fork 0
forked from External/ergo

client: HasCapabs -> HasRoleCapabs to make it more clear exactly what this means

This commit is contained in:
Daniel Oaks 2017-09-29 12:11:06 +10:00
parent 810908db7f
commit cea6565b80
2 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ func (cmd *Command) Run(server *Server, client *Client, msg ircmsg.IrcMessage) b
client.Send(nil, server.name, ERR_NOPRIVILEGES, client.nick, "Permission Denied - You're not an IRC operator")
return false
}
if len(cmd.capabs) > 0 && !client.HasCapabs(cmd.capabs...) {
if len(cmd.capabs) > 0 && !client.HasRoleCapabs(cmd.capabs...) {
client.Send(nil, server.name, ERR_NOPRIVILEGES, client.nick, "Permission Denied")
return false
}