This commit is contained in:
nullifiedcat 2017-03-21 23:14:27 +03:00
parent e2b53b65f3
commit 71fdd901c1

View File

@ -71,7 +71,7 @@ int HealingPriority(int idx) {
break;
case relation::BOT:
priority += 100 * (1 - healthp);
priority += 15 * (1 - overhealp);
priority += 20 * (1 - overhealp);
break;
default:
priority += 50 * (1 - healthp);
@ -79,7 +79,7 @@ int HealingPriority(int idx) {
}
if (ipc::peer) {
if (hacks::shared::followbot::bot && hacks::shared::followbot::following_idx == idx) {
priority += 75;
priority += 70;
}
}
return priority;