No longer allow loading Auto3 scripts with .lua extension.

Originally committed to SVN as r1501.
This commit is contained in:
Niels Martin Hansen 2007-08-17 02:16:41 +00:00
parent 2124c58daf
commit 9a85ba7b82
1 changed files with 1 additions and 5 deletions

View File

@ -201,11 +201,7 @@ namespace Automation4 {
lua_pop(L, 1); // just to avoid tripping the stackcheck in debug
// So this is an auto3 script...
// Throw it as an exception, the script factory manager will catch this and use the auto3 script instead of this script object
#if WITH_AUTO3 == 1
throw new Auto3Script(GetFilename());
#else
throw _T("Attempted loading an Automation 3 script, but Automation 3 support is not available");
#endif
throw _T("Attempted to load an Automation 3 script as an Automation 4 Lua script. Automation 3 is no longer supported.");
}
}
lua_getglobal(L, "script_name");