public class ItemListMenu : IMenu
{
private readonly int m_Serial;
private static int m_NextSerial;
int IMenu.Serial => m_Serial;
int IMenu.EntryLength => Entries.Length;
public string Question { get; }
public ItemListEntry[] Entries { get...
Check for a typo on line 2178, you have a ; instead of || (at the end of the line)
Note : This code is causing crashes and will need gone over again by its author.
Using PlaceInBackpack with a null item is causing the crash.
I was looking at the 57 repo and curious if this line is going to hold that up?
ObjectPropertyList.Enabled = Core.AOS;
because of..
public static void ContextMenuRequest(NetState state, PacketReader pvSrc)
{
var target = World.FindEntity(pvSrc.ReadInt32())...
By your crash report it looks to be missing a null check in FactionStoneGump.cs in
public override void OnResponse(NetState sender, RelayInfo info) Case 0:
if (m_Faction.Election != null)
{...