summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/dat/descript/gods.txt5
-rw-r--r--crawl-ref/source/religion.cc2
2 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/dat/descript/gods.txt b/crawl-ref/source/dat/descript/gods.txt
index ee5fb0ca1b..c831ccfa8f 100644
--- a/crawl-ref/source/dat/descript/gods.txt
+++ b/crawl-ref/source/dat/descript/gods.txt
@@ -88,9 +88,8 @@ Trog
Trog is an ancient God of anger and violence. Followers are expected to
kill in Trog's name and sacrifice the dead, and in return gain power in
-battle and occasional rewards. Trog hates wizards, and loves to see
-their magical books burn. Followers are forbidden the use of spell
-magic.
+battle and occasional rewards. Trog hates all wizards, and loves to see
+their spellbooks burn. Followers are forbidden the use of spell magic.
%%%%
Nemelex Xobeh
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 0246944da6..2811311f70 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -484,7 +484,7 @@ std::string print_god_likes(god_type which_god, bool verbose)
case GOD_TROG:
snprintf(info, INFO_SIZE, "destroy spellbooks (especially ones you've"
"never read)%s",
- verbose ? "via the <w>a</w> command" : "");
+ verbose ? " via the <w>a</w> command" : "");
likes.push_back(info);
break;