|
Britbot
|
returns the average of the maximum fight power in the last outOfDateNumber of turns
Definition at line 506 of file EnemyGroup.cs. {
//check if LastMaxFightPower isnt empty
if (this._lastMaxFightPower.Count == 0)
return 0;
//otherwise
return this._lastMaxFightPower.Average();
}
|
1.7.6.1