1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-23 15:52:55 +01:00

Fix #1723 issue caused by failing to return.

The logic would fall through to the ending code so that it would just make a beeline to the exit after walking to one corner.
This commit is contained in:
duncanspumpkin
2015-09-27 16:21:45 +01:00
parent 4643881389
commit 1a0fc46559

View File

@@ -2643,6 +2643,7 @@ static void peep_udpate_ride_sub_state_13(rct_peep* peep){
peep->destination_x = x;
peep->destination_y = y;
return;
}
peep->var_37 |= 3;