First cut at game-option support.
[super-star-trek.git] / ai.c
diff --git a/ai.c b/ai.c
index 762e745dcf4dbe9ff62a0943ebf291506034e3e6..e766e9832d6dfaac210ff7b0fcd6acac7f93d8e3 100644 (file)
--- a/ai.c
+++ b/ai.c
@@ -164,7 +164,7 @@ static void movebaddy(int comx, int comy, int loccom, int ienm)
        /* Limit motion according to skill */
        if (abs(motion) > skill) motion = (motion < 0) ? -skill : skill;
     }
-    /* calcuate preferred number of steps */
+    /* calculate preferred number of steps */
     nsteps = motion < 0 ? -motion : motion;
     if (motion > 0 && nsteps > mdist) nsteps = mdist; /* don't overshoot */
     if (nsteps > QUADSIZE) nsteps = QUADSIZE; /* This shouldn't be necessary */