summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-12 17:35:45 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-12 17:35:45 +0000
commit2ad1fa9b0f50c91442995b715d0261138be1f167 (patch)
treea89abd6f1425af85e26d2a8f00c67fbd44360cf7 /crawl-ref/source/newgame.cc
parent84f487691c1387775ce6195c0bd89e327a19828c (diff)
downloadcrawl-ref-2ad1fa9b0f50c91442995b715d0261138be1f167.tar.gz
crawl-ref-2ad1fa9b0f50c91442995b715d0261138be1f167.zip
Various documentation tweaks. Among others, replace all references to
"class" with "job", and "race" with "species" because that comes much closer to what they actually are. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9425 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index cc6eb1d7ec..b65f983f33 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -1188,7 +1188,7 @@ game_start:
_get_class(letter_to_index(Options.cls))))
{
end(1, false,
- "Incompatible race and class specified in options file.");
+ "Incompatible species and job specified in options file.");
}
// Repeat until valid race/class combination found.
while (choose_race() && !choose_class());
@@ -3075,8 +3075,8 @@ static void _show_name_prompt(int where, bool blankOK,
else
{
cprintf(EOL
- "Press <Enter> to answer this after race and "
- "class are chosen." EOL);
+ "Press <Enter> to answer this after species and "
+ "job are chosen." EOL);
}
}
@@ -3847,14 +3847,14 @@ spec_query:
cprintf(EOL EOL);
if (you.char_class == JOB_UNKNOWN)
{
- cprintf("Space - Choose class first; * - Random species" EOL
+ cprintf("Space - Choose job first; * - Random species" EOL
"! - Random character; # - Good random character; X - Quit"
EOL);
}
else
{
cprintf("* - Random; + - Good random; "
- "Bksp - Back to class selection; X - Quit"
+ "Bksp - Back to job selection; X - Quit"
EOL);
}
@@ -4097,8 +4097,8 @@ job_query:
if (you.species == SP_UNKNOWN)
{
cprintf(EOL
- "Space - Choose species first; * - Random class; "
- "+ - Good random class" EOL
+ "Space - Choose species first; * - Random job; "
+ "+ - Good random job" EOL
"! - Random character; # - Good random character; X - Quit"
EOL);
}