diff --git a/src/common/gamecode/creation.c b/src/common/gamecode/creation.c index 0cdc09ab0..80e1e9cf0 100644 --- a/src/common/gamecode/creation.c +++ b/src/common/gamecode/creation.c @@ -74,35 +74,6 @@ createmonsters(void) 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 factionsymbols(region * r) { diff --git a/src/common/gamecode/creation.h b/src/common/gamecode/creation.h index 41749e69b..447ec88e7 100644 --- a/src/common/gamecode/creation.h +++ b/src/common/gamecode/creation.h @@ -30,7 +30,6 @@ enum { void createmonsters(void); void addunit(void); void makeblock(int x1, int y1, char chaos); -void listnames(void); void writemap(FILE * F, int mode); void regionspells(void);