oops missed replacement

This commit is contained in:
Aikar
2018-01-23 00:31:28 -05:00
parent afd116982d
commit f1197dcdfc
@@ -46,7 +46,7 @@ public class JDACommandManager extends CommandManager<
public JDACommandManager(JDA jda, CommandConfig defaultConfig, JDACommandConfigProvider configProvider) {
this.jda = jda;
jda.addEventListener(new JDAListener(this));
this.defaultConfig = defaultConfig == null ? new CommandConfig() : defaultConfig;
this.defaultConfig = defaultConfig == null ? new JDACommandConfig() : defaultConfig;
this.completions = new JDACommandCompletions(this);
this.logger = Logger.getLogger(this.getClass().getSimpleName());
}