summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc40
1 files changed, 0 insertions, 40 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 10c4e7cea9..93414f848f 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1954,46 +1954,6 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
canned_msg(MSG_SPELL_FIZZLES);
break;
- case SPELL_POISON_AMMUNITION:
- if (!brand_ammo(SPMSL_POISONED))
- canned_msg(MSG_SPELL_FIZZLES);
- break;
-
- case SPELL_FLAME_AMMUNITION:
- if (!brand_ammo(SPMSL_FLAME))
- canned_msg(MSG_SPELL_FIZZLES);
- break;
-
- case SPELL_FROST_AMMUNITION:
- if (!brand_ammo(SPMSL_FROST))
- canned_msg(MSG_SPELL_FIZZLES);
- break;
-
- case SPELL_WARP_AMMUNITION:
- if (!brand_ammo(SPMSL_DISPERSAL))
- canned_msg(MSG_SPELL_FIZZLES);
- break;
-
- case SPELL_SHOCKING_AMMUNITION:
- if (!brand_ammo(SPMSL_ELECTRIC))
- canned_msg(MSG_SPELL_FIZZLES);
- break;
-
- case SPELL_EXPLODING_AMMUNITION:
- if (!brand_ammo(SPMSL_EXPLODING))
- canned_msg(MSG_SPELL_FIZZLES);
- break;
-
- case SPELL_REAPING_AMMUNITION:
- if (!brand_ammo(SPMSL_REAPING))
- canned_msg(MSG_SPELL_FIZZLES);
- break;
-
- case SPELL_RETURNING_AMMUNITION:
- if (!brand_ammo(SPMSL_RETURNING))
- canned_msg(MSG_SPELL_FIZZLES);
- break;
-
// Transformations.
case SPELL_BLADE_HANDS:
if (!transform(powc, TRAN_BLADE_HANDS))