summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 494de41b99..5e10ddbf67 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -7292,9 +7292,8 @@ static bool _monster_move(monsters *monster)
// If neither does, do nothing.
if (good_move[mmov_x + 1][mmov_y + 1] == false)
{
- int current_distance = grid_distance(monster->x, monster->y,
- monster->target_x,
- monster->target_y);
+ int current_distance = distance(monster->x, monster->y,
+ monster->target_x, monster->target_y);
int dir = -1;
int i, mod, newdir;
@@ -7335,10 +7334,10 @@ static bool _monster_move(monsters *monster)
newdir = (dir + 8 + mod) % 8;
if (good_move[compass_x[newdir] + 1][compass_y[newdir] + 1])
{
- dist[i] = grid_distance(monster->x + compass_x[newdir],
- monster->y + compass_y[newdir],
- monster->target_x,
- monster->target_y);
+ dist[i] = distance(monster->x + compass_x[newdir],
+ monster->y + compass_y[newdir],
+ monster->target_x,
+ monster->target_y);
}
else
{