Prevent a crash when bad data passed

This commit is contained in:
duncanspumpkin 2019-03-18 21:50:29 +00:00
parent 576976627e
commit d5fa7185ca
1 changed files with 5 additions and 2 deletions

View File

@ -417,12 +417,15 @@ static int32_t cc_rides(InteractiveConsole& console, const arguments_t& argv)
{ {
console.WriteFormatLine("This command expects the string all or two integer arguments"); console.WriteFormatLine("This command expects the string all or two integer arguments");
} }
else
{
auto rideSetPrice = RideSetPriceAction(rideId, price, true); auto rideSetPrice = RideSetPriceAction(rideId, price, true);
GameActions::Execute(&rideSetPrice); GameActions::Execute(&rideSetPrice);
} }
} }
} }
} }
}
else else
{ {
console.WriteFormatLine("subcommands: list, set"); console.WriteFormatLine("subcommands: list, set");