pline missing punctuation bits

This commit is contained in:
cohrs
2002-02-13 06:52:46 +00:00
parent 5798dcc3e7
commit 4497d8e4e3
3 changed files with 3 additions and 3 deletions

View File

@@ -1817,7 +1817,7 @@ struct obj *otmp;
if (otmp->cursed && if (otmp->cursed &&
obj->oclass == GEM_CLASS && !is_greystone(obj) && !rn2(5)) { obj->oclass == GEM_CLASS && !is_greystone(obj) && !rn2(5)) {
pline( pline(
(Blind ? "You feel something shatter" : (Blind ? "You feel something shatter." :
(Hallucination ? "Oh, wow, look at the pretty shards." : (Hallucination ? "Oh, wow, look at the pretty shards." :
"A sharp crack shatters %s %s.")), "A sharp crack shatters %s %s.")),
(obj->quan == 1 ? "the" : "a"), (obj->quan == 1 ? "the" : "a"),

View File

@@ -770,7 +770,7 @@ struct obj *obj;
int oops; int oops;
if (Blind) { if (Blind) {
pline("Too bad you can't see %s", the(xname(obj))); pline("Too bad you can't see %s.", the(xname(obj)));
return; return;
} }
oops = (rnd(20) > ACURR(A_INT) || obj->cursed); oops = (rnd(20) > ACURR(A_INT) || obj->cursed);

View File

@@ -155,7 +155,7 @@ const char *goal;
} /* column */ } /* column */
} /* row */ } /* row */
} /* pass */ } /* pass */
pline("Can't find dungeon feature '%c'", c); pline("Can't find dungeon feature '%c'.", c);
msg_given = TRUE; msg_given = TRUE;
goto nxtc; goto nxtc;
} else { } else {