Skip to content
Snippets Groups Projects
Commit b7d03b58 authored by dg's avatar dg
Browse files

meh

git-svn-id: http://svn.net-core.org/repos/t-engine4@4936 51575b47-30f0-44d4-a5cc-537603b46e54
parent 6f171319
Loading
......@@ -237,9 +237,9 @@ function _M:generateList()
-- Find all talents of this school
for j, t in pairs(self.actor.talents_def) do
if self.actor:knowTalent(t.id) and not t.hide then
if self.actor:knowTalent(t.id) and not (t.hide and t.mode == "passive") then
local typename = "talent"
local nodes = (t.mode == "sustained" and sustains) or (t.mode =="passives" and passives) or actives
local nodes = (t.mode == "sustained" and sustains) or (t.mode =="passive" and passives) or actives
local status = tstring{{"color", "LIGHT_GREEN"}, "Active"}
if self.actor:isTalentCoolingDown(t) then
nodes = cooldowns
......
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