finally ...
This commit is contained in:
parent
f0e2c14879
commit
ad4276152e
|
@ -361,14 +361,14 @@ func handleCmdMode(sv *Server, msg *irc.Message) {
|
||||||
if _, exists := sv.chUsers[chid]; !exists {
|
if _, exists := sv.chUsers[chid]; !exists {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if _, exists := msg.Args[1]; !exists {
|
if len(msg.Args) < 2 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
modeFlag := strings.ToLower(msg.Args[1])
|
modeFlag := strings.ToLower(msg.Args[1])
|
||||||
if _, exists := msg.Args[2]; !exists {
|
if len(msg.Args) < 3 {
|
||||||
modeTar := ""
|
//modeTar := ""
|
||||||
} else {
|
} else {
|
||||||
modeTar := strings.ToLower(msg.Args[2])
|
//modeTar := strings.ToLower(msg.Args[2])
|
||||||
}
|
}
|
||||||
switch modeFlag {
|
switch modeFlag {
|
||||||
case "+o":
|
case "+o":
|
||||||
|
|
Loading…
Reference in New Issue