#W# Made DungeonRegions and the Underworld No Clan zones.

This commit is contained in:
WarrentyExpired 2026-07-12 17:41:11 -04:00
parent c181328cf4
commit 1576e57d94
2 changed files with 10 additions and 1 deletions

View file

@ -646,6 +646,11 @@ namespace Server.Mobiles
if ( !m_bSummoned && !m_bControlled && !c.m_bSummoned && !c.m_bControlled )
{
if ( this.Region.Name == "DungeonRegion" || this.Map.Name == "Underworld" )
{
return false;
}
if ( Clan == Clan.Citizen && c.Clan == Clan.Citizen )
return false;
@ -4124,4 +4129,4 @@ namespace Server.Mobiles
[CommandProperty( AccessLevel.GameMaster )]
public int RemoveStep { get { return m_RemoveStep; } set { m_RemoveStep = value; } }
}
}
}