PRoConEvents.MULTIbalancer.GetRoundMapMode C# (CSharp) Method

GetRoundMapMode() private method

private GetRoundMapMode ( ) : String
return String
        private String GetRoundMapMode()
        {
            String map = Regex.Replace(FriendlyMap, @"[\s]+", "_");
            String mode = Regex.Replace(fServerInfo.GameMode, @"[a-z]+", String.Empty);
            String round = (fServerInfo.CurrentRound + 1).ToString();
            return String.Join("-", new String[]{round, map, mode});
        }
MULTIbalancer