1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 23:23:52 +00:00

Merge remote-tracking branch 'maqifrnswa/bug2407' into openmw-35-1

This commit is contained in:
Marc Zinnschlag 2015-03-04 17:09:13 +01:00
commit 9f155df761

View file

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