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

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

View File

@ -873,14 +873,35 @@ func (player *Player) FixDecorate() {
items = append(items, item.NewItem(101450, 1)) 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 := player.PlayMod.getMailMod()
MailMod.SendMail(&mail.MailStruct{ MailMod.SendMail(&mail.MailStruct{
Title: "房间装饰升级奖励", Title: title,
Content: "恭喜您成功升级房间装饰,获得以下奖励!", Content: content,
TitleEn: "Room Decoration Upgrade Reward", TitleEn: title,
ContentEn: "Congratulations on successfully upgrading your room decoration and receiving the following rewards!", ContentEn: content,
Items: items, TitlePtBr: title_ptbr,
Type: mail.MAIL_TYPE_NORMAL, ContentPtBr: content_ptbr,
Items: items,
Type: mail.MAIL_TYPE_NORMAL,
}) })
DecorateMod.AreaId = area_id + 1 DecorateMod.AreaId = area_id + 1
DecorateMod.FinishList = make(map[int]struct{}) DecorateMod.FinishList = make(map[int]struct{})