diff --git a/src/openrct2/localisation/LanguagePack.cpp b/src/openrct2/localisation/LanguagePack.cpp index 5e0acfe307..67fa73c466 100644 --- a/src/openrct2/localisation/LanguagePack.cpp +++ b/src/openrct2/localisation/LanguagePack.cpp @@ -183,7 +183,7 @@ public: } else { - if (_strings.size() > (size_t)stringId) + if ((_strings.size() > (size_t)stringId) && !String::Equals(_strings[stringId].c_str(), "")) { return _strings[stringId].c_str(); }