summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells1.cc')
-rw-r--r--crawl-ref/source/spells1.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 7cc35a178c..28104ddb94 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -1162,12 +1162,12 @@ void antimagic()
if (!you.permanent_flight() && you.duration[DUR_CONTROLLED_FLIGHT] > 1)
you.duration[DUR_CONTROLLED_FLIGHT] = 1;
- for ( unsigned int i = 0; i < ARRAYSZ(dur_list); ++i )
- if ( you.duration[dur_list[i]] > 1 )
+ for (unsigned int i = 0; i < ARRAYSZ(dur_list); ++i)
+ if (you.duration[dur_list[i]] > 1)
you.duration[dur_list[i]] = 1;
- contaminate_player( -1 * (1 + random2(5)));
-} // end antimagic()
+ contaminate_player(-1 * (1 + random2(5)));
+}
void extension(int pow)
{