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

lol at the DLC file ;)

Using a Moss talent will correctly put other Moss talents on cooldown even if they were at 1 or 2 CD already



git-svn-id: http://svn.net-core.org/repos/t-engine4@6565 51575b47-30f0-44d4-a5cc-537603b46e54
parent d5faa24b
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@
local function activate_moss(self, btid)
for tid, lev in pairs(self.talents) do
if tid ~= btid and self.talents_def[tid].type[1] == "wild-gift/moss" and not self.talents_cd[tid] then
if tid ~= btid and self.talents_def[tid].type[1] == "wild-gift/moss" and (not self.talents_cd[tid] or self.talents_cd[tid] < 3) then
self.talents_cd[tid] = 3
end
end
......
No preview for this file type
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