From 616a254c31399733240584fb9c56598106b6138a Mon Sep 17 00:00:00 2001 From: Lenheart <947330670@qq.com> Date: Wed, 18 Feb 2026 21:11:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=AA=89=E5=90=8D=E5=BD=95BU?= =?UTF-8?q?G?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _DPS_/_BuiltProject/誉名录/誉名录.nut | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_DPS_/_BuiltProject/誉名录/誉名录.nut b/_DPS_/_BuiltProject/誉名录/誉名录.nut index b7a9fd9..85c2c2c 100644 --- a/_DPS_/_BuiltProject/誉名录/誉名录.nut +++ b/_DPS_/_BuiltProject/誉名录/誉名录.nut @@ -89,6 +89,7 @@ class NewTitleC { ClientSocketPackFuncMap.rawset(21012001, function(SUser, Jso) { local SendInfo = {}; local Cid = SUser.GetCID().tostring(); + print(data.rawin(Cid)) if (data.rawin(Cid)) { SendInfo = data.rawget(Cid); } @@ -180,9 +181,9 @@ class NewTitleC { local Sql = "SELECT * FROM newtitle" local Ret = MysqlObject.Select(Sql, ["int", "string"]); foreach(Row in Ret) { - local uid = Row[0]; + local cid = Row[0]; local jso = Json.Decode(Row[1]); - data.rawset(uid, jso); + data.rawset(cid.tostring(), jso); } }