mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-19 10:29:30 +01:00
Oops, add missing equation to moving average formula
This commit is contained in:
parent
5b4fccb3f4
commit
7d3bf58d86
@ -190,6 +190,7 @@ foreach my $answer (@valid_answers) {
|
||||
$qdata->{last_correct_nick} = $nick;
|
||||
|
||||
if (gettimeofday - $qdata->{last_touched} < 60 * 5) {
|
||||
$qdata->{average_answer_time} *= $qdata->{correct} - 1;
|
||||
$qdata->{average_answer_time} += $elapsed;
|
||||
$qdata->{average_answer_time} /= $qdata->{correct};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user