Skip to content
This repository has been archived by the owner on Jan 24, 2019. It is now read-only.

Commit

Permalink
Fixed alchemist crit broken tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
Jofairden committed Sep 15, 2017
1 parent 3beed16 commit f9fa3a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AlchemistItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public override void ModifyTooltips(List<TooltipLine> tooltips)
tt = tooltips.FirstOrDefault(x => x.Name == "CritChance" && x.mod == "Terraria");
if (tt != null)
{
tt.text = crit + "% " + tt.text.Split(' ').Skip(1);
tt.text = crit + "% " + string.Join(" ", tt.text.Split(' ').Skip(1).ToArray());
}
else
{
Expand Down

0 comments on commit f9fa3a6

Please sign in to comment.