Skip to content
Snippets Groups Projects
Commit 02015f4e authored by DarkGod's avatar DarkGod
Browse files

fix beyond the flesh

parent 2027896b
No related branches found
No related tags found
No related merge requests found
...@@ -239,14 +239,13 @@ newTalent{ ...@@ -239,14 +239,13 @@ newTalent{
local tkweapon = self:getInven("PSIONIC_FOCUS")[1] local tkweapon = self:getInven("PSIONIC_FOCUS")[1]
if type(tkweapon) == "boolean" then tkweapon = nil end if type(tkweapon) == "boolean" then tkweapon = nil end
if not tkweapon or (tkweapon.type ~= "weapon" and tkweapon.type ~= "gem") then if not tkweapon or (tkweapon.type ~= "weapon" and tkweapon.type ~= "gem") then
-- game.logPlayer(self, "You cannot do that without a telekinetically-wielded melee weapon.")
return false return false
end end
return true return true
end, end,
activate = function (self, t) activate = function (self, t)
local tk = self:getInven("PSIONIC_FOCUS")[1] local tk = self:getInven("PSIONIC_FOCUS")[1]
if not tk then return false end
local ret = {} local ret = {}
if tk.type == "gem" then if tk.type == "gem" then
......
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