summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-wpnench.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-09-21 05:17:27 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-09-22 00:30:07 +0200
commitfabd5e008e9fe9e8d56a265cf5caff2cbca2c051 (patch)
treeb0cdcd54fd1e9c27f630c264888098955343a45c /crawl-ref/source/spl-wpnench.cc
parent6cbcb2d290a7aebb2f41ac0a0114eac7dccb352b (diff)
downloadcrawl-ref-fabd5e008e9fe9e8d56a265cf5caff2cbca2c051.tar.gz
crawl-ref-fabd5e008e9fe9e8d56a265cf5caff2cbca2c051.zip
Remove the returning brand for weapons.
Diffstat (limited to 'crawl-ref/source/spl-wpnench.cc')
-rw-r--r--crawl-ref/source/spl-wpnench.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/crawl-ref/source/spl-wpnench.cc b/crawl-ref/source/spl-wpnench.cc
index 16a48b3ea9..1199aedb1e 100644
--- a/crawl-ref/source/spl-wpnench.cc
+++ b/crawl-ref/source/spl-wpnench.cc
@@ -30,7 +30,6 @@ static special_missile_type _convert_to_missile(brand_type which_brand)
case SPWPN_FREEZING: return SPMSL_FROST;
case SPWPN_VENOM: return SPMSL_POISONED;
case SPWPN_CHAOS: return SPMSL_CHAOS;
- case SPWPN_RETURNING: return SPMSL_RETURNING;
default: return SPMSL_NORMAL; // there are no equivalents for the rest
// of the ammo brands.
}
@@ -58,7 +57,6 @@ static bool _ok_for_launchers(brand_type which_brand)
case SPWPN_FLAME:
case SPWPN_VENOM:
//case SPWPN_PAIN: -- no pain missile type yet
- case SPWPN_RETURNING:
case SPWPN_CHAOS:
case SPWPN_VORPAL:
return true;
@@ -214,11 +212,6 @@ spret_type brand_weapon(brand_type which_brand, int power, bool fail)
msg += " glistens with random hues.";
break;
- case SPWPN_RETURNING:
- msg += " wiggles in your " + you.hand_name(false) + ".";
- duration_affected = 5;
- break;
-
default:
break;
}