shorten credits with K/M suffixes
This commit is contained in:
@@ -26,7 +26,7 @@ namespace NonaBGS.BGS {
|
||||
|
||||
public override string ToString() {
|
||||
StringBuilder builder = new StringBuilder();
|
||||
builder.AppendFormat("Sold {0} CR worth of Cartographics Data", TotalSum);
|
||||
builder.AppendFormat("Sold {0} worth of Cartographics Data", Credits.FormatCredits(TotalSum));
|
||||
return builder.ToString();
|
||||
}
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace NonaBGS.BGS {
|
||||
}
|
||||
|
||||
public override string ToString() {
|
||||
return string.Format("Sell Micro Resources: {0} CR", TotalSum);
|
||||
return string.Format("Sell Micro Resources: {0}", Credits.FormatCredits(TotalSum));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace NonaBGS.BGS {
|
||||
public override string ToString() {
|
||||
StringBuilder builder = new StringBuilder();
|
||||
|
||||
builder.AppendFormat("{0} Vouchers: {1} CR", TotalSum, Type);
|
||||
builder.AppendFormat("{0} Vouchers: {1}", Type, Credits.FormatCredits(TotalSum));
|
||||
|
||||
return builder.ToString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user