summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-21 20:22:20 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-21 20:22:20 +0000
commita9e1c69a175d42318387459cfd686dedd8480833 (patch)
treeea62cdfea39a15f44ea214b556c7ca314de666c8 /crawl-ref
parent7ef6b20f07d448c2f7e89f7749d9a6d8f3cd5a0e (diff)
downloadcrawl-ref-a9e1c69a175d42318387459cfd686dedd8480833.tar.gz
crawl-ref-a9e1c69a175d42318387459cfd686dedd8480833.zip
Adjust the numbers for TSO's extended stay blessing again.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4450 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/religion.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 9285e892bc..c7736be279 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -910,13 +910,13 @@ static bool _tso_blessing_extend_stay(monsters *mon)
mon_enchant abj = mon->get_ench(ENCH_ABJ);
// Extend the time an abjurable monster has before disappearing.
- abj.duration += 100 + random2(300);
+ abj.duration += 300 + random2(300);
// If the extended stay is long enough, make it permanent. Note
// that we have to delete the enchantment without removing the
// enchantment effect, in order to keep the monster from
// disappearing.
- if (abj.duration > 3499)
+ if (abj.duration > 2999)
mon->del_ench(ENCH_ABJ, true, false);
else
mon->update_ench(abj);