From f230033eb009457cccf4c89aee1b9e5d07e55189 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 4 Jul 2015 02:54:40 -0600 Subject: [PATCH] Fixed #1538 "Meeting the condition of having x guests..." --- src/scenario.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scenario.c b/src/scenario.c index 1e486f902a..e964f304be 100644 --- a/src/scenario.c +++ b/src/scenario.c @@ -1183,7 +1183,8 @@ static void scenario_objective_check_guests_and_rating() RCT2_GLOBAL(RCT2_ADDRESS_PARK_RATING_WARNING_DAYS, uint16) = 0; } - if (RCT2_GLOBAL(RCT2_ADDRESS_COMPLETED_COMPANY_VALUE, money32) != MONEY32_UNDEFINED) + // Not sure why this was checked here... + //if (RCT2_GLOBAL(RCT2_ADDRESS_COMPLETED_COMPANY_VALUE, money32) != MONEY32_UNDEFINED) if (RCT2_GLOBAL(RCT2_ADDRESS_CURRENT_PARK_RATING, uint16) >= 700) if (RCT2_GLOBAL(RCT2_ADDRESS_GUESTS_IN_PARK, uint16) >= RCT2_GLOBAL(RCT2_ADDRESS_OBJECTIVE_NUM_GUESTS, uint16)) scenario_success();