aboutsummaryrefslogtreecommitdiff
path: root/src/cract.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cract.cc')
-rw-r--r--src/cract.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cract.cc b/src/cract.cc
index e0af29f..52355c1 100644
--- a/src/cract.cc
+++ b/src/cract.cc
@@ -1016,7 +1016,7 @@ void TCreature::ToDoGo(int DestX, int DestY, int DestZ, bool MustReach, int MaxS
// NOTE(fusion): The number of steps between two points is the same as the
// their manhattan distance, if we exclude diagonal movement. We can skip
- // the path finder if we know we're step away from the destination.
+ // the path finder if we know we're one step away from the destination.
if(DistanceX + DistanceY == 1){
TToDoEntry TD = {};
TD.Code = TDGo;