mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
commands: Fix comment
This commit is contained in:
parent
08225c201d
commit
c2e5386966
@ -7,14 +7,14 @@ package irc
|
|||||||
|
|
||||||
import "github.com/DanielOaks/girc-go/ircmsg"
|
import "github.com/DanielOaks/girc-go/ircmsg"
|
||||||
|
|
||||||
// Command represents a command accepted on a listener.
|
// Command represents a command accepted from a client.
|
||||||
type Command struct {
|
type Command struct {
|
||||||
handler func(server *Server, client *Client, msg ircmsg.IrcMessage) bool
|
handler func(server *Server, client *Client, msg ircmsg.IrcMessage) bool
|
||||||
usablePreReg bool
|
usablePreReg bool
|
||||||
minParams int
|
minParams int
|
||||||
}
|
}
|
||||||
|
|
||||||
// Run runs this command with the given listener/message.
|
// Run runs this command with the given client/message.
|
||||||
func (cmd *Command) Run(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
func (cmd *Command) Run(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
||||||
if !client.registered && !cmd.usablePreReg {
|
if !client.registered && !cmd.usablePreReg {
|
||||||
// command silently ignored
|
// command silently ignored
|
||||||
|
Loading…
Reference in New Issue
Block a user