summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 7cc0d1df7f..88fd7e5641 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -1928,21 +1928,20 @@ static bool _do_ability(const ability_def& abil)
}
case ABIL_FEAWN_SUNLIGHT:
- if(!sunlight())
- return false;
+ if (!sunlight())
+ return (false);
exercise(SK_INVOCATIONS, 2 + random2(3));
break;
case ABIL_FEAWN_PLANT_RING:
- if(!plant_ring_from_fruit())
- return false;
+ if (!plant_ring_from_fruit())
+ return (false);
exercise(SK_INVOCATIONS, 2 + random2(3));
break;
case ABIL_FEAWN_RAIN:
-
rain(you.pos() );
exercise(SK_INVOCATIONS, 2 + random2(3));
@@ -1955,8 +1954,8 @@ static bool _do_ability(const ability_def& abil)
break;
case ABIL_FEAWN_EVOLUTION:
- if(!evolve_flora())
- return false;
+ if (!evolve_flora())
+ return (false);
exercise(SK_INVOCATIONS, 2 + random2(3));
break;