diff --git a/agents4e.py b/agents4e.py index 75369a69a..a63523e09 100644 --- a/agents4e.py +++ b/agents4e.py @@ -510,11 +510,6 @@ def execute_action(self, agent, action): agent.direction += Direction.L elif action == 'Forward': agent.bump = self.move_to(agent, agent.direction.move_forward(agent.location)) - # elif action == 'Grab': - # things = [thing for thing in self.list_things_at(agent.location) - # if agent.can_grab(thing)] - # if things: - # agent.holding.append(things[0]) elif action == 'Release': if agent.holding: agent.holding.pop()