1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-02 23:14:57 +03:00

Fix for Mantis bug 2104

This commit is contained in:
Graham Nelson 2022-04-06 21:15:32 +01:00
parent 6d1fe47030
commit 7b361ce679

View file

@ -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.