From 9e30bfe313822eaf37682bc6f0120ac999da801d Mon Sep 17 00:00:00 2001 From: duncanspumpkin Date: Sat, 6 Jan 2018 07:48:37 +0000 Subject: [PATCH] Fix #6954. Readd Error Message for too many rides Removed during refactor of game actions --- src/openrct2/actions/RideCreateAction.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/actions/RideCreateAction.hpp b/src/openrct2/actions/RideCreateAction.hpp index 9aa2a4cdfe..cac2f24616 100644 --- a/src/openrct2/actions/RideCreateAction.hpp +++ b/src/openrct2/actions/RideCreateAction.hpp @@ -75,7 +75,7 @@ public: if (rideIndex == -1) { // No more free slots available. - return std::make_unique(GA_ERROR::NO_FREE_ELEMENTS, STR_NONE); + return std::make_unique(GA_ERROR::NO_FREE_ELEMENTS, STR_TOO_MANY_RIDES); } if (_rideType >= RIDE_TYPE_COUNT)