HOTFIX: Removes incorrect draw of error message

This commit is contained in:
sloumdrone 2019-11-09 19:27:15 -08:00
parent bb74613323
commit 2038c9c4ac
1 changed files with 2 additions and 3 deletions

View File

@ -424,10 +424,9 @@ func (c *client) doCommandAs(action string, values []string) {
}
c.SetMessage(fmt.Sprintf("Unable to set %s, it does not exist", values[0]), true)
c.DrawMessage()
return
default:
c.SetMessage(fmt.Sprintf("Unknown command structure"), true)
}
c.SetMessage(fmt.Sprintf("Unknown command structure"), true)
c.DrawMessage()
}
func (c *client) doLinkCommandAs(action, target string, values []string) {