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

Fix for Mantis bug 2034

This commit is contained in:
Graham Nelson 2022-04-09 12:05:51 +01:00
parent 23670bf671
commit 231e86c6d4

View file

@ -397,10 +397,10 @@ To end the story finally
(- deadflag=3; story_complete=true; -).
To end the story saying (finale - text)
(documented at ph_endsaying):
(- deadflag={-by-reference:finale}; story_complete=false; -).
(- deadflag={-by-reference:finale}; BlkValueIncRefCountPrimitive(deadflag); story_complete=false; -).
To end the story finally saying (finale - text)
(documented at ph_endfinallysaying):
(- deadflag={-by-reference:finale}; story_complete=true; -).
(- deadflag={-by-reference:finale}; BlkValueIncRefCountPrimitive(deadflag); story_complete=true; -).
To decide whether the story has ended
(documented at ph_ended):
(- (deadflag~=0) -).