Add $-sign to refund tooltip

This commit is contained in:
Oliver Brakmann
2015-04-02 18:35:34 +02:00
parent ff77d2d029
commit 0406e8e708

View File

@@ -87,7 +87,7 @@ namespace OpenRA.Mods.Common.Traits
sellValue /= health.Value.MaxHP;
}
return "Refund: " + sellValue;
return "Refund: $" + sellValue;
}
}
}