summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dactions.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-03-09 12:34:05 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-03-09 12:34:05 -0600
commitb162943f0f5eae64a645323c0cda4a5e568cf95a (patch)
tree09fb50d67a25bea972ffd5b74f073851f1b376b9 /crawl-ref/source/dactions.cc
parentfd4131411bd778943670394b845e500f0829af9a (diff)
downloadcrawl-ref-b162943f0f5eae64a645323c0cda4a5e568cf95a.tar.gz
crawl-ref-b162943f0f5eae64a645323c0cda4a5e568cf95a.zip
Add minor cosmetic fixes.
Diffstat (limited to 'crawl-ref/source/dactions.cc')
-rw-r--r--crawl-ref/source/dactions.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/dactions.cc b/crawl-ref/source/dactions.cc
index 8f03e01279..3def4a5961 100644
--- a/crawl-ref/source/dactions.cc
+++ b/crawl-ref/source/dactions.cc
@@ -101,10 +101,10 @@ bool mons_matches_daction(const monster* mon, daction_type act)
return mons_enslaved_soul(mon);
case DACT_HOLY_NEW_ATTEMPT:
- return (mon->is_holy());
+ return mon->is_holy();
case DACT_SLIME_NEW_ATTEMPT:
- return (mons_is_slime(mon));
+ return mons_is_slime(mon);
default:
return false;
@@ -139,7 +139,7 @@ void add_daction(daction_type act)
// Immediately apply it to the current level.
catchup_dactions();
- // And now to any monsters in transit
+ // And now to any monsters in transit.
apply_daction_to_transit(act);
}