diff --git a/game/modules/tome/class/interface/PlayerDumpJSON.lua b/game/modules/tome/class/interface/PlayerDumpJSON.lua
index cabdfc52b2f652134f32050764908eee0cd10a6b..420aba1c2d6586f3b918f9990b0e77779aca3253 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
 
 	-------------------------------------------------------------------