aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.c
diff options
context:
space:
mode:
Diffstat (limited to 'libstorycode/storycode.c')
-rw-r--r--libstorycode/storycode.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libstorycode/storycode.c b/libstorycode/storycode.c
index 5b4901d..ca0d2d0 100644
--- a/libstorycode/storycode.c
+++ b/libstorycode/storycode.c
@@ -219,6 +219,10 @@ static int write_item(GOutputStream *fh, struct narrative_item *item)
if ( write_string(fh, "}\n") ) return 1;
break;
+ case NARRATIVE_ITEM_EOP:
+ if ( write_string(fh, "ENDOFPRESENTATION\n") ) return 1;
+ break;
+
}
return 0;
}