FIXED Legacy reward

Prado

Neophyte
l've reached legacy 30 and pick the token to soul stone fragment, when l try to use it says that l dont have enough legacy to use !

Something wrong or is it me doing something wrong ?!!
 

Dan

Staff Member
Administrator
Game Master
Thanks, confirmed bug. Will have this fixed in the next patch.
 

Dan

Staff Member
Administrator
Game Master
Old code
Code:
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.");
            }
        }

New code
Code:
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.");
            }
        }

If you hit 31 Legacy before the next restart you will be able to use the token. Otherwise, after the restart 30+ will work correctly.
 

PLAY NOW

Heritage

Address
play.trueuo.com
Port
2593
Uptime
3 hours
Players Online
10
Houses
852
Vendors
297
Gold
5,024,901,941gp
Top Bottom