summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-death.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-06-05 06:34:48 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-06-07 19:27:31 +0100
commit59d57ab6f0e585257966462fdb57ed290a41769b (patch)
tree99388ed4dd3cc36608511cf9801bd6465870c273 /crawl-ref/source/mon-death.cc
parent404cd436811b4a173e0509b9d0cf838cd09fb9eb (diff)
downloadcrawl-ref-59d57ab6f0e585257966462fdb57ed290a41769b.tar.gz
crawl-ref-59d57ab6f0e585257966462fdb57ed290a41769b.zip
Remove the amulet of rage's (very low) chance to extend berserk duration
As it existed it wasn't noticeable at all, and making it more noticeable would be treading on Trog's more significant extension (and Bloodlust's unrand effect).
Diffstat (limited to 'crawl-ref/source/mon-death.cc')
-rw-r--r--crawl-ref/source/mon-death.cc14
1 files changed, 2 insertions, 12 deletions
diff --git a/crawl-ref/source/mon-death.cc b/crawl-ref/source/mon-death.cc
index a08f80a20d..2f7ede0221 100644
--- a/crawl-ref/source/mon-death.cc
+++ b/crawl-ref/source/mon-death.cc
@@ -1650,21 +1650,11 @@ int monster_die(monster* mons, killer_type killer,
mprf(MSGCH_GOD, GOD_TROG,
"You feel the power of Trog in you as your rage grows.");
}
- else if (player_equip_unrand(UNRAND_BLOODLUST))
- {
- if (coinflip())
- {
- const int bonus = (2 + random2(4)) / 2;
- you.increase_duration(DUR_BERSERK, bonus);
- mpr("The necklace of Bloodlust glows a violent red.");
- }
- }
- else if (you.wearing(EQ_AMULET, AMU_RAGE)
- && one_chance_in(30))
+ else if (player_equip_unrand(UNRAND_BLOODLUST) && coinflip())
{
const int bonus = (2 + random2(4)) / 2;
you.increase_duration(DUR_BERSERK, bonus);
- mpr("Your amulet glows a violent red.");
+ mpr("The necklace of Bloodlust glows a violent red.");
}
}