Allow skipping main.tscript execution

This commit is contained in:
Lukas Aldershaab 2023-09-27 20:40:14 +02:00 committed by Brian Roberts
parent 0f55389712
commit 569f3a1e41

View file

@ -468,6 +468,10 @@ bool StandardMainLoop::handleCommandLine( S32 argc, const char **argv )
#endif #endif
mainCsStream = &str; mainCsStream = &str;
} }
else if (String::compare(argv[1], "SkipMainCs"))
{
return true;
}
} }
if (useDefaultScript) if (useDefaultScript)