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

Mark of the Spellblaze now has a way back from level 2

git-svn-id: http://svn.net-core.org/repos/t-engine4@2287 51575b47-30f0-44d4-a5cc-537603b46e54
parent 09fc5315
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ function _M:dumpToJSON(js)
local t = self:getTalentFromId("T_"..self.inscriptions[i])
local desc = self:getTalentFullDescription(t)
local p = t.name:split(": ")
ins[#ins+1] = {[p[1]] = p[2]}
ins[#ins+1] = {[p[1]] = {val=p[2], tooltip=desc}}
end end
-------------------------------------------------------------------
......
......@@ -27,8 +27,8 @@ subGenerator{
noise = "fbm_perlin",
floor = {"BURNT_GROUND1","BURNT_GROUND2","BURNT_GROUND3","BURNT_GROUND4",},
wall = {"BURNT_TREE1","BURNT_TREE2","BURNT_TREE3","BURNT_TREE4","BURNT_TREE5","BURNT_TREE6","BURNT_TREE7","BURNT_TREE8","BURNT_TREE9","BURNT_TREE10","BURNT_TREE11","BURNT_TREE12","BURNT_TREE13","BURNT_TREE14","BURNT_TREE15","BURNT_TREE16","BURNT_TREE17","BURNT_TREE18","BURNT_TREE19","BURNT_TREE20",},
up = "BURNT_UP",
down = "BURNT_DOWN",
up = "BURNT_UP4",
down = "BURNT_DOWN6",
},
define_up = true,
}
......
......@@ -394,7 +394,7 @@ function _M:learnType(tt, v)
self:simplePopup("Impossible", "You can only improve a category mastery once!")
return
end
if self.actor.unused_talents_types == 0 then
if self.actor.unused_talents_types <= 0 then
self:simplePopup("Not enough talent category points", "You have no category points left!")
return
end
......
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