summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-31 09:04:04 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-31 09:04:04 +0000
commit8be55909c75406b5e852363e3d790855124765c8 (patch)
tree1cdb5128d4470cc738c5dc072e3db56836a51785 /crawl-ref/source/monstuff.cc
parent13ce09cb0deb85ade0144a3b0fe668b2c6de18d4 (diff)
downloadcrawl-ref-8be55909c75406b5e852363e3d790855124765c8.tar.gz
crawl-ref-8be55909c75406b5e852363e3d790855124765c8.zip
Horrible things are now temporary.
Monster abjuration is considerably weaker. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@910 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index fb84ff115a..a3620b3c70 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -4372,23 +4372,10 @@ static bool monster_swaps_places( monsters *mon, int mx, int my )
return (false);
// Okay, do the swap!
-#ifdef DEBUG_DIAGNOSTICS
- char mname[ITEMNAME_SIZE];
- moname(mon->type, true, DESC_PLAIN, mname);
- mprf(MSGCH_DIAGNOSTICS,
- "Swap: %s (%d,%d)->(%d,%d) (%d;%d)",
- mname, mon->x, mon->y, nx, ny, mon->speed_increment, mon->speed);
-#endif
mon->x = nx;
mon->y = ny;
mgrd[nx][ny] = monster_index(mon);
-#ifdef DEBUG_DIAGNOSTICS
- moname(m2->type, true, DESC_PLAIN, mname);
- mprf(MSGCH_DIAGNOSTICS,
- "Swap: %s (%d,%d)->(%d,%d) (%d;%d)",
- mname, m2->x, m2->y, cx, cy, mon->speed_increment, mon->speed);
-#endif
m2->x = cx;
m2->y = cy;
const int m2i = monster_index(m2);