From c02de94190c37a05cb57c22715e415b7b19804fd Mon Sep 17 00:00:00 2001 From: 7cc5c4f330d47060 Date: Fri, 19 Jul 2024 11:36:16 -0400 Subject: [PATCH] Change eval command message --- plugins/commands/eval.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/eval.js b/plugins/commands/eval.js index 10c9cb6..b014bd3 100644 --- a/plugins/commands/eval.js +++ b/plugins/commands/eval.js @@ -3,7 +3,7 @@ const index=require("../../index.js") //Not used in the code, but may be used by module.exports={ execute: (c)=>{ if(c.type!="console"){ - c.reply(textformat("Eval command is currently not available to players in Minecraft")) + c.reply(textformat("Eval command is currently not available to players in Minecraft due to security issues.")) }; try{ console.log(eval(c.args.join(" ")));