Tweak rage calculation

This commit is contained in:
郑佩茹
2022-09-22 16:07:12 -06:00
parent 08c70e9ffe
commit fd8638c742

View File

@@ -71,7 +71,7 @@ uint8 RageValue::Calculate()
if (!target) if (!target)
return 0; return 0;
return (static_cast<float> (target->GetPower(POWER_RAGE))); return (target->GetPower(POWER_RAGE) / 10.0f);
} }
Unit* EnergyValue::GetTarget() Unit* EnergyValue::GetTarget()