Skip to content

Commit 19635cc

Browse files
Fix goal requirement grammar
1 parent c5bf4d8 commit 19635cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TrackerCouncil.Smz3.Tracking/VoiceCommands/GoalModule.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ private GrammarBuilder GetGanonsCrystalCountRule()
4848
{
4949
return new GrammarBuilder()
5050
.Append("Hey tracker,")
51-
.OneOf("Ganon's Tower", "G T")
51+
.OneOf("Ganon", "Ganondorf")
5252
.OneOf("requires", "needs")
5353
.Append(ItemCountKey, GetNumberChoices(0, 7))
5454
.OneOf("crystals", "crystal")
@@ -60,7 +60,7 @@ private GrammarBuilder GetTourianBossCountRule()
6060
{
6161
return new GrammarBuilder()
6262
.Append("Hey tracker,")
63-
.OneOf("tourian", "statue room", "metroid statue room")
63+
.OneOf("tourian", "the statue room", "the metroid statue room", "the golden statue room")
6464
.OneOf("requires", "needs")
6565
.Append(ItemCountKey, GetNumberChoices(0, 4))
6666
.OneOf("bosses", "boss tokens");

0 commit comments

Comments
 (0)