summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/xom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/xom.cc')
-rw-r--r--crawl-ref/source/xom.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc
index ec81db920a..eadf039a69 100644
--- a/crawl-ref/source/xom.cc
+++ b/crawl-ref/source/xom.cc
@@ -106,7 +106,9 @@ const char *describe_xom_favour()
bool xom_is_nice()
{
- return (you.gift_timeout > 0 && you.piety > 100);
+ // If you.gift_timeout was == 0, then Xom was BORED.
+ // He HATES that.
+ return (you.gift_timeout > 0 && you.piety > 100) || coinflip();
}
void xom_is_stimulated(int maxinterestingness)
@@ -794,7 +796,7 @@ void xom_acts(bool niceness, int sever)
if (sever < 1)
sever = 1;
- if (niceness)
+ if (niceness && !one_chance_in(5))
{
// Good stuff.
while (!xom_is_good(sever))