1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 09:44:52 +01:00

Fix #6954. Readd Error Message for too many rides

Removed during refactor of game actions
This commit is contained in:
duncanspumpkin
2018-01-06 07:48:37 +00:00
parent ff7eb93f5f
commit 9e30bfe313

View File

@@ -75,7 +75,7 @@ public:
if (rideIndex == -1)
{
// No more free slots available.
return std::make_unique<RideCreateGameActionResult>(GA_ERROR::NO_FREE_ELEMENTS, STR_NONE);
return std::make_unique<RideCreateGameActionResult>(GA_ERROR::NO_FREE_ELEMENTS, STR_TOO_MANY_RIDES);
}
if (_rideType >= RIDE_TYPE_COUNT)