1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-06-30 12:21:34 +00:00

fixed RefData::getHandle

This commit is contained in:
Marc Zinnschlag 2012-09-04 15:08:59 +02:00
parent ead04e1cc3
commit 1cecab6e3d

View file

@ -75,6 +75,9 @@ namespace MWWorld
std::string RefData::getHandle()
{
if (!mBaseNode)
return "";
return mBaseNode->getName();
}