fixing replenish for resource counters
This commit is contained in:
parent
6becef2c79
commit
04bca4b998
@ -22,7 +22,7 @@
|
|||||||
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/949599153663401115/EAA6D40FC6E15204BBE551BCDED35CC8C75111BF/",
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/949599153663401115/EAA6D40FC6E15204BBE551BCDED35CC8C75111BF/",
|
||||||
"WidthScale": 0
|
"WidthScale": 0
|
||||||
},
|
},
|
||||||
"Description": "0",
|
"Description": "",
|
||||||
"DragSelectable": true,
|
"DragSelectable": true,
|
||||||
"GMNotes": "resourceCounter",
|
"GMNotes": "resourceCounter",
|
||||||
"GUID": "498ec0",
|
"GUID": "498ec0",
|
||||||
|
@ -297,7 +297,6 @@ do
|
|||||||
local tokenSource = getObjectFromGUID(TOKEN_SOURCE_GUID)
|
local tokenSource = getObjectFromGUID(TOKEN_SOURCE_GUID)
|
||||||
for _, tokenTemplate in ipairs(tokenSource.getData().ContainedObjects) do
|
for _, tokenTemplate in ipairs(tokenSource.getData().ContainedObjects) do
|
||||||
local tokenName = tokenTemplate.GMNotes
|
local tokenName = tokenTemplate.GMNotes
|
||||||
tokenTemplate.GMNotes = ""
|
|
||||||
tokenTemplates[tokenName] = tokenTemplate
|
tokenTemplates[tokenName] = tokenTemplate
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -424,7 +424,7 @@ function replenishTokens(card, count, replenish)
|
|||||||
if obj.getCustomObject().image == "http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/" then
|
if obj.getCustomObject().image == "http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/" then
|
||||||
foundTokens = foundTokens + math.abs(obj.getQuantity())
|
foundTokens = foundTokens + math.abs(obj.getQuantity())
|
||||||
obj.destruct()
|
obj.destruct()
|
||||||
elseif obj.getName() == "Resource Counter" then
|
elseif obj.getGMNotes() == "resourceCounter" then
|
||||||
foundTokens = obj.getVar("val")
|
foundTokens = obj.getVar("val")
|
||||||
clickableResourceCounter = obj
|
clickableResourceCounter = obj
|
||||||
break
|
break
|
||||||
|
Loading…
x
Reference in New Issue
Block a user