Skip to content

Commit

Permalink
Merge remote-tracking branch 'yorick/DontPingOnPmQuit' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheeo committed Feb 10, 2016
2 parents 9cda03b + 916ae0b commit da1034c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chat/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def printLine(self, name, text, scroll_forced=False, formatter=Formatters.FORMAT

# Play a ping sound and flash the title under certain circumstances
mentioned = text.find(self.lobby.client.login) != -1
if self.private or mentioned:
if mentioned or (self.private and not (formatter is Formatters.FORMATTER_RAW and text=="quit.")):
self.pingWindow()

avatar = None
Expand Down

0 comments on commit da1034c

Please sign in to comment.