From deb90ba749cebf3af2cb977da2b8e3fc288be5fd Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Fri, 16 Jan 2026 12:29:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A3=85=E9=A5=B0=E6=AD=A5=E9=AA=A4=E6=94=B9?= =?UTF-8?q?=E7=89=88=E4=BC=98=E5=8C=96-=E9=82=AE=E4=BB=B6=E6=96=87?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/server/game/message_handler.go | 33 ++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/src/server/game/message_handler.go b/src/server/game/message_handler.go index abbea871..c763f57f 100644 --- a/src/server/game/message_handler.go +++ b/src/server/game/message_handler.go @@ -873,14 +873,35 @@ 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 game—and 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!", - Items: items, - Type: mail.MAIL_TYPE_NORMAL, + Title: title, + Content: content, + TitleEn: title, + ContentEn: content, + TitlePtBr: title_ptbr, + ContentPtBr: content_ptbr, + Items: items, + Type: mail.MAIL_TYPE_NORMAL, }) DecorateMod.AreaId = area_id + 1 DecorateMod.FinishList = make(map[int]struct{})