summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
authorevktalo <evktalo@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-12 13:21:55 +0000
committerevktalo <evktalo@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-12 13:21:55 +0000
commit98ec0f6dd097ff6403fb883a328cdc10c866d950 (patch)
treed3fe150dc893b80724b336a539308ef71712ed8b /crawl-ref/source/spells2.cc
parent081535b6cf8ac6c366fe0ff7d04370d515c0d202 (diff)
downloadcrawl-ref-98ec0f6dd097ff6403fb883a328cdc10c866d950.tar.gz
crawl-ref-98ec0f6dd097ff6403fb883a328cdc10c866d950.zip
Cosmetic fix.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10185 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index b952bbe504..13409640aa 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -977,7 +977,8 @@ bool cast_summon_small_mammals(int pow, god_type god)
success = true;
}
- } while (random2(pow+1) > 32 && count < count_max);
+ }
+ while (random2(pow+1) > 32 && count < count_max);
return (success);
}