X-Git-Url: https://plomlompom.com/repos/?p=plomrogue2-experiments;a=blobdiff_plain;f=new%2Fplomrogue%2Ftasks.py;h=5dc2f82a1db6b206827f2b6a1c23be5daaf8cf2d;hp=1d59998385822fee42610e67265873871721c93d;hb=cffcecff2e4bb085305b9ef0f7cf4b5b20445f44;hpb=76d1e8d03aea96af9339c0021922ac314c0c2a5c diff --git a/new/plomrogue/tasks.py b/new/plomrogue/tasks.py index 1d59998..5dc2f82 100644 --- a/new/plomrogue/tasks.py +++ b/new/plomrogue/tasks.py @@ -76,11 +76,10 @@ class Task_DROP(Task): argtypes = 'int:nonneg' def check(self): - to_pick_up = self.thing.world.get_thing(self.args[0], - create_unfound=False) - if to_pick_up is None: + to_drop = self.thing.world.get_thing(self.args[0], create_unfound=False) + if to_drop is None: raise GameError('no thing of ID %s to drop' % self.args[0]) - if to_pick_up.id_ not in self.thing.inventory: + if to_drop.id_ not in self.thing.inventory: raise GameError('no thing of ID %s to drop in inventory' % self.args[0])