From 66f3f5d52e04313ce2ef632f944859b4e4f47f4b Mon Sep 17 00:00:00 2001 From: Margen67 Date: Tue, 11 May 2021 01:27:39 -1000 Subject: [PATCH] Partially solve #5165 (#14617) --- src/openrct2/interface/InteractiveConsole.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/openrct2/interface/InteractiveConsole.cpp b/src/openrct2/interface/InteractiveConsole.cpp index 367ef647b4..89980053c9 100644 --- a/src/openrct2/interface/InteractiveConsole.cpp +++ b/src/openrct2/interface/InteractiveConsole.cpp @@ -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"); + } } } }