run go fmt over the client file since my editor likes to chowder indents

This commit is contained in:
Andrew 2019-05-08 11:40:28 +10:00
parent 9ca236b9e0
commit 48af37d999

@ -294,7 +294,7 @@ func (sc *ServerConnection) dispatchCommand(info eventmgr.InfoMap) {
}
}
if (params[0] == sc.Nick || params[0] == sc.Nick + ":") && len(params) > 1 {
if (params[0] == sc.Nick || params[0] == sc.Nick+":") && len(params) > 1 {
sc.eventsIn.Dispatch("cmd_"+params[1], info)
}
}