summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/describe.cc4
-rw-r--r--crawl-ref/source/fight.cc3
2 files changed, 2 insertions, 5 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index e853a1cd0c..7484b9c8a3 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -781,8 +781,8 @@ static std::string describe_weapon( const item_def &item, bool verbose)
break;
case SPWPN_HOLY_WRATH:
description += "It has been blessed by the Shining One "
- "to harm undead and cause great damage to "
- "the unholy creatures of Hell or Pandemonium. ";
+ "to cause great damage to the undead and the unholy "
+ "creatures of Hell or Pandemonium. ";
break;
case SPWPN_ELECTROCUTION:
description += "Occasionally upon striking a foe "
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 29b87eea6f..ebec677f8f 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -1867,9 +1867,6 @@ bool melee_attack::apply_damage_brand()
switch (defender->holiness())
{
case MH_UNDEAD:
- special_damage = 1 + random2(damage_done);
- break;
-
case MH_DEMONIC:
special_damage = 1 + (random2(damage_done * 15) / 10);
break;