From 642901dbe31e1557b6df165882c62d0e1041286e Mon Sep 17 00:00:00 2001
From: Hachem_Muche <Hachem_Muche@stanfordalumni.org>
Date: Fri, 13 Jan 2017 11:55:21 -0800
Subject: [PATCH] Fix Stoning Poison bug

---
 game/modules/tome/data/talents/cunning/poisons.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/game/modules/tome/data/talents/cunning/poisons.lua b/game/modules/tome/data/talents/cunning/poisons.lua
index 8582600ca7..14c1f92703 100644
--- a/game/modules/tome/data/talents/cunning/poisons.lua
+++ b/game/modules/tome/data/talents/cunning/poisons.lua
@@ -468,10 +468,10 @@ newTalent{
 	stoneTime = function(self, t) return math.ceil(self:combatTalentLimit(self:getTalentLevel(self.T_VILE_POISONS), 1, 10, 5.6)) end, -- Time to stone target, always > 1 turn
 	getEffect = function(self, t) return math.floor(self:combatTalentScale(self:getTalentLevel(self.T_VILE_POISONS), 3, 4)) end,
 	on_learn = function(self, t)
-		self.__show_special_talents[t.id] = true
+		table.set(self, "__show_special_talents", t.id, true)
 	end,
 	on_unlearn = function(self, t)
-		self.__show_special_talents[t.id] = false
+		table.set(self, "__show_special_talents", t.id, false)
 	end,
 	proc = function(self, t, target, weapon) -- apply when applying other poisons with the Apply Poison talent
 		local dam = t.getDOT(self, t)
-- 
GitLab