1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 10:53:53 +00:00

Merge remote-tracking branch 'maqifrnswa/bug2407'

This commit is contained in:
Marc Zinnschlag 2015-03-04 16:55:46 +01:00
commit 2e31f01585

View file

@ -316,6 +316,7 @@ namespace MWScript
store = MWBase::Environment::get().getWorld()->getExterior(cx,cy);
if(!cell)
{
runtime.getContext().report ("unknown cell (" + cellID + ")");
std::cerr << "unknown cell (" << cellID << ")\n";
}
}
@ -428,6 +429,7 @@ namespace MWScript
store = MWBase::Environment::get().getWorld()->getExterior(cx,cy);
if(!cell)
{
runtime.getContext().report ("unknown cell (" + cellID + ")");
std::cerr << "unknown cell (" << cellID << ")\n";
}
}