diff --git a/data/language/english_uk.txt b/data/language/english_uk.txt index 024aa3a7a3..13bf2f8ae9 100644 --- a/data/language/english_uk.txt +++ b/data/language/english_uk.txt @@ -3925,7 +3925,7 @@ STR_5583 :{COMMA1DP16}ms{POWERNEGATIVEONE} STR_5584 :SI STR_5585 :{SMALLFONT}{BLACK}Unlocks ride operation limits, allowing for things like {VELOCITY} lift hills STR_5586 :Automatically open shops and stalls -STR_5587 :{SMALLFONT}{BLACK}When enabled, shops and stalls will be automatically opened after placing then in the map +STR_5587 :{SMALLFONT}{BLACK}When enabled, shops and stalls will be automatically opened after building them ##################### # Rides/attractions # diff --git a/src/windows/ride_construction.c b/src/windows/ride_construction.c index 68c71a752d..4d8c1c992c 100644 --- a/src/windows/ride_construction.c +++ b/src/windows/ride_construction.c @@ -588,7 +588,7 @@ static void window_ride_construction_close(rct_window *w) rct_ride *ride = GET_RIDE(rideIndex); if (ride->mode == RIDE_MODE_SHOP_STALL && gConfigGeneral.auto_open_shops) { - ride->status = 1; + ride->status = RIDE_STATUS_OPEN; } window_ride_main_open(rideIndex);