Some improvements

This commit is contained in:
hydrant
2018-12-06 19:32:37 +01:00
parent 6f8d9598a7
commit 54b647c38e
4 changed files with 7 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ namespace reallife_gamemode.Server.Extensions
}
public static string ToMoneyString(this int money)
{
return string.Format(Main.SERVER_CULTURE, "{0:C0}", money).Replace('€', '$');
return "$" + string.Format(Main.SERVER_CULTURE, "{0:C0}", money).Replace("€", "");
}
}
}