forked from github/server
Jamfile muss neues item enthalten
#ifdef HEROES, nicht HEROES == 1
This commit is contained in:
parent
080a9a8bba
commit
32a85be05f
|
@ -1146,7 +1146,7 @@ report_computer(FILE * F, faction * f, const faction_list * addresses,
|
||||||
fprintf(F, "%d;Max. Immigranten\n", count_maxmigrants(f));
|
fprintf(F, "%d;Max. Immigranten\n", count_maxmigrants(f));
|
||||||
}
|
}
|
||||||
|
|
||||||
#if HEROES == 1
|
#ifdef HEROES
|
||||||
i = countheroes(f);
|
i = countheroes(f);
|
||||||
if (i>0) fprintf(F, "%d;heroes\n", i);
|
if (i>0) fprintf(F, "%d;heroes\n", i);
|
||||||
i = maxheroes(f);
|
i = maxheroes(f);
|
||||||
|
|
|
@ -2054,7 +2054,7 @@ report(FILE *F, faction * f, const faction_list * addresses,
|
||||||
count_migrants(f), maxmig);
|
count_migrants(f), maxmig);
|
||||||
centre(F, buf, true);
|
centre(F, buf, true);
|
||||||
}
|
}
|
||||||
#if HEROES == 1
|
#ifdef HEROES
|
||||||
{
|
{
|
||||||
int maxh = maxheroes(f);
|
int maxh = maxheroes(f);
|
||||||
if (maxh) {
|
if (maxh) {
|
||||||
|
|
|
@ -18,6 +18,7 @@ SOURCES =
|
||||||
weapons.c
|
weapons.c
|
||||||
xerewards.c
|
xerewards.c
|
||||||
artrewards.c
|
artrewards.c
|
||||||
|
speedsail.c
|
||||||
;
|
;
|
||||||
|
|
||||||
Library items : $(SOURCES) ;
|
Library items : $(SOURCES) ;
|
||||||
|
|
Loading…
Reference in New Issue