summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godwrath.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-05-12 17:56:57 -0400
committerNeil Moore <neil@s-z.org>2014-05-12 18:10:15 -0400
commitebb4a9ff33a46f1aa69c06acb33dd218b747234a (patch)
treec945396d7f393b040bbd5ec3bf16753b3e4b272a /crawl-ref/source/godwrath.cc
parent5ac2fffa8870e41b22e98d0d034f7bfb191821fa (diff)
downloadcrawl-ref-ebb4a9ff33a46f1aa69c06acb33dd218b747234a.tar.gz
crawl-ref-ebb4a9ff33a46f1aa69c06acb33dd218b747234a.zip
Fix "if(" and friends.
Diffstat (limited to 'crawl-ref/source/godwrath.cc')
-rw-r--r--crawl-ref/source/godwrath.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/godwrath.cc b/crawl-ref/source/godwrath.cc
index 008b67c129..a57dd9f55a 100644
--- a/crawl-ref/source/godwrath.cc
+++ b/crawl-ref/source/godwrath.cc
@@ -1385,7 +1385,7 @@ static bool _dithmenos_retribution()
// shadow theme
const god_type god = GOD_DITHMENOS;
- switch(random2(4))
+ switch (random2(4))
{
case 0:
{
@@ -1447,7 +1447,7 @@ static bool _qazlal_retribution()
// disaster/elemental theme
const god_type god = GOD_QAZLAL;
- switch(random2(3))
+ switch (random2(3))
{
case 0:
{
@@ -1882,7 +1882,7 @@ void gozag_incite(monster *mon)
int tries = 3;
do
{
- switch(random2(3))
+ switch (random2(3))
{
case 0:
if (mon->has_ench(ENCH_MIGHT))