summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/newgame.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index ccd9e1a351..343ce30af1 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -596,7 +596,7 @@ static void _pick_random_species_and_class( bool unrestricted_only )
unrestricted_only))
{
job_count++;
- if (one_chance_in( job_count ))
+ if (one_chance_in(job_count))
{
species = static_cast<species_type>(sp);
job = static_cast<job_type>(cl);
@@ -606,7 +606,7 @@ static void _pick_random_species_and_class( bool unrestricted_only )
}
// At least one job must exist in the game, else we're in big trouble.
- ASSERT( species != SP_UNKNOWN && job != JOB_UNKNOWN );
+ ASSERT(species != SP_UNKNOWN && job != JOB_UNKNOWN);
// Return draconian variety here.
if (species == SP_RED_DRACONIAN)