summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-06 00:03:55 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-06 08:07:19 +0100
commit2505636ce4d1b815880104f8f22244b95600546d (patch)
tree79fc03ec9e946779f83064c3ebafdc5b75262153 /crawl-ref/source/spells4.cc
parent26c21c4e8c5909350cff32a4679c4fe164a3e46e (diff)
downloadcrawl-ref-2505636ce4d1b815880104f8f22244b95600546d.tar.gz
crawl-ref-2505636ce4d1b815880104f8f22244b95600546d.zip
Indentation fixes.
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index d4c78afc48..ca029cb28a 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -915,7 +915,7 @@ bool cast_passwall(const coord_def& delta, int pow)
int maxrange = shallow + pow / 25;
coord_def dest;
- for (dest = you.pos() + delta;
+ for (dest = you.pos() + delta;
in_bounds(dest) && _feat_is_passwallable(grd(dest));
dest += delta) ;
@@ -1255,9 +1255,9 @@ void cast_fulsome_distillation(int /*pow*/)
for (int nattk = 0; nattk < 4; ++nattk)
{
- if (smc->attack[nattk].flavour == AF_POISON_MEDIUM ||
- smc->attack[nattk].flavour == AF_POISON_STRONG ||
- smc->attack[nattk].flavour == AF_POISON_STR)
+ if (smc->attack[nattk].flavour == AF_POISON_MEDIUM
+ || smc->attack[nattk].flavour == AF_POISON_STRONG
+ || smc->attack[nattk].flavour == AF_POISON_STR)
{
pot_type = POT_STRONG_POISON;
}