//Sometimes we run into datablock issues because of mismatches...this should identify the issue... Needs to be run on the client and server
ConsoleMethod( SimObject, spitOutDataBlocks, void, 2,2, "")
{
int x = 0;
for (x=0; x<= 1000; x++)
{
try
{
SimObject *obj = Sim::findObject(x);
Con::errorf("%d %s", x, obj->getName());
}
catch(...)
{
continue;
}
}
}
