summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/mon-util.cc8
-rw-r--r--crawl-ref/source/spells2.cc2
2 files changed, 2 insertions, 8 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 8019db9368..e7feff2411 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -1400,13 +1400,7 @@ bool mons_has_lifeforce(const monsters *mon)
bool mons_skeleton(int mc)
{
- if (!mons_class_can_be_zombified(mc)
- || mons_class_flag(mc, M_NO_SKELETON))
- {
- return (false);
- }
-
- return (true);
+ return (!mons_class_flag(mc, M_NO_SKELETON));
}
flight_type mons_class_flies(int mc)
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 91d1a09b74..379ac587a4 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -235,7 +235,7 @@ int corpse_rot(int pow)
{
if (si->base_type == OBJ_CORPSES && si->sub_type == CORPSE_BODY)
{
- // Found a corpse. Skeletify it if possible.
+ // Found a corpse. Skeletonise it if possible.
if (!mons_skeleton(si->plus))
destroy_item(si->index());
else