From 4277eaea5e02fb69d64193a0395357e2c346afdb Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sat, 21 Nov 2009 12:37:25 -0600 Subject: Add formatting fixes. This mostly puts && and || on the proper lines, per the style guide. --- crawl-ref/source/mon-stuff.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/mon-stuff.cc') diff --git a/crawl-ref/source/mon-stuff.cc b/crawl-ref/source/mon-stuff.cc index 86403941cb..45f7dc4777 100644 --- a/crawl-ref/source/mon-stuff.cc +++ b/crawl-ref/source/mon-stuff.cc @@ -3583,8 +3583,8 @@ int dismiss_monsters(std::string pattern) { int ndismissed = 0; for (monster_iterator mi; mi; ++mi) { - if (mi->alive() && - (tpat.empty() || tpat.matches(mi->name(DESC_PLAIN, true)))) + if (mi->alive() + && (tpat.empty() || tpat.matches(mi->name(DESC_PLAIN, true)))) { if (!keep_item) _vanish_orig_eq(*mi); -- cgit v1.2.3-54-g00ecf