mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 20:24:16 +01:00
Fix kilo macro not having thousands separators (#2237)
This commit is contained in:
parent
499952b3d2
commit
bc18198435
1 changed files with 1 additions and 1 deletions
|
|
@ -636,7 +636,7 @@ internal class SeStringEvaluator : IServiceType, ISeStringEvaluator
|
||||||
{
|
{
|
||||||
case false when digit == 0:
|
case false when digit == 0:
|
||||||
continue;
|
continue;
|
||||||
case true when i % 3 == 0:
|
case true when MathF.Log10(i) % 3 == 2:
|
||||||
this.ResolveStringExpression(in context, eSep);
|
this.ResolveStringExpression(in context, eSep);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue