(kaboom): Print at least one set of "O O "s.

This commit is contained in:
Ron Koenderink 2007-03-03 15:09:43 +00:00
parent e19229ad98
commit 2437a7a551

View file

@ -324,8 +324,8 @@ detonate(struct nukstr *np, coord x, coord y, int airburst)
static void static void
kaboom(int x, int y, int rad, natid cn) kaboom(int x, int y, int rad, natid cn)
{ {
mpr(cn, "\n\nK A B "); mpr(cn, "\n\nK A B O O ");
while (rad-- > 0) while (rad-- > 1)
mpr(cn, "O O "); mpr(cn, "O O ");
mpr(cn, "M ! in %s\n\n", xyas(x, y, cn)); mpr(cn, "M ! in %s\n\n", xyas(x, y, cn));
} }