Feat: clear marks after end of the turn

This commit is contained in:
Grail Finder
2025-06-29 09:40:21 +03:00
parent 5b666e042a
commit 849fcba974
4 changed files with 19 additions and 5 deletions

View File

@ -193,7 +193,7 @@ func (b *Bot) BotMove() {
case models.UserRoleMime:
mimeResp := MimeResp{}
b.log.Info("mime resp log", "mimeResp", tempMap)
mimeResp.Clue = tempMap["clue"].(string)
mimeResp.Clue = strings.ToLower(tempMap["clue"].(string))
mimeResp.Number = tempMap["number"].(string)
action := models.Action{
Actor: b.BotName,