Misc Fixes

This commit is contained in:
hondacrx
2021-08-09 11:39:46 -04:00
parent fbf1a05485
commit 140abe98d1
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -503,7 +503,7 @@ namespace Scripts.Spells.Priest
if (rhs == explTarget) // anything > explTarget: always false
return -1;
return MakeSortTuple(lhs).Equals(rhs) ? 1 : -1;
return MakeSortTuple(lhs).Equals(MakeSortTuple(rhs)) ? 1 : -1;
});
targets.Resize(maxTargets);