public override void OnDoubleClick(Mobile from)
{
if (from.Account.TotalGameTime.Days > 30)
{
base.OnDoubleClick(from);
}
else
{
from.SendMessage("You do not have the Legacy required to use this item.");
}
}
public override void OnDoubleClick(Mobile from)
{
if (from.Account.TotalGameTime.Days >= 30)
{
base.OnDoubleClick(from);
}
else
{
from.SendMessage("You do not have the Legacy required to use this item.");
}
}