Skip to content

Commit

Permalink
Fix text format for 100+ actors
Browse files Browse the repository at this point in the history
  • Loading branch information
Minmoose committed Nov 21, 2024
1 parent 1a4e0a5 commit ab8825f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Brio/Core/IntExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public static string ToWords(this int number, string separator = " ")
}
else
{
result.Append(separator);
result.Append("Hundred");
result.Append(separator);
result.Append(ToWords(remainder, ""));
Expand Down

0 comments on commit ab8825f

Please sign in to comment.