assault attack board lboard paradrop spy: Fix missing newline

The intelligence reports on land units lack a newline.  Broken in
commit c8e5b4f, v4.3.33.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2016-07-24 09:51:08 +02:00
parent 4b3b133183
commit 223ff1d75f

View file

@ -369,7 +369,7 @@ intelligence_report(natid destination, struct lndstr *lp, int spy,
buf2[0] = buf3[0] = 0;
}
if (destination == player->cnum)
pr("%s%s%s", buf1, buf2, buf3);
pr("%s%s%s\n", buf1, buf2, buf3);
else
wu(0, destination, "%s%s%s\n", buf1, buf2, buf3);
}