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 ab453d068c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();
}