im using 2.14.15 , it just happen again now right before opening a rift
Demonbuddy v1.1.2892.445
[SIZE=+1]Changelog
[/SIZE]Code:
Api Changes:
--------------
- PlayerData.Bloodshard count now reports the correct value. (DB-117)
Bug fixes:
--------------
* Core
- Clicking the settings button on the main ui now opens the bot settings without any hacks from Quest Tools. (DB-128)
- No longer creates games with Quick Join enabled unless you have it enabled in the settings. (DB-118)
- Crusader: fixed Laws of Valor causing disconnects (DB-127)
- No longer get's stuck trying to stash item when the last tab on the second page is full. (DB-129)
sincerely thanks to you broHmm, I think I found the cause. Now let's see if there's a solution for it.
thanks to you:)I removed the HP% check from the Laws of Justice block and that has prevent my disconnects so far. This is NOT a long term solution, just a quick edit to keep from disconnecting.
CrusaderCombat.cs:306
// LawsOfJustice2
//if (CanCast(SNOPower.X1_Crusader_LawsOfJustice2) && !CacheData.Buffs.HasBuff(SNOPower.X1_Crusader_LawsOfJustice2, 6)
// && (TargetUtil.EliteOrTrashInRange(16f) || Player.CurrentHealthPct <= CrusaderSettings.LawsOfJusticeHpPct))
if (CanCast(SNOPower.X1_Crusader_LawsOfJustice2) && TargetUtil.EliteOrTrashInRange(16f)
&& !CacheData.Buffs.HasBuff(SNOPower.X1_Crusader_LawsOfJustice2, 6))