summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 882845c031..0dd08b3ef8 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -4290,7 +4290,7 @@ static bool _vorpalise_weapon()
case SPWPN_FLAMING:
mprf("%s is engulfed in an explosion of flames!", itname.c_str());
- immolation(IMMOLATION_SPELL);
+ immolation(10, IMMOLATION_SPELL, you.pos(), true, &you);
break;
case SPWPN_FREEZING:
@@ -4908,7 +4908,7 @@ void read_scroll(int slot)
set_ident_type(scroll, ID_KNOWN_TYPE);
dec_inv_item_quantity(item_slot, 1);
- immolation(IMMOLATION_SCROLL, alreadyknown);
+ immolation(10, IMMOLATION_SCROLL, you.pos(), alreadyknown, &you);
break;
}