Avoid noise diffs around logging of seed command.

This commit is contained in:
Eric S. Raymond 2023-03-21 15:05:31 -04:00
parent bed5fb747b
commit ffa9332ee3

2
main.c
View file

@ -147,7 +147,7 @@ static bool fallback_handler(signed char *buf)
long sv;
if (sscanf(buf, "seed %ld", &sv) == 1) {
set_seed(sv);
printf("Seed set to %ld\n", sv);
printf("\nSeed set to %ld\n", sv);
// autogenerated, so don't charge user time for it.
--TURNS;
// here we reconfigure any global game state that uses random numbers