mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-21 05:50:18 +08:00
Fix unknown command logging
This commit is contained in:
parent
78020a9018
commit
f862514591
@ -15,7 +15,7 @@ public enum Settings {
|
|||||||
BUNGEE_OVERRIDE_STANDALONE_MODE("Bungee-Override.StandaloneMode"),
|
BUNGEE_OVERRIDE_STANDALONE_MODE("Bungee-Override.StandaloneMode"),
|
||||||
ANALYSIS_EXPORT("Analysis.Export.Enabled"),
|
ANALYSIS_EXPORT("Analysis.Export.Enabled"),
|
||||||
SHOW_ALTERNATIVE_IP("Commands.AlternativeIP.Enabled"),
|
SHOW_ALTERNATIVE_IP("Commands.AlternativeIP.Enabled"),
|
||||||
LOG_UNKNOWN_COMMANDS("DAta.Commands.LogUnknownCommands"),
|
LOG_UNKNOWN_COMMANDS("Data.Commands.LogUnknownCommands"),
|
||||||
COMBINE_COMMAND_ALIASES("Data.Commands.CombineCommandAliases"),
|
COMBINE_COMMAND_ALIASES("Data.Commands.CombineCommandAliases"),
|
||||||
WRITE_NEW_LOCALE("Plugin.WriteNewLocaleFileOnStart"),
|
WRITE_NEW_LOCALE("Plugin.WriteNewLocaleFileOnStart"),
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ public class PlanCommandPreprocessListener implements Listener {
|
|||||||
|
|
||||||
String commandName = event.getMessage().substring(1).split(" ")[0].toLowerCase();
|
String commandName = event.getMessage().substring(1).split(" ")[0].toLowerCase();
|
||||||
|
|
||||||
boolean doNotLogUnknownCommands = Settings.LOG_UNKNOWN_COMMANDS.isTrue();
|
boolean doNotLogUnknownCommands = !Settings.LOG_UNKNOWN_COMMANDS.isTrue();
|
||||||
boolean combineCommandAliasesToMainCommand = Settings.COMBINE_COMMAND_ALIASES.isTrue();
|
boolean combineCommandAliasesToMainCommand = Settings.COMBINE_COMMAND_ALIASES.isTrue();
|
||||||
|
|
||||||
if (doNotLogUnknownCommands || combineCommandAliasesToMainCommand) {
|
if (doNotLogUnknownCommands || combineCommandAliasesToMainCommand) {
|
||||||
|
Loading…
Reference in New Issue
Block a user