From 25f2b0fc358d280aec5366c1609433b56ee42f16 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 21 Sep 2025 20:48:34 -0500 Subject: [PATCH] make it actually work --- questionUser.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/questionUser.go b/questionUser.go index 3bba4ae..c212334 100644 --- a/questionUser.go +++ b/questionUser.go @@ -24,6 +24,10 @@ func QuestionUser(msg string) bool { case "n": return false default: + if strings.HasPrefix(line, "y") { + return true + } + return false } } return false