From a773f58e45caa15842c8df070a9bd1f335c84259 Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Sat, 8 Feb 2025 18:10:26 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=AE=E4=BB=B6=E8=A1=A5=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/server/game/Player.go | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/server/game/Player.go b/src/server/game/Player.go index 806b0824..e515d6e0 100644 --- a/src/server/game/Player.go +++ b/src/server/game/Player.go @@ -352,18 +352,19 @@ func (p *Player) Login() { p.PlayMod.getCardMod().Login(G_GameLogicPtr.SeverInfo.OpenTime) if p.PlayerBaseMod.Data.UserName == "388faebe29ffe56666a04ea22b902b0f" { VarMod := p.PlayMod.getVarMod() - Mail1, _ := VarMod.GetVar(1) + Mail1, _ := VarMod.GetVar(2) if Mail1 != nil { return } - VarMod.SetVar(1, 1) + VarMod.SetVar(2, 1) Items := make([]*item.Item, 0) - Items = append(Items, &item.Item{Id: item.ITEM_ENERGY_ID, Num: 200}) + Items = append(Items, &item.Item{Id: item.ITEM_ENERGY_ID, Num: 500}) MailMod := p.PlayMod.getMailMod() - MailMod.Send("Test Players' Refund", - `Welcome back to our game! - Here comes your refund for your scene progress and payment in test version! - Have fun in new version!`, Items) + MailMod.Send("Game Bug Report Handling & Compensation", + `We sincerely apologize for this issue that has affected your experience. +One of our collleague will contact you soon, and we kindly ask for your cooperation with the QA process. +As a token of our appreciation, here is 500 Energy for your trouble. +Once again, we deeply regret any trouble this may have caused and thank you for your understanding and support.`, Items) } }