From 2505636ce4d1b815880104f8f22244b95600546d Mon Sep 17 00:00:00 2001 From: Johanna Ploog Date: Wed, 6 Jan 2010 00:03:55 +0100 Subject: Indentation fixes. --- crawl-ref/source/spells4.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crawl-ref/source/spells4.cc') 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; } -- cgit v1.2.3-54-g00ecf