got this error after replaceThis worked for me.
1. Open your common.cs in the mage singular folder (something like \HonorBuddy\Routines\Singular\ClassSpecific\Mage)
2. Find the function ShouldSummonTable it's around line 106
3. replace the function with this:
private static bool ShouldSummonTable
{
get
{
return SingularSettings.Instance.Mage().SummonTableIfInParty && SpellManager.HasSpell("Conjure Refreshment Table") &&
StyxWoW.Me.PartyMembers.Count(p => p.DistanceSqr < 40 * 40) >= 2;
}
}
Worked for me.
Routines\Singular\ClassSpecific\Mage\Common.cs(110,75) : error CS1002: ; expected