Explorar el Código

Fixed unexported "mute" in Members

Bruce Marriner hace 9 años
padre
commit
aba292d922
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      guild.go

+ 1 - 1
guild.go

@@ -51,7 +51,7 @@ type Member struct {
 	GuildId  string   `json:"guild_id"`
 	JoinedAt string   `json:"joined_at"`
 	Deaf     bool     `json:"deaf"`
-	mute     bool     `json:"mute"`
+	Mute     bool     `json:"mute"`
 	User     User     `json:"user"`
 	Roles    []string `json:"roles"`
 }