summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-death.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-06-19 12:29:04 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-06-19 12:52:57 -0400
commit919266dbc630173ab4fe2067c323468e5e59989b (patch)
treeb563540f4c3c0cc3769fc13238925e116b282d57 /crawl-ref/source/mon-death.cc
parentb016ecab1895c928f22da2412e78215c4cf0b47b (diff)
downloadcrawl-ref-919266dbc630173ab4fe2067c323468e5e59989b.tar.gz
crawl-ref-919266dbc630173ab4fe2067c323468e5e59989b.zip
Rename functions (|amethyst).
Diffstat (limited to 'crawl-ref/source/mon-death.cc')
-rw-r--r--crawl-ref/source/mon-death.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/mon-death.cc b/crawl-ref/source/mon-death.cc
index 30b3703ed4..2d9ac48075 100644
--- a/crawl-ref/source/mon-death.cc
+++ b/crawl-ref/source/mon-death.cc
@@ -1922,12 +1922,12 @@ int monster_die(monster* mons, killer_type killer,
}
// Zin hates unclean and chaotic beings.
- if (mons->unclean())
+ if (mons->how_unclean())
{
did_god_conduct(DID_KILL_UNCLEAN,
mons->hit_dice, true, mons);
}
- else if (mons->chaos())
+ else if (mons->how_chaotic())
{
did_god_conduct(DID_KILL_CHAOTIC,
mons->hit_dice, true, mons);
@@ -2157,13 +2157,13 @@ int monster_die(monster* mons, killer_type killer,
mons->hit_dice);
}
- if (mons->unclean())
+ if (mons->how_unclean())
{
did_god_conduct(DID_UNCLEAN_KILLED_BY_SERVANT,
mons->hit_dice);
}
- if (mons->chaos())
+ if (mons->how_chaotic())
{
did_god_conduct(DID_CHAOTIC_KILLED_BY_SERVANT,
mons->hit_dice);
@@ -2216,13 +2216,13 @@ int monster_die(monster* mons, killer_type killer,
mons->hit_dice);
}
- if (mons->unclean())
+ if (mons->how_unclean())
{
did_god_conduct(DID_UNCLEAN_KILLED_BY_SERVANT,
mons->hit_dice);
}
- if (mons->chaos())
+ if (mons->how_chaotic())
{
did_god_conduct(DID_CHAOTIC_KILLED_BY_SERVANT,
mons->hit_dice);