X-Git-Url: https://plomlompom.com/repos/?p=plomrogue2-experiments;a=blobdiff_plain;f=new%2Fplomrogue%2Fthings.py;h=07c626525cf4ca2c94dcfe4011bcf219837665bf;hp=df8c78af6c38e2560cce07a4e65186d280582e71;hb=e3992a6473984ae21445b1ab9e28976ace474a0c;hpb=387100e78f7cf7c7378d9c324f14718d28f6cb9c diff --git a/new/plomrogue/things.py b/new/plomrogue/things.py index df8c78a..07c6265 100644 --- a/new/plomrogue/things.py +++ b/new/plomrogue/things.py @@ -272,7 +272,8 @@ class ThingAnimate(Thing): small_pos = thing.position[1] pos_y = calc_pos_in_fov(big_pos[0], small_pos[0], offset[0], size[0]) pos_x = calc_pos_in_fov(big_pos[1], small_pos[1], offset[1], size[1]) - if pos_y < 0 or pos_x < 0 or pos_y >= fov_size[0] or pos_x >= fov_size[1]: + if pos_y < 0 or pos_x < 0 or\ + pos_y >= fov_size[0] or pos_x >= fov_size[1]: continue if (not thing.in_inventory) and stencil[(pos_y, pos_x)] == '.': visible_things += [thing]