diff --git a/AlchemistItem.cs b/AlchemistItem.cs index 62aa185c..b78d1804 100644 --- a/AlchemistItem.cs +++ b/AlchemistItem.cs @@ -90,7 +90,7 @@ public override void ModifyTooltips(List 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 {