diff --git a/flatland/utils/rendertools.py b/flatland/utils/rendertools.py index 713f65f0d726f1b89778982cf0fe1443b4e24282..b96531c6f2162553d13ba5b4dc7415626266e11f 100644 --- a/flatland/utils/rendertools.py +++ b/flatland/utils/rendertools.py @@ -762,18 +762,12 @@ class RenderTool(object): iAction = action_dict[iAgent] new_direction, action_isValid = self.env.check_action(agent, iAction) - - # ** TODO *** - # why should we only update if the action is valid ? - if True: - if action_isValid: - self.gl.setAgentAt(iAgent, *agent.position, agent.direction, new_direction, color=oColor) - else: - # pass - print("invalid action - agent ", iAgent, " bend ", agent.direction, new_direction) - self.gl.setAgentAt(iAgent, *agent.position, agent.direction, new_direction) - else: + if action_isValid: self.gl.setAgentAt(iAgent, *agent.position, agent.direction, new_direction, color=oColor) + else: + #pass + print("invalid action - agent ", iAgent, " bend ", agent.direction, new_direction) + self.gl.setAgentAt(iAgent, *agent.position, agent.direction, new_direction) self.gl.show() for i in range(3):