Skip to content
Snippets Groups Projects
Commit 87db2cfd authored by Lisa Greene's avatar Lisa Greene
Browse files

Fix marauder, archer, and skirmisher not being taught poisons when siding with...

Fix marauder, archer, and skirmisher not being taught poisons when siding with assassin lord for the first time to unlock the category on an account
parent 01e2668f
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -29,6 +29,11 @@ local function evil(npc, player)
p:learnTalentType("cunning/poisons", true)
p:setTalentTypeMastery("cunning/poisons", 1.3)
end
elseif p.descriptor.subclass == "Marauder" or p.descriptor.subclass == "Archer" or p.descriptor.subclass == "Skirmisher" then
if p:knowTalentType("cunning/poisons") == nil then
p:learnTalentType("cunning/poisons", false)
if p.descriptor.subclass == "Skirmisher" then p:setTalentTypeMastery("cunning/poisons", 1.3) end
end
end
if p:knowTalentType("cunning/trapping") then
game.log("#LIGHT_GREEN#You and the Lord discuss your new relationship at some length, including the merits of assassination by proxy and some additional trapping techniques.")
......
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