Skip to content

Commit

Permalink
checker fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jammer312 committed Sep 1, 2020
1 parent 946dafc commit 4c11cf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions discord_commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -740,8 +740,8 @@ func init() {
if ckey == "" {
return "incorrect input"
}
for uid, _ckey := range(local_users) {
if (ckey == _ckey) {
for uid, key := range(local_users) {
if (ckey == ckey_simplifier(key)) {
return "ckey '" + ckey + "' is bound to <@"+uid+">"
}
}
Expand Down

0 comments on commit 4c11cf8

Please sign in to comment.