home · contact · privacy
Remove TODO: Examined situation, found no error.
[plomrogue2-experiments] / new / plomrogue / game.py
index 78ff6bd1904913486961447f31995d9844e610ae..2c65f045f265679e2a3377e6e8c772df011e9f89 100755 (executable)
@@ -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: