mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 19:13:07 +01:00
fix #3026: can construct maze when its open
This commit is contained in:
@@ -291,6 +291,12 @@ static void window_maze_construction_mousedown(int widgetIndex, rct_window *w, r
|
||||
*/
|
||||
static void window_maze_construction_update(rct_window *w)
|
||||
{
|
||||
rct_ride *ride = get_ride(_currentRideIndex);
|
||||
if (ride == NULL || ride->status != RIDE_STATUS_CLOSED) {
|
||||
window_close(w);
|
||||
return;
|
||||
}
|
||||
|
||||
switch (_rideConstructionState) {
|
||||
case RIDE_CONSTRUCTION_STATE_PLACE:
|
||||
if (!widget_is_active_tool(w, WIDX_MAZE_DIRECTION_GROUPBOX)) {
|
||||
|
||||
Reference in New Issue
Block a user