Implement local specialty spawning

This commit is contained in:
Melledy
2022-05-18 02:21:34 -07:00
parent df580bf519
commit a48585d124
18 changed files with 328 additions and 67 deletions

View File

@@ -95,7 +95,7 @@ public class ScriptLoader {
return sc.get();
}
Grasscutter.getLogger().info("Loaded Script" + path);
Grasscutter.getLogger().info("Loading script " + path);
File file = new File(path);
@@ -106,7 +106,7 @@ public class ScriptLoader {
scriptsCache.put(path, new SoftReference<>(script));
return script;
} catch (Exception e) {
Grasscutter.getLogger().error("Loaded Script {} failed!", path, e);
Grasscutter.getLogger().error("Loading script {} failed!", path, e);
return null;
}