From 6b19e990b991bde100eca8500388ea4a12fc9c21 Mon Sep 17 00:00:00 2001 From: David Masad Date: Sat, 6 Feb 2021 07:09:31 -0500 Subject: [PATCH] Removing comment --- storymanager.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/storymanager.js b/storymanager.js index c5088a1..1ce38da 100644 --- a/storymanager.js +++ b/storymanager.js @@ -10,8 +10,6 @@ StoryManager.getAllStorylets = function(tag=null) { for (let key in this.storylets) { storylet = this.storylets[key]; if (tag === null || ("tags" in storylet && storylet.tags.includes(tag))) { - // TODO: If using yield, this part will change - //storylets = storylet.generate(); for (let boundStorylet of storylet.generate()) { //boundStorylet = storylets[i]; if (!("priority" in boundStorylet)) boundStorylet.priority = 0;