Skip to content
Snippets Groups Projects
Commit 401650ee authored by Chris Davidson's avatar Chris Davidson
Browse files

Fix Cyst Burst improperly copying diseases

parent 7d619f8f
No related branches found
No related tags found
1 merge request!498Fix Cyst Burst improperly copying diseases
......@@ -156,6 +156,7 @@ newTalent{
local parameters = table.clone(disease.params, true)
parameters.src = self
parameters.apply_power = self:combatSpellpower()
parameters.__tmpvals = nil
target:setEffect(disease.id, 6, parameters)
end
end)
......@@ -279,6 +280,7 @@ newTalent{
local disease = rng.table(diseases)
local params = table.clone(disease.params, true)
params.__tmpvals = nil
params.src = self
if target:canBe("disease") then
target:setEffect(disease.id, 6, params)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment