summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/it_use3.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-08 05:21:10 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-08 05:21:10 +0000
commit5c5f41caea2c309b8ff1cb72dab9fa6ec857a2d8 (patch)
treee0c23158ef8453bd9871c3de9ced749b5b02db42 /crawl-ref/source/it_use3.cc
parent669612952bb06d9144b9601628e2357202d2d776 (diff)
downloadcrawl-ref-5c5f41caea2c309b8ff1cb72dab9fa6ec857a2d8.tar.gz
crawl-ref-5c5f41caea2c309b8ff1cb72dab9fa6ec857a2d8.zip
Clean up "Summon Elemental".
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5584 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/it_use3.cc')
-rw-r--r--crawl-ref/source/it_use3.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/it_use3.cc b/crawl-ref/source/it_use3.cc
index 792c4a3d2e..05c8c8ce55 100644
--- a/crawl-ref/source/it_use3.cc
+++ b/crawl-ref/source/it_use3.cc
@@ -620,7 +620,7 @@ bool evoke_wielded()
canned_msg(MSG_NOTHING_HAPPENS);
else
{
- summon_elemental(100, MONS_AIR_ELEMENTAL, 4);
+ summon_elemental(100, false, MONS_AIR_ELEMENTAL, 4);
pract = (one_chance_in(5) ? 1 : 0);
}
break;
@@ -630,7 +630,7 @@ bool evoke_wielded()
canned_msg(MSG_NOTHING_HAPPENS);
else
{
- summon_elemental(100, MONS_FIRE_ELEMENTAL, 4);
+ summon_elemental(100, false, MONS_FIRE_ELEMENTAL, 4);
pract = (one_chance_in(5) ? 1 : 0);
}
break;
@@ -640,7 +640,7 @@ bool evoke_wielded()
canned_msg(MSG_NOTHING_HAPPENS);
else
{
- summon_elemental(100, MONS_EARTH_ELEMENTAL, 4);
+ summon_elemental(100, false, MONS_EARTH_ELEMENTAL, 4);
pract = (one_chance_in(5) ? 1 : 0);
}
break;