summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-wpnench.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2011-07-31 23:55:10 +0100
committerChris Campbell <chriscampbell89@gmail.com>2011-08-01 04:08:16 +0100
commitef89fef3656cd75eaadc3d51e673e79f97e2c37d (patch)
treee92f179006e1aaa60b5c17e011d68dd560147da1 /crawl-ref/source/spl-wpnench.cc
parent098666c47ae0b79db485b56bc3378dd70f784b75 (diff)
downloadcrawl-ref-ef89fef3656cd75eaadc3d51e673e79f97e2c37d.tar.gz
crawl-ref-ef89fef3656cd75eaadc3d51e673e79f97e2c37d.zip
Remove Maxwell's Silver Hammer
Like Tukima's Vorpal Blade which has long been gone, it has little to no practical use.
Diffstat (limited to 'crawl-ref/source/spl-wpnench.cc')
-rw-r--r--crawl-ref/source/spl-wpnench.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/crawl-ref/source/spl-wpnench.cc b/crawl-ref/source/spl-wpnench.cc
index ac874e4a82..0a06e1d362 100644
--- a/crawl-ref/source/spl-wpnench.cc
+++ b/crawl-ref/source/spl-wpnench.cc
@@ -99,14 +99,6 @@ spret_type brand_weapon(brand_type which_brand, int power, bool fail)
return SPRET_ABORT;
}
- // Some brandings are restricted to certain damage types.
- if (which_brand == SPWPN_DUMMY_CRUSHING
- && !(get_damage_type(weapon) & DAM_BLUDGEON))
- {
- mpr("You cannot enchant this weapon with this spell.");
- return SPRET_ABORT;
- }
-
// Can only brand launchers with sensible brands.
if (is_range_weapon(weapon))
{
@@ -227,12 +219,6 @@ spret_type brand_weapon(brand_type which_brand, int power, bool fail)
msg += " glistens with random hues.";
break;
- case SPWPN_DUMMY_CRUSHING: // Maxwell's Silver Hammer.
- which_brand = SPWPN_VORPAL;
- msg += " glows silver and feels heavier.";
- duration_affected = 7;
- break;
-
case SPWPN_RETURNING:
msg += " wiggles in your hand.";
duration_affected = 5;