summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.cc
diff options
context:
space:
mode:
authorpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-17 04:26:10 +0000
committerpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-17 04:26:10 +0000
commit13f241a701731edada395fc273b1a4eba30e9d57 (patch)
tree9a1179de2ac038decf03589896f4097d588c2f34 /crawl-ref/source/travel.cc
parent89ed548fe59c67cdeee3d0ae641b327a1acf8310 (diff)
downloadcrawl-ref-13f241a701731edada395fc273b1a4eba30e9d57.tar.gz
crawl-ref-13f241a701731edada395fc273b1a4eba30e9d57.zip
Some yesno standardisation. Some yesno prompts had a trailing space, some didn't.
Now all of them do (but it's applied in yesno(), so it's easy to get rid of). Also, "anyways" -> "anyway". git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3682 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/travel.cc')
-rw-r--r--crawl-ref/source/travel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index 4aa8ae8d32..d308d9cdf3 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -1043,7 +1043,7 @@ void explore_pickup_event(int did_pickup, int tried_pickup)
{
const std::string prompt =
make_stringf(
- "Could not pick up %s here, shall I ignore %s? ",
+ "Could not pick up %s here; shall I ignore %s?",
tried_pickup == 1? "an item" : "some items",
tried_pickup == 1? "it" : "them");
// Make Escape => 'n' and stop run.
@@ -2175,7 +2175,7 @@ static int prompt_travel_branch(int prompt_flags)
if (msg != "")
{
- msg += "Go there anyways?";
+ msg += "Go there anyway?";
if(!yesno(msg.c_str()))
return (ID_CANCEL);
}