Merge pull request #1626

This commit is contained in:
scrawl 2018-03-08 20:52:37 +00:00
commit 7f39dbb129
No known key found for this signature in database
GPG key ID: 2E6CC3676024C402

View file

@ -592,7 +592,7 @@ namespace MWWorld
const ESM::Cell *ptr = search(id); const ESM::Cell *ptr = search(id);
if (ptr == 0) { if (ptr == 0) {
std::ostringstream msg; std::ostringstream msg;
msg << "Interior cell '" << id << "' not found"; msg << "Cell '" << id << "' not found";
throw std::runtime_error(msg.str()); throw std::runtime_error(msg.str());
} }
return ptr; return ptr;