X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/todo?a=blobdiff_plain;f=new%2Fplomrogue%2Fgame.py;h=2c65f045f265679e2a3377e6e8c772df011e9f89;hb=5eaa63d376e1a0cdad8f70c7f563ec067ad03326;hp=78ff6bd1904913486961447f31995d9844e610ae;hpb=e530d9faf68b4057322f5cc61aa0e3b76f8db3f6;p=plomrogue2-experiments diff --git a/new/plomrogue/game.py b/new/plomrogue/game.py index 78ff6bd..2c65f04 100755 --- a/new/plomrogue/game.py +++ b/new/plomrogue/game.py @@ -20,6 +20,7 @@ class ThingBase: self.position = position + class Thing(ThingBase): def __init__(self, *args, **kwargs): @@ -83,7 +84,6 @@ class Thing(ThingBase): self.set_task('MOVE', (target_direction,)) def decide_task(self): - # TODO: Check if monster can follow player too well (even when they should lose them) visible_things = self.get_visible_things() target = None for t in visible_things: