mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
Add option to silence commandblock output to console: commands.silent-commandblock-console
This commit is contained in:
parent
3c5f2712e6
commit
d504751f12
@ -0,0 +1,37 @@
|
|||||||
|
From 56a408d52daeb1b53f9e426bc81dedf2b949df7b Mon Sep 17 00:00:00 2001
|
||||||
|
From: md_5 <git@md-5.net>
|
||||||
|
Date: Sun, 9 Feb 2014 14:39:01 +1100
|
||||||
|
Subject: [PATCH] Add Option to Silence CommandBlock Console
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/CommandDispatcher.java b/src/main/java/net/minecraft/server/CommandDispatcher.java
|
||||||
|
index e58be15..e6d678f 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/CommandDispatcher.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/CommandDispatcher.java
|
||||||
|
@@ -82,7 +82,7 @@ public class CommandDispatcher extends CommandHandler implements ICommandDispatc
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- if (icommandlistener != MinecraftServer.getServer()) {
|
||||||
|
+ if (icommandlistener != MinecraftServer.getServer() && !org.spigotmc.SpigotConfig.silentCommandBlocks) { // Spigot
|
||||||
|
MinecraftServer.getServer().sendMessage(chatmessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
||||||
|
index 3122a18..1a05562 100755
|
||||||
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
||||||
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
||||||
|
@@ -275,4 +275,10 @@ public class SpigotConfig
|
||||||
|
"/skill"
|
||||||
|
} ) );
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ public static boolean silentCommandBlocks;
|
||||||
|
+ private static void silentCommandBlocks()
|
||||||
|
+ {
|
||||||
|
+ silentCommandBlocks = getBoolean( "commands.silent-commandblock-console", false );
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
--
|
||||||
|
1.8.3.2
|
||||||
|
|
Loading…
Reference in New Issue
Block a user