From 87db2cfd73060860a6992195c38ab6b99a8926a0 Mon Sep 17 00:00:00 2001 From: Bunny <glisa825@gmail.com> Date: Sun, 31 May 2020 22:03:26 -0400 Subject: [PATCH] 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 --- game/modules/tome/data/chats/assassin-lord.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/game/modules/tome/data/chats/assassin-lord.lua b/game/modules/tome/data/chats/assassin-lord.lua index da45ffc549..7020e6637b 100644 --- a/game/modules/tome/data/chats/assassin-lord.lua +++ b/game/modules/tome/data/chats/assassin-lord.lua @@ -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.") -- GitLab