mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-13 17:09:08 +00:00
Estimated dps calculation
This commit is contained in:
@@ -130,10 +130,10 @@ bool TellAuraAction::Execute(Event event)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool TellExpectedDpsAction::Execute(Event event)
|
||||
bool TellEstimatedDpsAction::Execute(Event event)
|
||||
{
|
||||
float dps = AI_VALUE(float, "expected group dps");
|
||||
botAI->TellMaster("Expected Group DPS: " + std::to_string(dps));
|
||||
float dps = AI_VALUE(float, "estimated group dps");
|
||||
botAI->TellMaster("Estimated Group DPS: " + std::to_string(dps));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user