summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ghost.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/ghost.cc')
-rw-r--r--crawl-ref/source/ghost.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/ghost.cc b/crawl-ref/source/ghost.cc
index b6289b5fdf..01bcadc639 100644
--- a/crawl-ref/source/ghost.cc
+++ b/crawl-ref/source/ghost.cc
@@ -210,7 +210,8 @@ void ghost_demon::init_random_demon()
// Does demon fly?
fly = (one_chance_in(3) ? FL_NONE :
- one_chance_in(5) ? FL_LEVITATE : FL_FLY);
+ one_chance_in(5) ? FL_LEVITATE
+ : FL_FLY);
// hit dice:
xl = 10 + roll_dice(2, 10);