Explorar o código

Merge pull request #142 from iopred/develop

Set GuildID on all channels in READY.
Bruce %!s(int64=8) %!d(string=hai) anos
pai
achega
512257a328
Modificáronse 1 ficheiros con 7 adicións e 0 borrados
  1. 7 0
      state.go

+ 7 - 0
state.go

@@ -40,6 +40,13 @@ func (s *State) OnReady(r *Ready) error {
 	defer s.Unlock()
 
 	s.Ready = *r
+
+	for _, g := range s.Guilds {
+		for _, c := range g.Channels {
+			c.GuildID = g.ID
+		}
+	}
+
 	return nil
 }