MCSharp.World.Map.Loaded C# (CSharp) Method

Loaded() public static method

public static Loaded ( string name ) : bool
name string
return bool
        public static bool Loaded(string name)
        {
            bool blnLoaded = false;
            foreach (Map level in Server.levels)
            {
                if (level.name == name)
                {
                    blnLoaded = true;
                    break;
                }
            }

            return blnLoaded;
        }