From 2b1fcc1c22dc1cd5192feb20fd46cac06047b728 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Fri, 20 Nov 2009 17:34:14 -0600 Subject: Fix typo. --- crawl-ref/source/describe.cc | 2 +- crawl-ref/source/item_use.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source') diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index 550eee4a9d..5710949b8d 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -1026,7 +1026,7 @@ static std::string _describe_ammo(const item_def &item) description += "It turns into a bolt of flame."; break; case SPMSL_FROST: - description += "It turns into a bolt of flame."; + description += "It turns into a bolt of frost."; break; case SPMSL_ELECTRIC: description += "The electricity stored in it may find a path to the ground."; diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc index 09ed05cd10..9771cebf07 100644 --- a/crawl-ref/source/item_use.cc +++ b/crawl-ref/source/item_use.cc @@ -3210,7 +3210,7 @@ bool thrown_object_destroyed(item_def *item, const coord_def& where, { int brand = get_ammo_brand(*item); if (brand == SPMSL_CHAOS || brand == SPMSL_DISPERSAL) - return(true); + return (true); // [dshaligram] Removed influence of Throwing on ammo preservation. // The effect is nigh impossible to perceive. switch (item->sub_type) -- cgit v1.2.3-54-g00ecf