Skip to content
This repository has been archived by the owner on Nov 3, 2022. It is now read-only.

Commit

Permalink
Abilities: Capitalize Radius
Browse files Browse the repository at this point in the history
  • Loading branch information
legodude17 committed Jul 26, 2022
1 parent 99037b4 commit ddb70e9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified 1.3/Assemblies/VFECore.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/VFECore/Abilities/Ability.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public virtual string GetDescriptionForPawn()
sb.AppendLine($"{"MinimumRange".Translate()}: {this.def.minRange}".Colorize(Color.cyan));
float radiusForPawn = this.GetRadiusForPawn();
if (radiusForPawn > 0f && radiusForPawn < 500f)
sb.AppendLine($"{"radius".Translate()}: {radiusForPawn}".Colorize(Color.cyan));
sb.AppendLine($"{"radius".Translate().CapitalizeFirst()}: {radiusForPawn}".Colorize(Color.cyan));
if (this.def.minRadius > 0f)
sb.AppendLine($"{"VFEA.MinRadius".Translate()}: {this.def.minRadius}".Colorize(Color.cyan));
float powerForPawn = this.GetPowerForPawn();
Expand Down

0 comments on commit ddb70e9

Please sign in to comment.