From: Christian Heller Date: Fri, 31 Jan 2014 23:34:58 +0000 (+0100) Subject: Fixed typo in comment. X-Git-Tag: tce~847 X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/copy_structured?a=commitdiff_plain;h=2e1622b732921e08dcb125a32c75aea89ab047ba;p=plomrogue Fixed typo in comment. --- diff --git a/src/server/ai.c b/src/server/ai.c index 75b4b89..6c45571 100644 --- a/src/server/ai.c +++ b/src/server/ai.c @@ -116,7 +116,7 @@ static char get_dir_to_nearest_enemy(struct MapObj * mo_target) { /* Calculate for each cell the distance to the nearest map actor that is * not "mo_target", with movement only possible in the directions of "dir". - * (Actor's own cells start with a distance of 0 towards themselves.) + * (Actors' own cells start with a distance of 0 towards themselves.) */ uint8_t max_score = UINT8_MAX; /* Score for cells treated as unreachable. */ char * dirs = "NESW";