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
1 changed files with 1 additions and 1 deletions

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)