Improve error message for unknown cells

deque
scrawl 11 years ago
parent 091f9a8fdc
commit ad0a182b7e

@ -323,7 +323,7 @@ namespace MWScript
}
else
{
throw std::runtime_error ("unknown cell");
throw std::runtime_error (std::string("unknown cell (") + cellID + ")");
}
}
};
@ -420,7 +420,7 @@ namespace MWScript
}
else
{
throw std::runtime_error ("unknown cell");
throw std::runtime_error ( std::string("unknown cell (") + cellID + ")");
}
}
};

Loading…
Cancel
Save