fixes and some minor bc adjustment.

This commit is contained in:
Jeff Hutchinson 2021-04-16 23:21:39 -04:00
parent bc0f5bd3a3
commit bfc0109485
7 changed files with 11 additions and 22 deletions

View file

@ -2595,7 +2595,7 @@ ConsoleValue _BaseEngineConsoleCallbackHelper::_exec()
// Cannot invoke callback until object has been registered
if (mThis->isProperlyAdded())
{
ConsoleValue returnValue = std::move(Con::_internalExecute( mThis, mArgc, mArgv, false ));
ConsoleValue returnValue = Con::_internalExecute( mThis, mArgc, mArgv, false );
mArgc = mInitialArgc; // reset
return std::move(returnValue);
}