Hey there! This game is fucking awesome. Huge props. I’m super down to help debug.
A few things I’ve noticed:
-When you have multiples of a food, and then feed said food to a queen, both will disappear if you don’t feed the second one in the same sitting* as the first.
-When you have multiples of an ingredient, then cook something that requires an instance of that ingredient, all ingredients are consumed**
-Morgana’s first two (at least, haven’t gotten past the first two) dish requests are bugged***
-After exploring the hallways to what I believe is completion, an error is thrown the next time you try to explore them. My guess is something is going wrong with displaying the “you’ve met everyone here” that works fine in the gardens.
*I figured this out because I purposely stopped feeding multiple meals in one sitting. I have no proof that there’s an issue with multiple dish feedings, but the queen always seems to have the same reaction to subsequent meals, and the formatting is a bit wonky, so my programmer spidey senses started tingling and I was worried that I was missing content/not progressing properly with multiple meal feeding sessions. Returning to the throne room in the same day doesn’t have this (unproven) issue.
**I found this by trying to make multiples of one dish at once, the second time I tried to cook it said I lacked the ingredients, I checked inventory and the duplicate ingredients were gone.
***When you go to feed Morgana her requested dish, she acts as if you don’t have it. I cooked multiples of the french chocolate dish she wanted and still no luck. Strangely, I fed it to Eva, who ate it normally, and the next time I visited Morgana she was fatter and allowed me to feed her other dishes again. The flowers request worked fine but now I’m stuck on the “mouth of the queen” dish request. Same as last time, when I go to feed Morgana I act as if I don’t have the dish. Sadly the strange workaround from the chocolat request doesn’t work, as Eva doesn’t eat this dish. Aurelia does, but feeding it to her did not update Morgana’s quest. I’m actively searching through the HTML to see if I can figure this one out code-wise, because I’d love to continue this storyline.
EDIT: I think I’ve got the mouth of the queen dish bug, in the code it checks for an “a” instead of a “de” in the dishes name (see line 1170).
EDIT EDIT: Something’s up with the dress quest afterwards. It keeps resetting to the mouth of the queen quest after seeing Morgana in her bedroom.
EDIT EDIT EDIT: I’ve been diving into the code and fixing bugs. There’s so much to this game and it’s a shame well-done bits are barred behind bugs. Here’s a list of bugs/suggested corrections and the lines they reside on in the HTML code:
Line 882 queen is mispelled in the flag HaveQueenDress, missing an e.
Line 1206 double close parenthesis is misplaced, should be after removing lasagna from cooked, not after incrementing MorganaStage, causes error on feeding lasagna
Line 1228 accidentally increments MorganaStage instead of EvaStage, this is likely why feeding Eva the chocolate that Morgana wanted got me passed Morgana not realizing I had the chocolate earlier.
Line 1272 missing an EvaStage increment
Line 1310 double close parenthesis is misplaced, should be after removing mochi from cooked, not after incrementing EvaStage, causes error on feeding mochi, similar to bug with Morgana’s final quest on line 1206 above.