Removed hover from the help footer

This commit is contained in:
Risto Lahtela 2020-09-14 10:52:12 +03:00
parent d197e588ee
commit 44c52668c2

View File

@ -59,6 +59,7 @@ public class CommandWithSubcommands extends Subcommand {
.apply(new HelpFormatter(sender, colors, getPrimaryAlias(), hasPermissionFor)::addSubcommands)
.newLine().newLine()
.addPart(locale.getString(CommandLang.FOOTER_HELP, getPrimaryAlias()))
.hover("")
.send();
}
@ -70,6 +71,7 @@ public class CommandWithSubcommands extends Subcommand {
.apply(new HelpFormatter(sender, colors, getPrimaryAlias(), hasPermissionFor)::addInDepthSubcommands)
.newLine().newLine()
.addPart(locale.getString(CommandLang.FOOTER_HELP, getPrimaryAlias()))
.hover("")
.send();
}