Skip to content
Snippets Groups Projects
Commit 3edf1cee authored by Chris Davidson's avatar Chris Davidson
Browse files

Fix Fan of Knives potentially hitting a target more than 5 times

parent f0f2ed60
No related branches found
No related tags found
1 merge request!5891.6.1 misc
......@@ -72,6 +72,9 @@ local function throw(self, range, dam, x, y, dtype, special, fok)
local proj = self:projectile(tg, x, y, function(px, py, tg, self)
local target = game.level.map(px, py, engine.Map.ACTOR)
if target and target ~= self then
local hits = table.get(target.turn_procs, "hit_by_throwing_knife") or 0
if hits and hits >= 5 then return end
table.set(target.turn_procs, "hit_by_throwing_knife", hits + 1)
local t = self:getTalentFromId(self.T_THROWING_KNIVES)
local t2 = self:getTalentFromId(self.T_PRECISE_AIM)
local combat = t.getKnives(self, t)
......
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