Fix a typo for mobile fix.

This commit is contained in:
sigonasr2 2018-11-30 16:37:34 -06:00
parent b9eabc6c8b
commit 1d8dbf7f3d
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -85,7 +85,7 @@ public class GachaBot {
Player p = Player.GetPlayerProfile(discordID, name);
DecimalFormat df = new DecimalFormat("0.0");
channel.sendMessage(new MessageBuilder("*Stats for* "+name+":").append('\n')
.append("``").append('\n')
.append("```").append('\n')
.append("Total Rolls: "+(p.GetPullData()[0]+p.GetPullData()[1]+p.GetPullData()[2])).append('\n')
.append("4* Cards: "+(p.GetPullData()[2])+" ("+df.format((double)(p.GetPullData()[2])/(p.GetPullData()[0]+p.GetPullData()[1]+p.GetPullData()[2])*100)+"%)").append(" ["+p.GetDupeData()[2]+" dupe"+((p.GetDupeData()[2]==1)?"":"s")+"]").append('\n')
.append("3* Cards: "+(p.GetPullData()[1])+" ("+df.format((double)(p.GetPullData()[1])/(p.GetPullData()[0]+p.GetPullData()[1]+p.GetPullData()[2])*100)+"%)").append(" ["+p.GetDupeData()[1]+" dupe"+((p.GetDupeData()[1]==1)?"":"s")+"]").append('\n')