mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-19 10:26:27 +01:00
Fix #7590: handle script exceptions during scanning
This commit is contained in:
parent
aac4255d43
commit
a82e7ec281
@ -17,6 +17,7 @@
|
||||
#include "../script/squirrel.hpp"
|
||||
#include "script_scanner.hpp"
|
||||
#include "script_info.hpp"
|
||||
#include "script_fatalerror.hpp"
|
||||
|
||||
#include "../network/network_content.h"
|
||||
#include "../3rdparty/md5/md5.h"
|
||||
@ -52,8 +53,12 @@ bool ScriptScanner::AddFile(const char *filename, size_t basepath_length, const
|
||||
if (!FioCheckFileExists(filename, this->subdir) || !FioCheckFileExists(this->main_script, this->subdir)) return false;
|
||||
|
||||
this->ResetEngine();
|
||||
try {
|
||||
this->engine->LoadScript(filename);
|
||||
|
||||
} catch (Script_FatalError e) {
|
||||
DEBUG(script, 0, "Fatal error '%s' when trying to load the script '%s'.", e.GetErrorMessage(), filename);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user