mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +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:
|
||||
continue;
|
||||
case true when i % 3 == 0:
|
||||
case true when MathF.Log10(i) % 3 == 2:
|
||||
this.ResolveStringExpression(in context, eSep);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue