From fc0e58bf8221b52bdbbd06a637d1adecb7762417 Mon Sep 17 00:00:00 2001 From: Christian Schlittchen Date: Sun, 5 Feb 2006 18:21:11 +0000 Subject: [PATCH] Anzeige des erforderlichen Bautalents bei der WdW-Pyramide --- src/common/gamecode/report.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/gamecode/report.c b/src/common/gamecode/report.c index b094cc22a..52d6968c0 100644 --- a/src/common/gamecode/report.c +++ b/src/common/gamecode/report.c @@ -1688,6 +1688,10 @@ report_building(FILE *F, const region * r, const building * b, const faction * f } scat("."); + + scat(" Erforderlicher Talentwert: "); + icat(b->type->construction->minskill); + scat("."); } }