arogue7, xrogue: put newlines at the end of startup messages.

This commit is contained in:
John "Elwin" Edwards 2015-05-20 15:15:29 -04:00
parent faa24df096
commit 053a248658
2 changed files with 4 additions and 4 deletions

View file

@ -175,9 +175,9 @@ char **envp;
atoi(getenv("SEED")) :
lowtime + getpid());
if (wizard)
printf("Hello %s, welcome to dungeon #%d", whoami, dnum);
printf("Hello %s, welcome to dungeon #%d\n", whoami, dnum);
else
printf("Hello %s, just a moment while I dig the dungeon...", whoami);
printf("Hello %s, just a moment while I dig the dungeon...\n", whoami);
fflush(stdout);
seed = dnum;
md_srand(seed);

View file

@ -166,9 +166,9 @@ char **envp;
seed = (int) time(&now) + getpid();
}
if (wizard)
printf("Hello %s, welcome to dungeon #%d", whoami, seed);
printf("Hello %s, welcome to dungeon #%d\n", whoami, seed);
else
printf("Hello %s, just a moment while I dig the dungeon...", whoami);
printf("Hello %s, just a moment while I dig the dungeon...\n", whoami);
fflush(stdout);
md_srand(seed);