Hi! I'm new and very noob.
I'm trying to let the player save only on some passages, so i foud this:
Config.saves.isAllowed = function () {
return tags().contains("allowed")
};
And it's working pretty well. (it's possible to save only on passages that have the tag "allowed")
The problem occurs when the player decides to save in a passage where it is not allowed to save: it doesn't save (pretty fine) but it doesn't display the message "Saving has been disallowed on this passage." that is supposed to display according to this documentation. It just close the save window.
It's a bug? Or i did something wrong?