X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=new%2Fplomrogue%2Ftasks.py;h=1d59998385822fee42610e67265873871721c93d;hb=34a2854e63892c17232fed7795d1b0d16d014626;hp=58ee46d616925d50c678aa1a0030b5f5d4fa4fa4;hpb=1a3d1b2e211a01ae69e97d9f6599f221edfa3c34;p=plomrogue2-experiments diff --git a/new/plomrogue/tasks.py b/new/plomrogue/tasks.py index 58ee46d..1d59998 100644 --- a/new/plomrogue/tasks.py +++ b/new/plomrogue/tasks.py @@ -58,11 +58,10 @@ class Task_PICKUP(Task): def check(self): to_pick_up = self.thing.world.get_thing(self.args[0], create_unfound=False) - if to_pick_up is None: - raise GameError('no thing of ID %s to pick up' % self.args[0]) - if not (self.thing.position == to_pick_up.position or - tuple(to_pick_up.position) in - self.thing.world.map_.get_neighbors(self.thing.position)): + if to_pick_up is None or \ + to_pick_up.in_inventory or \ + to_pick_up == self.thing or \ + self.thing.position != to_pick_up.position: raise GameError('thing of ID %s not in reach to pick up' % self.args[0])