pline missing punctuation bits
This commit is contained in:
@@ -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"),
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user