updated deps
updated logger added repeat mode added loading playlist from video added more game types stop command improved
This commit is contained in:
@@ -122,8 +122,8 @@ public class FormatUtil {
|
||||
public static String progressBar(double percent)
|
||||
{
|
||||
String str = "";
|
||||
for(int i=0; i<8; i++)
|
||||
if(i == (int)(percent*8))
|
||||
for(int i=0; i<12; i++)
|
||||
if(i == (int)(percent*12))
|
||||
str+="\uD83D\uDD18";
|
||||
else
|
||||
str+="▬";
|
||||
|
||||
Reference in New Issue
Block a user