ValeShadowind
Initiate
While in Wraith Form my pet is constantly blocking me when he catches up to me, requiring me to repeatedly go backwards and around him which is super annoying. Is this working as intended? I saw the following bit of code in WraithForm.cs but I don't know C# so I'm not sure it's causing it and intended or not:
public override void RemoveEffect(Mobile m)
{
if (m is PlayerMobile && m.IsPlayer())
((PlayerMobile)m).IgnoreMobiles = false;
BuffInfo.RemoveBuff(m, BuffIcon.WraithForm);
}
public override void RemoveEffect(Mobile m)
{
if (m is PlayerMobile && m.IsPlayer())
((PlayerMobile)m).IgnoreMobiles = false;
BuffInfo.RemoveBuff(m, BuffIcon.WraithForm);
}