From: Eric S. Raymond Date: Wed, 5 Jul 2017 06:55:51 +0000 (-0400) Subject: Fix dropped stitch in last commit. X-Git-Tag: takebird~15 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=fd57b3b5bdf15fe7f8b861c2559c905269f9ac15 Fix dropped stitch in last commit. --- diff --git a/misc.c b/misc.c index a793026..5b1068e 100644 --- a/misc.c +++ b/misc.c @@ -532,7 +532,7 @@ long get_vocab_id(const char* word) // Check for the reservoir magic word. if (strcasecmp(word, game.zzword) == 0) - return (PART + 2000); // FIXME: replace with a proper hash + return ACTION_WORD(PART); return (WORD_NOT_FOUND); }