Remove parenthesis around the release flavour to get the version string back under 27 chars

Can't quite remember why this has to be <=27 chars, maybe something to do with the space available for the version string in a typical client
viewer-2-initial-appearance
Justin Clark-Casey (justincc) 2010-09-10 21:50:40 +01:00
parent b597a295c4
commit a7f4e10f42
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ namespace OpenSim
public static string GetVersionString(string versionNumber, Flavour flavour)
{
string versionString = "OpenSim " + versionNumber + " (" + flavour + ")";
string versionString = "OpenSim " + versionNumber + " " + flavour;
return versionString.PadRight(VERSIONINFO_VERSION_LENGTH);
}