moved script and added handling for empty bags

This commit is contained in:
Chr1Z93 2023-10-11 19:49:27 +02:00
parent e3403538fa
commit 39c07c22d0
4 changed files with 10 additions and 6 deletions

View File

@ -49,8 +49,8 @@
"IgnoreFoW": false, "IgnoreFoW": false,
"LayoutGroupSortIndex": 0, "LayoutGroupSortIndex": 0,
"Locked": false, "Locked": false,
"LuaScript": "require(\"accessories/Subject5U-21Helper\")",
"LuaScriptState": "", "LuaScriptState": "",
"LuaScript_path": "Fan-MadeAccessories.aa8b38/Subject5U-21Helper.1335e8.ttslua",
"MeasureMovement": false, "MeasureMovement": false,
"Name": "Custom_Tile", "Name": "Custom_Tile",
"Nickname": "Subject 5U-21 Helper", "Nickname": "Subject 5U-21 Helper",

View File

@ -34,8 +34,8 @@
"IgnoreFoW": false, "IgnoreFoW": false,
"LayoutGroupSortIndex": 0, "LayoutGroupSortIndex": 0,
"Locked": false, "Locked": false,
"LuaScript": "require(\"accessories/UnderworldMarketHelper\")",
"LuaScriptState": "", "LuaScriptState": "",
"LuaScript_path": "Fan-MadeAccessories.aa8b38/UnderworldMarketHelper.3650ea.ttslua",
"MaterialIndex": -1, "MaterialIndex": -1,
"MeasureMovement": false, "MeasureMovement": false,
"MeshIndex": -1, "MeshIndex": -1,

View File

@ -91,7 +91,10 @@ function getNotesFromCardsAndContainers()
notes = JSON.decode(obj.getGMNotes()) or {} notes = JSON.decode(obj.getGMNotes()) or {}
table.insert(notesList, notes) table.insert(notesList, notes)
elseif obj.type == "Bag" or obj.type == "Deck" then elseif obj.type == "Bag" or obj.type == "Deck" then
for _, deepObj in ipairs(obj.getData().ContainedObjects) do -- check if there are actually objects contained and loop through them
local containedObjects = obj.getData().ContainedObjects
if containedObjects then
for _, deepObj in ipairs(containedObjects) do
if deepObj.Name == "Card" or deepObj.Name == "CardCustom" then if deepObj.Name == "Card" or deepObj.Name == "CardCustom" then
notes = JSON.decode(deepObj.GMNotes) or {} notes = JSON.decode(deepObj.GMNotes) or {}
table.insert(notesList, notes) table.insert(notesList, notes)
@ -99,5 +102,6 @@ function getNotesFromCardsAndContainers()
end end
end end
end end
end
return notesList return notesList
end end