Add Option to Silence CommandBlock Console

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2014-02-09 14:39:01 +11:00
parent ff6d4b2d90
commit c3ce457c08
2 changed files with 14 additions and 1 deletions

View File

@@ -294,4 +294,10 @@ public class SpigotConfig
"/skill"
} ) );
}
public static boolean silentCommandBlocks;
private static void silentCommandBlocks()
{
SpigotConfig.silentCommandBlocks = SpigotConfig.getBoolean( "commands.silent-commandblock-console", false );
}
}