#W# Created an animal clan so the wilderness animals won't be decimated!
This commit is contained in:
parent
7f040e1951
commit
50731a5ed5
40 changed files with 77 additions and 32 deletions
|
|
@ -34,7 +34,8 @@ namespace Server.Mobiles
|
|||
Demonic,
|
||||
Wizard,
|
||||
Humanoid,
|
||||
Citizen
|
||||
Citizen,
|
||||
Animal
|
||||
}
|
||||
|
||||
public enum OrderType
|
||||
|
|
@ -647,6 +648,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.Animal || c.Clan == Clan.Animal )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue