allow gob spectators to send back Instruction maps

This commit is contained in:
Stephen McQuay 2014-04-26 13:25:30 -07:00
parent ab3586e5aa
commit 39b8a9e5d7
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ func NewSpectator(id string, ws *websocket.Conn, bw *bandwidth.Bandwidth, encodi
// from spectators. // from spectators.
func (s *Spectator) Recv() { func (s *Spectator) Recv() {
for { for {
var msgs interface{} var msgs map[string]Instruction
err := s.dec.Decode(&msgs) err := s.dec.Decode(&msgs)
if err != nil { if err != nil {
log.Printf("%s: %s", s.Id, err) log.Printf("%s: %s", s.Id, err)