forked from github/server
listnames, total nutzlose funktion
This commit is contained in:
parent
00fab33aaf
commit
f269ebbf75
|
@ -74,35 +74,6 @@ createmonsters(void)
|
||||||
fhash(f);
|
fhash(f);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------------------------------------------- */
|
|
||||||
|
|
||||||
void
|
|
||||||
listnames(void)
|
|
||||||
{
|
|
||||||
region *r;
|
|
||||||
size_t i;
|
|
||||||
|
|
||||||
puts("Die Liste der benannten Regionen ist:");
|
|
||||||
|
|
||||||
i = 0;
|
|
||||||
for (r = regions; r; r = r->next)
|
|
||||||
if (rterrain(r) != T_OCEAN) {
|
|
||||||
printf("%s,", rname(r, NULL));
|
|
||||||
i += strlen(rname(r, NULL)) + 1;
|
|
||||||
|
|
||||||
while (i % 15) {
|
|
||||||
printf(" ");
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (i > 60) {
|
|
||||||
printf("\n");
|
|
||||||
i = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
printf("\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
static char
|
static char
|
||||||
factionsymbols(region * r)
|
factionsymbols(region * r)
|
||||||
{
|
{
|
||||||
|
|
|
@ -30,7 +30,6 @@ enum {
|
||||||
void createmonsters(void);
|
void createmonsters(void);
|
||||||
void addunit(void);
|
void addunit(void);
|
||||||
void makeblock(int x1, int y1, char chaos);
|
void makeblock(int x1, int y1, char chaos);
|
||||||
void listnames(void);
|
|
||||||
void writemap(FILE * F, int mode);
|
void writemap(FILE * F, int mode);
|
||||||
|
|
||||||
void regionspells(void);
|
void regionspells(void);
|
||||||
|
|
Loading…
Reference in New Issue