## Summary - Removes allocation of a `List<ContextMenuEntry>` every time a context menu is created. - Moves packet/context menu creation logic out of the core - Fixes tame entry ## BREAKING CHANGE > [!Important] > **Developer Note** > ```cs > public virtual void GetContextMenuEntries(Mobile from, List<ContextMenuEntry> list) > ``` > and similar functions changed to > ```cs > public virtual void GetContextMenuEntries(Mobile from, ref PooledRefList<ContextMenuEntry> list) > ```
26 lines
603 B
C#
26 lines
603 B
C#
namespace Server.ContextMenus
|
|
{
|
|
public class OpenBankEntry : ContextMenuEntry
|
|
{
|
|
public OpenBankEntry() : base(6105, 12)
|
|
{
|
|
}
|
|
|
|
public override void OnClick(Mobile from, IEntity target)
|
|
{
|
|
if (!from.CheckAlive() || target is not Mobile banker)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (from.Criminal)
|
|
{
|
|
banker.Say(500378); // Thou art a criminal and cannot access thy bank box.
|
|
}
|
|
else
|
|
{
|
|
from.BankBox.Open();
|
|
}
|
|
}
|
|
}
|
|
}
|