X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=plomrogue%2Fgame.py;fp=plomrogue%2Fgame.py;h=e7bc7301e0eea7782ac9cf444e8bb274f98cdef0;hb=cef4c371e71b6d5f4598cda0faed55bd03c0dae1;hp=d51c832fd36dc2e9d353969bee079f751c62ce40;hpb=3c917821215f505322bef3720d6e1d3669a567a6;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index d51c832..e7bc730 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -365,7 +365,7 @@ class Game(GameBase): self.io.send('PLAYER_ID %s' % t.id_, connection_id) self.io.send('LOGIN_OK', connection_id) for msg in self.intro_messages: - self.io.send('CHAT ' + quote(msg)) + self.io.send('CHAT ' + quote(msg), connection_id) self.io.send('CHAT ' + quote(t.name + ' entered the map.')) for s in [s for s in self.things if s.type_ == 'SpawnPoint' and s.name == t.name]: