From 7b361ce67921e3526e2baf96eed409768fbabf93 Mon Sep 17 00:00:00 2001 From: Graham Nelson Date: Wed, 6 Apr 2022 21:15:32 +0100 Subject: [PATCH] Fix for Mantis bug 2104 --- resources/Documentation/Writing with Inform.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/Documentation/Writing with Inform.txt b/resources/Documentation/Writing with Inform.txt index 96ea92e32a..6bd1df04ee 100644 --- a/resources/Documentation/Writing with Inform.txt +++ b/resources/Documentation/Writing with Inform.txt @@ -5060,11 +5060,11 @@ substituting whatever number we feel is appropriate. We should be careful not to The player may simply take the trophy, drop it again, take it again, ... and win five points every time around. We can prevent this by phrasing the rule more carefully: - After taking the trophy when the trophy is not handled: + After taking the trophy when the trophy was not handled: increase the score by 5; say "Well done!" -Rather than being an open-ended scoring system, IF normally has a maximum possible score, which can be specified with a sentence like so: +("Was handled", not "is handled", because this rule happens after the trophy has been taken - so by the time this rule has been considered, the trophy is always handled.) Rather than being an open-ended scoring system, IF normally has a maximum possible score, which can be specified with a sentence like so: The maximum score is 10.