X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/balance?a=blobdiff_plain;ds=sidebyside;f=plomrogue%2Fgame.py;h=9a9b235cd454a13187a6058b88cdc7fe513238ec;hb=fef34d66adc79d129d8f8a1f3dd83501e4564988;hp=35a610881bed5fea0ce7081d2b6f92bdc2774150;hpb=08ec4530a77f65da7bee3fd60a1c8ca6d06b8760;p=plomrogue2 diff --git a/plomrogue/game.py b/plomrogue/game.py index 35a6108..9a9b235 100755 --- a/plomrogue/game.py +++ b/plomrogue/game.py @@ -252,9 +252,9 @@ class Game(GameBase): player.prepare_multiprocessible_fov_stencil() player_fovs += [player._fov] player_ids_send_fov += [player.id_] - if not (player._seen_things - and player._seen_annotation_positions - and player._seen_portal_positions): + if None in (player._seen_things, + player._seen_annotation_positions, + player._seen_portal_positions): player_ids_send_other += [player.id_] new_fovs = [] single_core_until = 16 # since multiprocess has its own overhead