X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=plomrogue%2Fgame.py;h=1dc1e92cd2a29a0a28a72aa22a5d4365741fa95d;hb=679c7c1932187a3ca008dad2e580e0e1080482fc;hp=10fcb12b19f3c7f644d11eb8376368d99c15028c;hpb=856b68988876a63409737dac77b4d4921b9a466b;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index 10fcb12..1dc1e92 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -328,7 +328,7 @@ class Game(GameBase): if self.sessions[c_id]['thing_id'] == t.id_]: self.io.send('PLAY_ERROR ' + quote(str(e)), connection_id) if self.changed_fovs: - for t in [t for t in self.things]: + for t in [t for t in self.things if t.type_ == 'Player']: t.invalidate_map_view() if self.changed: self.turn += 1