Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Пассажир садится в лифт не доходя до него. #85

Open
Daramant opened this issue Sep 28, 2017 · 0 comments

Comments

@Daramant
Copy link

Пассажир садится в лифт не доходя до него.
В locarunner, в методе: on_tick() класса Passenger, в коде есть проверка:

if self.elevator.x < 0 and self.x > self.elevator.x:
      self.move(x=sign(self.elevator.x))
elif self.elevator.x > 0 and self.x < self.elevator.x:
      self.move(x=sign(self.elevator.x))
elif self.elevator.floor == self.from_floor and self.elevator.can_enter():
      self.elevator.enter(self)
      self.state = self.PASSENGER_STATE['using_elevator']

В первой строчке, если пассажир будет идти к лифту слева (если пассажира перехватили из статуса returning), то он попадет в лифт не доходя до него (зеркально в строке 3).

Fix: #84

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant