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

...

                                                                                                                                                    fix


git-svn-id: http://svn.net-core.org/repos/t-engine4@6537 51575b47-30f0-44d4-a5cc-537603b46e54
parent d0692fb5
No related branches found
No related tags found
No related merge requests found
......@@ -714,6 +714,16 @@ function _M:checkEntity(x, y, pos, what, ...)
end
end
--- See all grids
function _M:seeAll(x, y, w, h, v)
if v == nil then v = true end
for i = x, x + w - 1 do for j = y, y + h - 1 do
self.seens[i + j * self.w] = v or 1
self.has_seens[i + j * self.w] = true
self._map:setSeen(i, j, 1)
end end
end
--- Lite all grids
function _M:liteAll(x, y, w, h, v)
if v == nil then v = true end
......
......@@ -115,7 +115,7 @@ uberTalent{
Any mind damage you do has a 20%% chance to confuse (20%%) the target for 5 turns.
This only triggers for hits over 150 damage.
Values increase with your Cunning.]])
:format(self:getCun() / 2.5, self:getCun() / 2, self:getCun() / 2.5, self:getCun() / 2)
:format(self:getCun() / 2.5, self:getCun() / 2, self:getCun() / 2.5, self:getCun() / 3)
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