PhoenixICE
PhoenixICE
This needs to be changed from: https://github.com/rwmt/Multiplayer/blob/342760f55f79cc8cb90f05b28a1b80a54c6bd11d/Source/Client/Comp/MultiplayerAsyncQuest.cs#L127-L143 To something like this: ```csharp private static readonly List questPartsToCheck; static MultiplayerAsyncQuest() => questPartsToCheck = typeof(QuestPart) .Assembly .GetTypes() .Where(x => x.Name.StartsWith("QuestPart_") && x.GetField("mapParent")...
Feature Request: If an account hits the "empty response issue" - can you take it out of the pool of accounts to scan for like x seconds (I would say...
Allow systems to call an Initialize Method and a Finalize Method aside from just having an Update Method. The initialize method allows you to contain any initialisation requirements within the...