Server.Misc.Strandedness.IsStranded C# (CSharp) Méthode

IsStranded() private static méthode

private static IsStranded ( Server.Mobile from ) : bool
from Server.Mobile
Résultat bool
		private static bool IsStranded( Mobile from )
		{
			Map map = from.Map;

			if ( map == null )
				return false;

			object surface = map.GetTopSurface( from.Location );

			if ( surface is LandTile ) {
				int id = ((LandTile)surface).ID;

				return (id >= 168 && id <= 171)
					|| (id >= 310 && id <= 311);
			} else if ( surface is StaticTile ) {
				int id = ((StaticTile)surface).ID;

				return (id >= 0x1796 && id <= 0x17B2);
			}

			return false;
		}