PRoConEvents.MULTIbalancer.IsDeathmatch C# (CSharp) Method

IsDeathmatch() private method

private IsDeathmatch ( ) : bool
return bool
        private bool IsDeathmatch()
        {
            if (fServerInfo == null) return false;
            return Regex.Match(fServerInfo.GameMode, @"(?:TeamDeathMatch|SquadDeathMatch|CashGrab)").Success;
        }
MULTIbalancer