In commit ebe44816666f5ec28a8c2850ecffccda81c763bd the added realm reconnect would ignore the optimal realm and reconnect to the realm it was in before either way.
I'm assuming this originates from if (client.State.LastRealm?.Name.Contains(bestName) ?? false)
and would work better if changed to if (client.State.LastRealm?.Name == "NexusPortal." + bestName)
although I haven't tested this fix yet, this should work fine.
Edit: also as seen here: https://azuki.s-ul.eu/s5CCXcsZ I would also set the variable bestName in the else from the first if-statement
In commit ebe44816666f5ec28a8c2850ecffccda81c763bd the added realm reconnect would ignore the optimal realm and reconnect to the realm it was in before either way.
I'm assuming this originates from
if (client.State.LastRealm?.Name.Contains(bestName) ?? false)
and would work better if changed toif (client.State.LastRealm?.Name == "NexusPortal." + bestName)
although I haven't tested this fix yet, this should work fine.Edit: also as seen here: https://azuki.s-ul.eu/s5CCXcsZ I would also set the variable
bestName
in theelse
from the first if-statement