From 60b801db278517790eef469df9d4d46eff780ed2 Mon Sep 17 00:00:00 2001 From: Chris Rhodes Date: Thu, 10 Mar 2016 22:02:59 -0800 Subject: [PATCH] Support the new bot field on User. --- structs.go | 1 + 1 file changed, 1 insertion(+) diff --git a/structs.go b/structs.go index cee6b16..1cf2dfa 100644 --- a/structs.go +++ b/structs.go @@ -241,6 +241,7 @@ type User struct { Avatar string `json:"Avatar"` Verified bool `json:"verified"` Discriminator string `json:"discriminator"` + Bot bool `json:"bot"` } // A Settings stores data for a specific users Discord client settings.