From 91f3304f789a8a90232bf34a2d427e43cf8cb6ef Mon Sep 17 00:00:00 2001 From: Kermina Awad Date: Sat, 24 Apr 2021 14:13:40 -0400 Subject: [PATCH] add to Buscript failed to load message --- .../java/com/onarandombox/MultiverseCore/MultiverseCore.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/onarandombox/MultiverseCore/MultiverseCore.java b/src/main/java/com/onarandombox/MultiverseCore/MultiverseCore.java index df00fbe6..90d08545 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/MultiverseCore.java +++ b/src/main/java/com/onarandombox/MultiverseCore/MultiverseCore.java @@ -364,7 +364,9 @@ public class MultiverseCore extends JavaPlugin implements MVPlugin, Core { // Add global variable "multiverse" to javascript environment buscript.setScriptVariable("multiverse", this); } catch (NullPointerException e) { - Logging.warning("Buscript failed to load! The script command will be disabled!"); + Logging.warning("Buscript failed to load! The script command will be disabled! " + + "If you would like not to see this message, " + + "use `/mv conf enablebuscript false` to disable Buscript from loading."); } } }