Removing requirement that priority be an integer

This commit is contained in:
David Masad
2021-02-06 11:08:23 -05:00
parent a37c3477b8
commit 1f128089d9
7 changed files with 43 additions and 53 deletions

View File

@ -36,7 +36,7 @@ StoryManager.storylets["Conversation"] = {
let storylet = {
passage: "Conversation",
description: "Talk to " + character.name,
priority: 0,
priority: 1,
character: character
}
@ -72,7 +72,7 @@ StoryManager.storylets["Conversation topic"] = {
yield {
passage: "Conversation topic",
description: "Talk about " + topic,
priority: 0,
priority: 1,
topic: topic
};
}