added basic gui

command fixes
This commit is contained in:
John Grosh
2017-01-02 01:29:36 -05:00
parent a66af36224
commit 474cc1eb3e
12 changed files with 433 additions and 40 deletions
@@ -57,7 +57,7 @@ public class FormatUtil {
double progress = (double)track.getPosition()/track.getDuration();
String str = "**"+title+"** ["+(user==null||inTopic ? "<@"+userid+">" : user.getName())+"]\n\u25B6 "+progressBar(progress)
+" "+(inTopic ? "" : "`")+"["+formatTime(track.getPosition()) + "/" + formatTime(track.getDuration())
+"]` " +volumeIcon(handler.getPlayer().getVolume());
+"]"+(inTopic ? "" : "`")+" " +volumeIcon(handler.getPlayer().getVolume());
return str;
}
}