summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-25 12:36:43 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-25 12:36:43 +0000
commit552a18061460342af014e69c7cee26bb5bf358ef (patch)
tree6a715c1f8acde3dda56bf5c2e8cd7f4a3aee6c2c /crawl-ref/source/spells4.cc
parentebb6673550564e06b257690b5fa0100af8786838 (diff)
downloadcrawl-ref-552a18061460342af014e69c7cee26bb5bf358ef.tar.gz
crawl-ref-552a18061460342af014e69c7cee26bb5bf358ef.zip
* Add support for packaging save files with tar. (Patch by Trent W. Buck.)
* Fix random blink placing the player in dangerous clouds. * Fix message when trying to place Conjure Flame in a wax wall. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10397 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index e59ebe9d88..50173cae75 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -1937,7 +1937,7 @@ static int _quadrant_blink(coord_def where, int pow, int, actor *)
// walls nearby.
coord_def target;
bool found = false;
- for ( int i = 0; i < (pow*pow) / 500 + 1; ++i )
+ for (int i = 0; i < (pow*pow) / 500 + 1; ++i)
{
// Find a space near our base point...
// First try to find a random square not adjacent to the basepoint,