fix ID out of bounds detection; less unnecessary code

This commit is contained in:
r4
2021-07-28 19:32:28 +02:00
parent f17522a5d1
commit 2e7dd71bad
2 changed files with 8 additions and 14 deletions

View File

@@ -490,8 +490,12 @@ func commandSwap(c *Client, args []string) {
id--
ids[i] = int(id)
}
c.Messagef("Swapping: %d and %d.", ids[0]+1, ids[1]+1)
c.QueueSwap(ids[0], ids[1])
if c.QueueSwap(ids[0], ids[1]) {
c.Messagef("Swapped %d and %d.", ids[0]+1, ids[1]+1)
} else {
c.Messagef("ID out of bounds.")
return
}
}
func commandShuffle(c *Client) {