summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mstuff2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mstuff2.cc')
-rw-r--r--crawl-ref/source/mstuff2.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 0d043a6451..20e87d6951 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -314,14 +314,14 @@ void mons_trap(struct monsters *monster)
if (mons_friendly(monster))
{
beem.colour = ((temp_rand < 3) ? CYAN : //paralyze - 3 in 16
- (temp_rand < 7) ? RED // confuse - 4 in 16
- : BLACK); // slow - 9 in 16
+ (temp_rand < 7) ? RED // confuse - 4 in 16
+ : BLACK); // slow - 9 in 16
}
else
{
beem.colour = ((temp_rand < 3) ? BLUE : //haste - 3 in 16 {dlb}
- (temp_rand < 7) ? MAGENTA //invis - 4 in 16 {dlb}
- : GREEN); // heal - 9 in 16 {dlb}
+ (temp_rand < 7) ? MAGENTA //invis - 4 in 16 {dlb}
+ : GREEN); // heal - 9 in 16 {dlb}
}
mons_ench_f2(monster, beem);