mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
7b0c576798
Allows us much greater control over the Spigot portion of the code and makes us more "proper" Credit to @Dmck2b for originally passing the idea along a while back
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
From 9415a077fbdf2ee6e336765b307c57156cc3610a 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 0644276..84bcca1 100644
|
|
--- a/src/main/java/net/minecraft/server/CommandDispatcher.java
|
|
+++ b/src/main/java/net/minecraft/server/CommandDispatcher.java
|
|
@@ -83,7 +83,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 44eea2e..6b5ee89 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
|
@@ -283,4 +283,10 @@ public class SpigotConfig
|
|
"/skill"
|
|
} ) );
|
|
}
|
|
+
|
|
+ public static boolean silentCommandBlocks;
|
|
+ private static void silentCommandBlocks()
|
|
+ {
|
|
+ silentCommandBlocks = getBoolean( "commands.silent-commandblock-console", false );
|
|
+ }
|
|
}
|
|
--
|
|
1.9.1
|
|
|