Skip to content
Snippets Groups Projects
Commit 4b6dc138 authored by DarkGod's avatar DarkGod
Browse files

Fixed Rak'Shor Cultist, again

parent 19d5b850
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ newTalent{
local radius = self:getTalentRadius(t)
local radius_esp = t.radius_esp(self, t)
return ([[Using your connection to Nature, you can see your surrounding area in a radius of %d.
Also, while meditating, you are able to detect the presence of creatures around your in a radius of %d.]]):
Also, while meditating, you are able to detect the presence of creatures around you in a radius of %d.]]):
format(radius, radius_esp)
end,
}
......
......@@ -74,7 +74,7 @@ newEntity{ base="BASE_NPC_ORC_RAK_SHOR", define_as = "CULTIST_RAK_SHOR",
local p = self.sustain_talents[self.T_BONE_SHIELD]
-- When the bone shield is taken down, copy the player
if (not p or #p.particles <= 0) and not self.copied_player then
if (not p or p.nb <= 0) and not self.copied_player then
local a = mod.class.NPC.new{}
a:replaceWith(game.player:resolveSource():cloneFull())
mod.class.NPC.castAs(a)
......
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