summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 973962a6af..4d4d2526f6 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -3108,13 +3108,13 @@ void bolt::affect_ground()
{
beh_type beh;
// Half the fungi in arena mode are friendly.
- if(crawl_state.arena)
+ if (crawl_state.arena)
{
beh = coinflip() ? BEH_FRIENDLY : BEH_HOSTILE;
}
else
{
- switch(this->attitude)
+ switch (this->attitude)
{
case ATT_NEUTRAL:
beh = BEH_NEUTRAL;