dragon slayer2
Member
I would like to disable the pet health bar from being able to rename the pet how do I do this?
so its like every other creature
so its like every other creature
public override bool CanBeRenamedBy(Mobile from)
{
bool ret = base.CanBeRenamedBy(from);
if (Controlled && from == ControlMaster && !from.Region.IsPartOf(typeof(Jail)))
{
ret = true;
}
return ret;
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.