diff --git a/count-points.pl b/count-points.pl index c53bfd3..f9b9a62 100755 --- a/count-points.pl +++ b/count-points.pl @@ -165,7 +165,7 @@ sub check_if_the_right_task { return 0 if $task_id =~ m{^TaskE} and not is_estudent($student_id); - return 0 if $task_id =~ m{^TaskA} and is_estudent($student_id); + return 0 if $task_id =~ m{^Task[AC]} and is_estudent($student_id); return 1; }