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 88794020cf..5b47066e01 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -2365,7 +2365,7 @@ bool throw_it(bolt &pbolt, int throw_2, bool teleport, int acc_bonus,
if (is_blood_potion(item) && thrown.quantity > 1)
{
- // Initialize thrown potion with oldest potion in stack.
+ // Initialise thrown potion with oldest potion in stack.
long val = remove_oldest_blood_potion(thrown);
val -= you.num_turns;
item.props.clear();
@@ -2870,7 +2870,7 @@ bool throw_it(bolt &pbolt, int throw_2, bool teleport, int acc_bonus,
}
}
- // FINALIZE tohit and damage
+ // FINALISE tohit and damage
if (exHitBonus >= 0)
pbolt.hit = baseHit + random2avg(exHitBonus + 1, 2);
else