From 0eed8100a91a3f5d7173dc3102703472b3a35638 Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Fri, 30 Nov 2012 09:43:55 +0000 Subject: [PATCH] Fixed inscriptions in online chardumps git-svn-id: http://svn.net-core.org/repos/t-engine4@5865 51575b47-30f0-44d4-a5cc-537603b46e54 --- game/modules/tome/class/interface/PlayerDumpJSON.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/game/modules/tome/class/interface/PlayerDumpJSON.lua b/game/modules/tome/class/interface/PlayerDumpJSON.lua index cabdfc52b2..420aba1c2d 100644 --- a/game/modules/tome/class/interface/PlayerDumpJSON.lua +++ b/game/modules/tome/class/interface/PlayerDumpJSON.lua @@ -106,12 +106,12 @@ function _M:dumpToJSON(js, bypass, nosub) -- Inscriptions ------------------------------------------------------------------- local ins = js:newSection("inscriptions", {used=("%d/%d"):format(nb_inscriptions, self.max_inscriptions)}) + ins.all = {} + ins = ins.all for i = 1, self.max_inscriptions do if self.inscriptions[i] then local t = self:getTalentFromId("T_"..self.inscriptions[i]) local desc = tostring(self:getTalentFullDescription(t)) - local p = t.name:split(": ") - ins[p[1]] = ins[p[1]] or {} - ins[p[1]][p[2]] = desc + ins[#ins+1] = {name=t.name, kind=t.type[1], desc=desc} end end ------------------------------------------------------------------- -- GitLab