装饰步骤改版优化-邮件文本

This commit is contained in:
hahwu 2026-01-16 12:29:42 +08:00
parent 1ce0f639ce
commit deb90ba749

View File

@ -873,12 +873,33 @@ func (player *Player) FixDecorate() {
items = append(items, item.NewItem(101450, 1))
}
}
title := "Game Update & Thank-You Gift"
content := `Hi there!
Thanks so much for your continued support!
We've made a few updates to the gameand as a small thank-you, we've prepared a special gift for you.
Happy merging!
Meowment Team`
title_ptbr := "Atualização do Jogo e Presente de Agradecimento"
content_ptbr := `Olá!
Muito obrigado pelo seu apoio contínuo!
Fizemos algumas atualizações no jogo e como forma de agradecimento, preparamos um presente especial para você.
Boa diversão nas combinações!
Equipe Meowment `
MailMod := player.PlayMod.getMailMod()
MailMod.SendMail(&mail.MailStruct{
Title: "房间装饰升级奖励",
Content: "恭喜您成功升级房间装饰,获得以下奖励!",
TitleEn: "Room Decoration Upgrade Reward",
ContentEn: "Congratulations on successfully upgrading your room decoration and receiving the following rewards!",
Title: title,
Content: content,
TitleEn: title,
ContentEn: content,
TitlePtBr: title_ptbr,
ContentPtBr: content_ptbr,
Items: items,
Type: mail.MAIL_TYPE_NORMAL,
})