diff --git a/bot.go b/bot.go index 38d5e2a..65a9dff 100644 --- a/bot.go +++ b/bot.go @@ -894,7 +894,7 @@ func botCraftItem(m *ChatWarsMessage, r *regexp.Regexp) { func botUserConfig(m *ChatWarsMessage) { clt, _ := getLockedClient(m.TGUserID64, false) clt.Mux.Unlock() - out := fmt.Sprintf("Config:\n") + out := fmt.Sprintf("Config for %s (running build %s):\n", clt.Login, clt.Version) if clt.Config.InterceptPillage { out = fmt.Sprintf("%s Pillage : ON (set off)\n", out) } else { @@ -905,6 +905,7 @@ func botUserConfig(m *ChatWarsMessage) { Text: out, FromMsgID64: m.ID64, FromChatID64: m.ChatID64, + ParseMode: cmdParseModeHTML, } TGCmdQueue <- c return