From 3f37b80b921461cf827b26fcd98bc38429285666 Mon Sep 17 00:00:00 2001 From: "Tobias V. Langhoff" Date: Thu, 18 Dec 2025 16:30:02 +0100 Subject: [PATCH] Print direction as adverb in parser error internal rule response (C) `PrintCommand(0)` already does this for (B). This should be safe, since if `inferred_go` is true, we know that we're handling a direction object. --- .../Materials/Inter/CommandParserKit/Sections/Parser.i6t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inform7/Internal/Extensions/Graham Nelson/Standard Rules.i7xd/Materials/Inter/CommandParserKit/Sections/Parser.i6t b/inform7/Internal/Extensions/Graham Nelson/Standard Rules.i7xd/Materials/Inter/CommandParserKit/Sections/Parser.i6t index f3472e4c1..bba863cc6 100644 --- a/inform7/Internal/Extensions/Graham Nelson/Standard Rules.i7xd/Materials/Inter/CommandParserKit/Sections/Parser.i6t +++ b/inform7/Internal/Extensions/Graham Nelson/Standard Rules.i7xd/Materials/Inter/CommandParserKit/Sections/Parser.i6t @@ -1472,7 +1472,7 @@ Print best possible error message. pcount = pcount2; if (inferred_go) { PARSER_ERROR_INTERNAL_RM('C'); - print (name) parser_results-->INP1_PRES; + print (LanguageDirection) parser_results-->INP1_PRES; } else { PARSER_ERROR_INTERNAL_RM('B'); PrintCommand(0);