Skip to content
Snippets Groups Projects
Commit 3af5d204 authored by Melledy's avatar Melledy
Browse files

Prevent weird crashing if there was an error loading scripts

parent 14b6d3ce
No related merge requests found
......@@ -151,7 +151,9 @@ public class SceneScriptManager {
this.blocks = blocks;
} catch (ScriptException e) {
Grasscutter.getLogger().error("Error running script", e);
return;
}
// TEMP
this.isInit = true;
}
......
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