Prevent game from uttering solecisms about the "floor" when outside.
[open-adventure.git] / main.c
diff --git a/main.c b/main.c
index f24c5bc4162cb6480b3f232d69f338b86d663204..8f3549e97dfc975c91ca4d76d6861b5fd91f5e46 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1137,11 +1137,11 @@ Lclosecheck:
                 command.wd1 = token_to_packed("CATCH");
         }
 Lookup:
-        if (wordeq(command.wd1, token_to_packed("WEST"))) {
+        if (strncasecmp(command.raw1, "west", sizeof("west")) == 0) {
             if (++game.iwest == 10)
                 rspeak(W_IS_WEST);
         }
-        if (wordeq(command.wd1, token_to_packed("GO")) && !wordempty(command.wd2)) {
+        if (strncasecmp(command.raw1, "go", sizeof("go")) == 0 && !wordempty(command.wd2)) {
             if (++game.igo == 10)
                 rspeak(GO_UNNEEDED);
         }