X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;ds=inline;f=plomrogue%2Ftasks.py;h=dbe23153f11d7ee842b04bca60ed694bab40f038;hb=3ac4bfc7722ec4366698ae17f5e2006e6a9e8b30;hp=105002316193b544448cdecabdc2a6410a5b41ef;hpb=0f1e35f5f1a318d6e3e610085babd46946ad3600;p=plomrogue2 diff --git a/plomrogue/tasks.py b/plomrogue/tasks.py index 1050023..dbe2315 100644 --- a/plomrogue/tasks.py +++ b/plomrogue/tasks.py @@ -82,19 +82,23 @@ class Task_PICK_UP(Task): if self.thing.carrying: raise PlayError('already carrying something') to_pick_up = self.thing.game.get_thing(self.args[0]) + neighbors = self.thing.game.map_geometry.\ + get_neighbors_yxyx(self.thing.position).values() + reach = [self.thing.position] + list(neighbors) if to_pick_up is None: raise PlayError('no thing of ID %s exists %s' % self.args[0]) elif to_pick_up == self.thing: raise PlayError('cannot pick up oneself') elif to_pick_up.type_ == 'Player': raise PlayError('cannot pick up player') - elif to_pick_up.position != self.thing.position: + elif to_pick_up.position not in reach: raise PlayError('thing of ID %s not in reach' % self.args[0]) elif not to_pick_up.portable: raise PlayError('thing of ID %s not portable' % self.args[0]) def do(self): to_pick_up = self.thing.game.get_thing(self.args[0]) + to_pick_up.position = self.thing.position[:] self.thing.carrying = to_pick_up