mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-07-26 15:33:56 +00:00
Add config option to disable verbose usage strings (#4396)
Co-authored-by: MD <1917406+mdcfe@users.noreply.github.com> ```yml # Whether or not Essentials should show detailed command usages. # If set to false, Essentials will collapse all usages in to one single usage message. verbose-command-usages: true ``` This PR also fixes a regression in legacy usage strings where the `<command>` wasn't replaced.
This commit is contained in:
parent
ac8a13f039
commit
42293596f3
4 changed files with 13 additions and 2 deletions
|
@ -126,6 +126,8 @@ public interface ISettings extends IConf {
|
|||
|
||||
Set<String> getDisabledCommands();
|
||||
|
||||
boolean isVerboseCommandUsages();
|
||||
|
||||
boolean isCommandOverridden(String name);
|
||||
|
||||
boolean isDebug();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue