You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+ "When a human exits an elevator, the elevator must be at the humans destination floor. But '%s' exited elevator with ID '%d' at a different floor.".formatted(
124
-
human, maybeElevatorId.orElseThrow()));
111
+
// Only if the human actually travelled around
112
+
if (human.getStartingFloor() != human.getDestinationFloor()) {
+ "When a human exits an elevator, the elevator must be at the humans destination floor. But '%s' exited elevator with ID '%d' at a different floor.".formatted(
127
+
human, maybeElevatorId.orElseThrow()));
128
+
}
125
129
}
126
130
127
131
for (Elevatorelevator : simulation.getElevators()) {
0 commit comments