summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-13 18:56:01 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-13 18:57:06 -0600
commitb054a2033c2a66875089a5fc7a0fb9b7852de90b (patch)
tree3fbbf803bbf83ef35d69c1c34c0ddd5cb8294123 /crawl-ref/source/beam.cc
parent2a812c8d1fd6772fc786683a8f780f76abe57238 (diff)
downloadcrawl-ref-b054a2033c2a66875089a5fc7a0fb9b7852de90b.tar.gz
crawl-ref-b054a2033c2a66875089a5fc7a0fb9b7852de90b.zip
Remove redundant did_god_conduct() parameter.
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index abbae234c7..3e7f26b170 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -1807,7 +1807,7 @@ void bolt::fire_wall_effect()
else if (player_can_smell())
emit_message(MSGCH_PLAIN, "You smell burning wood.");
if (whose_kill() == KC_YOU)
- did_god_conduct(DID_KILL_PLANT, 1, effect_known, 0);
+ did_god_conduct(DID_KILL_PLANT, 1, effect_known);
else if (whose_kill() == KC_FRIENDLY)
did_god_conduct(DID_ALLY_KILLED_PLANT, 1, effect_known, 0);
place_cloud(CLOUD_FOREST_FIRE, pos(), random2(30)+25, whose_kill(), killer(), 5);
@@ -2398,10 +2398,10 @@ int mons_adjust_flavoured(monsters *monster, bolt &pbolt, int hurted,
{
if (doFlavouredEffects)
{
- simple_monster_message( monster, " partially resists." );
+ simple_monster_message(monster, " partially resists.");
// Poison arrow can poison any living thing regardless of
- // poison resistance. -- bwr
+ // poison resistance. - bwr
if (mons_has_lifeforce(monster))
poison_monster(monster, pbolt.whose_kill(), 2, true);
}