summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-15 10:41:58 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-15 11:01:57 -0600
commite5b09096c90a9c99a7dba3d1597560a0a6bee8ed (patch)
tree8da238680884ff80aa8061e5bb838d08a88024b7 /crawl-ref/source/spl-cast.cc
parent9886581926e161201c8072b5fec05bc9840157b1 (diff)
downloadcrawl-ref-e5b09096c90a9c99a7dba3d1597560a0a6bee8ed.tar.gz
crawl-ref-e5b09096c90a9c99a7dba3d1597560a0a6bee8ed.zip
Rename cast_brand_ammo() to brand_ammo(), for consistency.
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 74b84bf7f1..728e7c5d9d 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1917,35 +1917,35 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
break;
case SPELL_POISON_AMMUNITION:
- cast_brand_ammo(SPMSL_POISONED);
+ brand_ammo(SPMSL_POISONED);
break;
case SPELL_FLAME_AMMUNITION:
- cast_brand_ammo(SPMSL_FLAME);
+ brand_ammo(SPMSL_FLAME);
break;
case SPELL_FROST_AMMUNITION:
- cast_brand_ammo(SPMSL_FROST);
+ brand_ammo(SPMSL_FROST);
break;
case SPELL_WARP_AMMUNITION:
- cast_brand_ammo(SPMSL_DISPERSAL);
+ brand_ammo(SPMSL_DISPERSAL);
break;
case SPELL_SHOCKING_AMMUNITION:
- cast_brand_ammo(SPMSL_ELECTRIC);
+ brand_ammo(SPMSL_ELECTRIC);
break;
case SPELL_EXPLODING_AMMUNITION:
- cast_brand_ammo(SPMSL_EXPLODING);
+ brand_ammo(SPMSL_EXPLODING);
break;
case SPELL_REAPING_AMMUNITION:
- cast_brand_ammo(SPMSL_REAPING);
+ brand_ammo(SPMSL_REAPING);
break;
case SPELL_RETURNING_AMMUNITION:
- cast_brand_ammo(SPMSL_RETURNING);
+ brand_ammo(SPMSL_RETURNING);
break;
// Transformations.