Yvan Major
Member
Hi what should i change in those lines to get ToT to drop on all facet ?
Anyone able to help please !
Anyone able to help please !
Code:
private static bool CheckLocation(Mobile m)
{
Region r = m.Region;
if (r.IsPartOf(typeof(Server.Regions.HouseRegion)) || Server.Multis.BaseBoat.FindBoatAt(m, m.Map) != null)
return false;
//TODO: a CanReach of something check as opposed to above?
if (r.IsPartOf( "Yomotsu Mines" ) || r.IsPartOf( "Fan Dancer Dojo" ))
return true;
return (m.Map == Map.Trammel);
}