Commit 3aa11fb907d4b3c50ab149284bb8babb94e11235
1 parent
c3d5fe54
字段类型
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/models/Role.lua
... | ... | @@ -42,11 +42,11 @@ Role.schema = { |
42 | 42 | bagLimit = {"table", globalCsv.store_limit_max}, |
43 | 43 | |
44 | 44 | --冒险相关 |
45 | - advPass = {"string", {}}, -- 通关记录 {chapterId = layer} | |
45 | + advPass = {"table", {}}, -- 通关记录 {chapterId = layer} | |
46 | 46 | advItems = {"string", ""}, -- 冒险临时背包 |
47 | 47 | advInfo = {"table", {}}, -- 冒险关卡信息 |
48 | 48 | advTeam = {"table", {}}, -- 冒险玩家队伍信息 |
49 | - advHang = {"table", {}}, -- 挂机信息 -- {chapterId = info} | |
49 | + advHang = {"table", {}}, -- 挂机信息 -- {chapterId = {format = teaminfo, time = endtime}} | |
50 | 50 | advTask = {"table", {l = {}, m = {}}}, -- 冒险已领取任务完成状态 -- l 层级任务, m 主线任务 {id = status} |
51 | 51 | advMTask = {"table", {}}, -- 冒险主线已经完成的任务[数组] --为了节省空间 服务器使用 |
52 | 52 | advAchiev = {"table", {}}, -- 冒险成就 {chapterId = {achievId = status}} | ... | ... |