Commit 3af5d204 authored by Melledy's avatar Melledy
Browse files

Prevent weird crashing if there was an error loading scripts

parent 14b6d3ce
...@@ -151,7 +151,9 @@ public class SceneScriptManager { ...@@ -151,7 +151,9 @@ public class SceneScriptManager {
this.blocks = blocks; this.blocks = blocks;
} catch (ScriptException e) { } catch (ScriptException e) {
Grasscutter.getLogger().error("Error running script", e); Grasscutter.getLogger().error("Error running script", e);
return;
} }
// TEMP // TEMP
this.isInit = true; this.isInit = true;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment