1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 08:53:52 +00:00
This commit is contained in:
Evil Eye 2022-05-22 09:51:08 +02:00
parent ac78b537d2
commit 5146d9fc55

View file

@ -767,7 +767,7 @@ namespace MWWorld
Ptr ret = searchPtr(name, activeOnly);
if (!ret.isEmpty())
return ret;
std::string error = "failed to find an instance of object '" + std::string(name) + error;
std::string error = "failed to find an instance of object '" + std::string(name) + "'";
if (activeOnly)
error += " in active cells";
throw std::runtime_error(error);