summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-pick.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mon-pick.cc')
-rw-r--r--crawl-ref/source/mon-pick.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-pick.cc b/crawl-ref/source/mon-pick.cc
index 2c28233d78..e02a013110 100644
--- a/crawl-ref/source/mon-pick.cc
+++ b/crawl-ref/source/mon-pick.cc
@@ -291,9 +291,9 @@ bool mons_abyss(int mcls)
case MONS_DRACONIAN_ANNIHILATOR:
case MONS_DRACONIAN_ZEALOT:
case MONS_DRACONIAN_SHIFTER:
- return true;
+ return (true);
default:
- return false;
+ return (false);
}
} // end mons_abyss()
@@ -539,9 +539,9 @@ bool mons_pan(int mcls)
case MONS_UFETUBUS:
case MONS_WHITE_IMP:
case MONS_YNOXINUL:
- return true;
+ return (true);
default:
- return false;
+ return (false);
}
} // end mons_pan()