We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d4f7a9c + ca7634f commit 942a038Copy full SHA for 942a038
βgame/utils.goβ
@@ -161,7 +161,9 @@ func (m *AppModel) enter() tea.Cmd {
161
m.GameState = common.GameStateLost
162
}
163
164
- m.save()
+ if m.GameType != common.GameTypeRandom {
165
+ m.save()
166
+ }
167
168
return nil
169
βmain.goβ
@@ -45,7 +45,7 @@ func main() {
45
Name: "wordle-cli",
46
Usage: "play wordle in your terminal",
47
Action: startOfficial,
48
- Version: "1.0.3",
+ Version: "1.0.4",
49
Commands: []*cli.Command{
50
{
51
Name: "official",
0 commit comments