1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Partially solve #5165 (#14617)

This commit is contained in:
Margen67
2021-05-11 01:27:39 -10:00
committed by GitHub
parent 0ac77f8744
commit 66f3f5d52e

View File

@@ -196,7 +196,15 @@ static int32_t cc_rides(InteractiveConsole& console, const arguments_t& argv)
int32_t res = set_operating_setting(ride_index, RideSetSetting::RideType, type);
if (res == MONEY32_UNDEFINED)
{
console.WriteFormatLine("That didn't work");
if (!gCheatsAllowArbitraryRideTypeChanges)
{
console.WriteFormatLine(
"That didn't work. Try enabling the 'Allow arbitrary ride type changes' cheat");
}
else
{
console.WriteFormatLine("That didn't work");
}
}
}
}