From 6ce601828b53df34c51103f7d43907f7f5817aff Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Tue, 5 Oct 2010 22:10:44 -0700 Subject: [PATCH] this is probably correct with respect to http://bugs.eressea.de/view.php?id=1808 --- src/gamecode/study.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamecode/study.c b/src/gamecode/study.c index 32911c286..36fda0217 100644 --- a/src/gamecode/study.c +++ b/src/gamecode/study.c @@ -197,7 +197,7 @@ teach_unit(unit * teacher, unit * student, int nteaching, skill_t sk, return 0; } - n = 30; + n = 30 * student->number; a = a_find(student->attribs, &at_learning); if (a!=NULL) { teach = (teaching_info*)a->data.v;