summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-29 11:37:44 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-29 11:37:44 -0500
commitb1e8120d611baaca32390d73356872da8a868148 (patch)
tree9263a98470d79dd9957ab7bce1c444d0a42db136 /crawl-ref/source/acr.cc
parent92a7420db9a472f16ba86fcf82c0bc33f850a797 (diff)
downloadcrawl-ref-b1e8120d611baaca32390d73356872da8a868148.tar.gz
crawl-ref-b1e8120d611baaca32390d73356872da8a868148.zip
Add comment fixes.
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 0ba403cd48..09b9232a7d 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -163,7 +163,7 @@ static int _check_adjacent(dungeon_feature_type feat, coord_def& delta);
static void _open_door(coord_def move, bool check_confused = true);
static void _open_door(int x, int y, bool check_confused = true)
{
- _open_door(coord_def(x,y), check_confused);
+ _open_door(coord_def(x, y), check_confused);
}
static void _close_door(coord_def move);
static void _start_running( int dir, int mode );
@@ -341,11 +341,10 @@ static void _wanderer_startup_message()
if (skill_levels <= 2)
{
- // Demigods and Demonspawn wanderers stand to not be
- // able to see any of their skills at the start of
- // the game (one or two skills should be easily guessed
- // from starting equipment)... Anyways, we'll give the
- // player a message to warn them (and give a reason why). -- bwr
+ // Some wanderers stand to not be able to see any of their
+ // skills at the start of the game (one or two skills should be
+ // easily guessed from starting equipment). Anyway, we'll give
+ // the player a message to warn them (and a reason why). - bwr
mpr("You wake up in a daze, and can't recall much.");
}
}
@@ -3102,7 +3101,7 @@ static bool _untrap_target(const coord_def move, bool check_confused)
return (false);
}
-// Opens doors and may also handle untrapping/attacking etc.
+// Opens doors and may also handle untrapping/attacking, etc.
// If either move_x or move_y are non-zero, the pair carries a specific
// direction for the door to be opened (eg if you type ctrl + dir).
static void _open_door(coord_def move, bool check_confused)