summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-27 00:40:48 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-27 00:40:48 +0000
commit061439ed33191ff3266ecaef09c188597dff43f7 (patch)
treefeb1b4477547b2573494275fda7961be924fd797 /crawl-ref/source
parenta473262a522cfaa8914179c0aea6482f5b4437f1 (diff)
downloadcrawl-ref-061439ed33191ff3266ecaef09c188597dff43f7.tar.gz
crawl-ref-061439ed33191ff3266ecaef09c188597dff43f7.zip
Comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8803 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/monstuff.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index c3ce8ae2b6..368d6854c9 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -4639,7 +4639,7 @@ static void _handle_movement(monsters *monster)
const int targ_x = monster->pos().x + count_x - 1;
const int targ_y = monster->pos().y + count_y - 1;
- // Bounds check - don't consider moving out of grid!
+ // Bounds check: don't consider moving out of grid!
if (!in_bounds(targ_x, targ_y))
{
good_move[count_x][count_y] = false;
@@ -7989,7 +7989,7 @@ static bool _mon_can_move_to_pos(const monsters *monster,
{
const coord_def targ = monster->pos() + delta;
- // Bounds check - don't consider moving out of grid!
+ // Bounds check: don't consider moving out of grid!
if (!in_bounds(targ))
return (false);
@@ -8220,7 +8220,7 @@ static bool _monster_move(monsters *monster)
const int targ_x = monster->pos().x + count_x - 1;
const int targ_y = monster->pos().y + count_y - 1;
- // Bounds check - don't consider moving out of grid!
+ // Bounds check: don't consider moving out of grid!
if (!in_bounds(targ_x, targ_y))
{
good_move[count_x][count_y] = false;