summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mon-util.cc')
-rw-r--r--crawl-ref/source/mon-util.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 14de07d726..00bd93cdb5 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -1736,7 +1736,7 @@ int exper_value(const monsters *monster)
return (x_val);
}
-void mons_load_spells( monsters *mon, mon_spellbook_type book )
+void mons_load_spells(monsters *mon, mon_spellbook_type book)
{
mon->load_spells(book);
}
@@ -8085,10 +8085,10 @@ void monsters::lose_energy(energy_use_type et, int div, int mult)
static inline monster_type _royal_jelly_ejectable_monster()
{
return static_cast<monster_type>(
- random_choose( MONS_ACID_BLOB,
- MONS_AZURE_JELLY,
- MONS_DEATH_OOZE,
- -1 ) );
+ random_choose(MONS_ACID_BLOB,
+ MONS_AZURE_JELLY,
+ MONS_DEATH_OOZE,
+ -1));
}
bool monsters::can_drink_potion(potion_type ptype) const