diff options
Diffstat (limited to 'src/room.py')
-rw-r--r-- | src/room.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/room.py b/src/room.py index a2b21b58..48061f47 100644 --- a/src/room.py +++ b/src/room.py @@ -72,7 +72,9 @@ class Room(object): color = None if nickname is not None: self.set_color_state(12) - if nickname != self.own_nick and self.joined and nickname is not None: # do the highlight thing + else: + color = 8 + if nickname != self.own_nick and self.joined and nickname is not None: # do the highlight if self.own_nick in txt: self.set_color_state(13) color = 3 |