From e436e9c854eabdee326376f7a19422a730d8313f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Grali=C5=84ski?= Date: Thu, 9 Jan 2020 11:00:11 +0100 Subject: [PATCH] C tasks not for Erasmus students --- count-points.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }