From 9414cc0e3dc351e832141e47ce04af385c692453 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Fri, 21 Dec 2012 09:22:58 +0000
Subject: [PATCH] fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@6171 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/data/talents/psionic/focus.lua | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/game/modules/tome/data/talents/psionic/focus.lua b/game/modules/tome/data/talents/psionic/focus.lua
index 6c46e6d8ea..3e245b7f96 100644
--- a/game/modules/tome/data/talents/psionic/focus.lua
+++ b/game/modules/tome/data/talents/psionic/focus.lua
@@ -41,13 +41,13 @@ newTalent{
 			local c =  self:getTalentFromId(self.T_CONDUIT)
 			local auras = self:isTalentActive(c.id)
 			if auras.k_aura_on then
-				val[PHYSICAL] = val[PHYSICAL] + 1
+				val.PHYSICAL = val.PHYSICAL + 1
 			end
 			if auras.t_aura_on then
-				val[FIRE] = 1
+				val.FIRE = 1
 			end
 			if auras.c_aura_on then
-				val[LIGHTNING] = 1
+				val.LIGHTNING = 1
 			end
 			return val
 		end
-- 
GitLab