mirror of
https://github.com/modernuo/ModernUO
synced 2026-08-11 22:23:06 -04:00
## 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) > ``` |
||
|---|---|---|
| .. | ||
| BlankMap.cs | ||
| CityMap.cs | ||
| IndecipherableMap.cs | ||
| LocalMap.cs | ||
| MapItem.cs | ||
| MapItemPackets.cs | ||
| PresetMap.cs | ||
| SeaChart.cs | ||
| TreasureMap.cs | ||
| WorldMap.cs | ||