missed a thing and made options key optional

This commit is contained in:
Arthur Beck 2025-05-08 16:21:09 -05:00
parent 884508edcd
commit 3d1b39d973
Signed by: ArthurB
GPG key ID: CA200B389F0F6BC9
2 changed files with 7 additions and 0 deletions

View file

@ -270,6 +270,12 @@ text = "Waking up feeling fulfilled, you get ready for the day and spend the day
text = "make a counter offer"
to = "shapeshifting1-counter"
[track.day2-incorrect1]
text = "Waking up mildly uneasy, you get ready for the day and take your mind off things by working with your local charity for a majority of the day. In the afternoon you get a message from the buyer from yesterday saying that it worked, but also turned the person he tried it on into a minotaur. They were both fine with that however, so it worked out. A few hours later, someone sends you a request for a shapeshifting potion that can turn someone into a dragon. They make an offer of 1000 gold, but you know that that isn't at all what it's worth."
[[track.day2-incorrect1.options]]
text = "make a counter offer"
to = "shapeshifting1-counter"
[track.day2-incorrect2]
text = "Waking up mildly uneasy, you get ready for the day and take your mind off things by working with your local charity for a majority of the day. In the afternoon you get a message from the buyer from yesterday saying that it worked, but also turned the person he tried it on into a dragon. They were both fine with that however, so it worked out. A few hours later, someone sends you a request for a shapeshifting potion that can turn someone into a dragon. They make an offer of 1000 gold, but you know that that isn't at all what it's worth."
[[track.day2-incorrect2.options]]

View file

@ -30,6 +30,7 @@ struct Track {
title: Option<String>,
author: Option<String>,
text: String,
#[serde(default)]
options: Vec<TrackOption>,
voice: Option<String>,
#[serde(skip)]