Sfoglia il codice sorgente

Merge pull request #142 from iopred/develop

Set GuildID on all channels in READY.
Bruce 8 anni fa
parent
commit
512257a328
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  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
 }