mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
client: HasCapabs -> HasRoleCapabs to make it more clear exactly what this means
This commit is contained in:
parent
810908db7f
commit
cea6565b80
@ -330,8 +330,8 @@ func (client *Client) HasUsername() bool {
|
||||
return client.username != "" && client.username != "*"
|
||||
}
|
||||
|
||||
// HasCapabs returns true if client has the given (role) capabilities.
|
||||
func (client *Client) HasCapabs(capabs ...string) bool {
|
||||
// HasRoleCapabs returns true if client has the given (role) capabilities.
|
||||
func (client *Client) HasRoleCapabs(capabs ...string) bool {
|
||||
if client.class == nil {
|
||||
return false
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user