summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/xom.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-24 02:31:55 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-24 02:31:55 +0000
commit8f712c76e5d505d76f27ad7e906f4c20675efac3 (patch)
treedbe3d7c8769e10d51303b7e678c332a043937780 /crawl-ref/source/xom.cc
parent9b25d463b3d03f5d91ba672eea009e07331635d9 (diff)
downloadcrawl-ref-8f712c76e5d505d76f27ad7e906f4c20675efac3.tar.gz
crawl-ref-8f712c76e5d505d76f27ad7e906f4c20675efac3.zip
Simplify.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6095 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/xom.cc')
-rw-r--r--crawl-ref/source/xom.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc
index 841acda19b..f799597da4 100644
--- a/crawl-ref/source/xom.cc
+++ b/crawl-ref/source/xom.cc
@@ -914,15 +914,13 @@ void xom_acts(bool niceness, int sever)
if (crawl_state.is_god_retribution())
{
niceness = false;
- mprf(MSGCH_GOD, which_god,
- "%s asks Xom for help in punishing you, and Xom happily "
- "agrees.", god_name(which_god).c_str());
+ simple_god_message(" asks Xom for help in punishing you, and "
+ "Xom happily agrees.", which_god);
}
else
{
niceness = true;
- mprf(MSGCH_GOD, which_god, "%s calls in a favour from Xom.",
- god_name(which_god).c_str());
+ simple_god_message(" calls in a favour from Xom.", which_god);
}
}