From c0737415d552ce2d7eef45dc6841af37ba568889 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Sat, 2 Sep 2017 00:33:28 +1000 Subject: [PATCH] * --- .../java/com/sk89q/worldedit/command/ScriptingCommands.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/com/sk89q/worldedit/command/ScriptingCommands.java b/core/src/main/java/com/sk89q/worldedit/command/ScriptingCommands.java index 28529fa7..182a4da9 100644 --- a/core/src/main/java/com/sk89q/worldedit/command/ScriptingCommands.java +++ b/core/src/main/java/com/sk89q/worldedit/command/ScriptingCommands.java @@ -73,7 +73,9 @@ public class ScriptingCommands { new RhinoCraftScriptEngine(); } catch (NoClassDefFoundError e) { player.printError("Failed to find an installed script engine."); - player.printError("Please "); + player.printError("Download: https://github.com/downloads/mozilla/rhino/rhino1_7R4.zip"); + player.printError("Extract: `js.jar` to `plugins` or `mods` directory`"); + player.printError("More info: https://github.com/boy0001/CraftScripts/"); return; } this.worldEdit.runScript(LocationMaskedPlayerWrapper.unwrap(player), f, scriptArgs);