Skip to content

Commit

Permalink
Give steel ammo the same mulch rate as standard ammo
Browse files Browse the repository at this point in the history
It's just unambiguously better ammo still, and doesn't need to be highly
unlikely to ever break in addition to that.
  • Loading branch information
Chris Campbell committed Jan 28, 2015
1 parent ca4ee98 commit 68e045f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions crawl-ref/source/describe.cc
Expand Up @@ -1192,8 +1192,7 @@ static string _describe_ammo(const item_def &item)
break;
case SPMSL_STEEL:
description += "Compared to normal ammo, it does 30% more "
"damage, is destroyed upon impact only 1/10th of the "
"time.";
"damage.";
break;
case SPMSL_SILVER:
description += "Silver sears all those touched by chaos. "
Expand Down
3 changes: 0 additions & 3 deletions crawl-ref/source/throw.cc
Expand Up @@ -1155,9 +1155,6 @@ bool thrown_object_destroyed(item_def *item, const coord_def& where)

switch (brand)
{
case SPMSL_STEEL:
chance *= 10;
break;
case SPMSL_FLAME:
case SPMSL_FROST:
case SPMSL_CURARE:
Expand Down

0 comments on commit 68e045f

Please sign in to comment.