#W# Created an animal clan so the wilderness animals won't be decimated!

This commit is contained in:
WarrentyExpired 2026-07-13 19:42:54 -04:00
parent 7f040e1951
commit 50731a5ed5
40 changed files with 77 additions and 32 deletions

View file

@ -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;
}