summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/mon-util.cc10
-rw-r--r--crawl-ref/source/mon-util.h2
2 files changed, 6 insertions, 6 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
diff --git a/crawl-ref/source/mon-util.h b/crawl-ref/source/mon-util.h
index 1c374d8ab2..38979e84fb 100644
--- a/crawl-ref/source/mon-util.h
+++ b/crawl-ref/source/mon-util.h
@@ -680,7 +680,7 @@ unsigned mons_char(int mc);
int mons_class_colour(int mc);
int mons_colour(const monsters *mon);
-void mons_load_spells( monsters *mon, mon_spellbook_type book );
+void mons_load_spells(monsters *mon, mon_spellbook_type book);
monster_type random_draconian_monster_species();