forked from chipmunkmc/chipmunkbot
testing
This commit is contained in:
parent
efd0003576
commit
7d3cafa578
1 changed files with 2 additions and 2 deletions
|
@ -166,7 +166,7 @@ public class MusicCommand {
|
|||
directories.add(
|
||||
Component.text(filename + "/", color)
|
||||
.clickEvent(ClickEvent.suggestCommand(prefix + "music list " + escapedPath))
|
||||
.hoverEvent(HoverEvent.showText(Component.translatable("Click to list %s", Component.text(filename, NamedTextColor.GREEN))))
|
||||
.hoverEvent(HoverEvent.showText(Component.translatable("Click to list %s", Component.text(filename))))
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -182,7 +182,7 @@ public class MusicCommand {
|
|||
files.add(
|
||||
Component.text(filename, color)
|
||||
.clickEvent(ClickEvent.suggestCommand(prefix + "music play " + escapedPath))
|
||||
.hoverEvent(HoverEvent.showText(Component.translatable("Click to play %s", Component.text(filename, NamedTextColor.GREEN))))
|
||||
.hoverEvent(HoverEvent.showText(Component.translatable("Click to play %s", Component.text(filename))))
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue