summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dactions.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-03-09 12:44:54 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2013-03-09 12:44:54 -0600
commit380d5887bd29218e618c7f07f611b40756aac9b8 (patch)
treef646153d74bd71fcbbb626b94a638c784d1161ff /crawl-ref/source/dactions.cc
parentb162943f0f5eae64a645323c0cda4a5e568cf95a (diff)
downloadcrawl-ref-380d5887bd29218e618c7f07f611b40756aac9b8.tar.gz
crawl-ref-380d5887bd29218e618c7f07f611b40756aac9b8.zip
Add more 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 3def4a5961..5b00b41496 100644
--- a/crawl-ref/source/dactions.cc
+++ b/crawl-ref/source/dactions.cc
@@ -194,8 +194,8 @@ void apply_daction_to_mons(monster* mon, daction_type act, bool local)
if (act == DACT_PIKEL_SLAVES)
{
- mon->flags |= MF_NAME_REPLACE | MF_NAME_DESCRIPTOR |
- MF_NAME_NOCORPSE;
+ mon->flags |= MF_NAME_REPLACE | MF_NAME_DESCRIPTOR
+ | MF_NAME_NOCORPSE;
mon->mname = "freed slave";
}
else if (local)
@@ -203,7 +203,7 @@ void apply_daction_to_mons(monster* mon, daction_type act, bool local)
mon->behaviour = BEH_WANDER;
break;
- // The other dactions do not affect monsters directly
+ // The other dactions do not affect monsters directly.
default:
break;
}