Merge pull request #2094 from Areloch/ClearScopeAlwaysConsoleFunc

Adds a engine method to clear the scopeAlways flag on netObjects
This commit is contained in:
Areloch 2018-01-27 18:42:05 -06:00 committed by GitHub
commit 3b0b3c1f56

View file

@ -493,3 +493,8 @@ void NetObject::removeScopeRef()
}
}
DefineEngineMethod(NetObject, clearScopeAlways, void, (), ,
"@brief Clears the scope always flag on this object.\n\n")
{
object->clearScopeAlways();
}