Removing beeps for now.

This commit is contained in:
Andrey Petrov 2014-12-13 11:16:47 -08:00
parent cd50bf5caa
commit 460b81be2e

View File

@ -93,12 +93,7 @@ func (s *Server) Broadcast(msg string, except *Client) {
if except != nil && client == except { if except != nil && client == except {
continue continue
} }
/* Add an ascii BEL to ding clients when they're mentioned */ client.Msg <- msg
if strings.HasPrefix(msg, fmt.Sprintf("%s:", client.Name)) {
client.Msg <- msg + BEEP
} else {
client.Msg <- msg
}
} }
} }