1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-06-26 04:00:43 +03:00

Corrected ideal transcripts in light of PR#138

This commit is contained in:
Graham Nelson 2024-04-05 11:29:59 +01:00
parent efc18df91a
commit 30f09905c7
3 changed files with 24 additions and 8 deletions

View file

@ -438,7 +438,9 @@ chains: [(1) Clark Gable removing the chains from the cage]
[asking Clark Gable to try removing the chains from the cage - succeeded]
>** take bone from cage
You can't see any such thing.
[removing the bone from the cage]
But it isn't there now.
[removing the bone from the cage - failed the can't remove what's not inside rule]
>** i
[taking inventory]
@ -455,9 +457,12 @@ You are carrying:
[taking inventory - succeeded]
>** clark, take bone from cage
[answering Clark Gable that "take bone from cage"]
There is no reply.
[answering Clark Gable that "take bone from cage" - succeeded]
[asking Clark Gable to try removing the bone from the cage]
[(1) Clark Gable removing the bone from the cage]
[(1) Clark Gable removing the bone from the cage - failed the can't remove what's not inside rule]
"I don't think that's in the script," says Clark dubiously.
[asking Clark Gable to try removing the bone from the cage - succeeded]
>** get all from clark
(Clark Gable)

View file

@ -438,7 +438,9 @@ chains: [(1) Clark Gable removing the chains from the cage]
[asking Clark Gable to try removing the chains from the cage - succeeded]
>** take bone from cage
You can't see any such thing.
[removing the bone from the cage]
But it isn't there now.
[removing the bone from the cage - failed the can't remove what's not inside rule]
>** i
[taking inventory]
@ -455,9 +457,12 @@ You are carrying:
[taking inventory - succeeded]
>** clark, take bone from cage
[answering Clark Gable that "take bone from cage"]
There is no reply.
[answering Clark Gable that "take bone from cage" - succeeded]
[asking Clark Gable to try removing the bone from the cage]
[(1) Clark Gable removing the bone from the cage]
[(1) Clark Gable removing the bone from the cage - failed the can't remove what's not inside rule]
"I don't think that's in the script," says Clark dubiously.
[asking Clark Gable to try removing the bone from the cage - succeeded]
>** get all from clark
(Clark Gable)

View file

@ -36,6 +36,9 @@ and now poses a moral rather than gender-based question.
## Bug fixes
- Fix for Jira bug [I7-2460](https://inform7.atlassian.net/browse/I7-2460)
"Standard 'deciding whether all include' rules don't apply to an actor."
([PR#138](https://github.com/ganelson/inform/pull/138))
- Fix for Jira bug [I7-2458](https://inform7.atlassian.net/browse/I7-2458)
"The uuid.txt file should be whitespace-stripped before use"
(see [Inweb commit 4557cc1](https://github.com/ganelson/inform/commit/4557cc1925aebd7f1d075ea458b76f6970df3d57))
@ -163,6 +166,9 @@ and now poses a moral rather than gender-based question.
"Documentation recommends scene code that causes soft lock" (about times
since scene ending sometimes being negative)
([PR#109](https://github.com/ganelson/inform/pull/109))
- Fix for Jira bug [I7-2021](https://inform7.atlassian.net/browse/I7-2021) = Mantis 2058
"Multiple 'take all' in an empty room causes a 'Too many activities are going on at once.' error"
([PR#139](https://github.com/ganelson/inform/pull/139))
- Fix for Jira bug [I7-1973](https://inform7.atlassian.net/browse/I7-1973) = Mantis 2009
"Standard 'deciding whether all include' rules don't apply to an actor."
([PR#113](https://github.com/ganelson/inform/pull/113))