[b43] +1 Rampage duration on crit not checking Brutality

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
Dwindlehop
Halfling
Posts: 98
Joined: Tue Sep 18, 2012 10:25 pm

[b43] +1 Rampage duration on crit not checking Brutality

#1 Post by Dwindlehop »

From Combat.lua

Code: Select all

	-- Rampage
	if hitted and crit then
		local eff = self:hasEffect(self.EFF_RAMPAGE)
		if eff and not eff.critHit and eff.actualDuration < eff.maxDuration then
			game.logPlayer(self, "#F53CBE#Your rampage is invigorated by your fierce attack! (+1 duration)")
			eff.critHit = true
			eff.actualDuration = eff.actualDuration + 1
			eff.dur = eff.dur + 1
		end
	end
Either add a check for Brutality or move the effect into the Rampage talent.

darkgod
Master of Eyal
Posts: 10751
Joined: Wed Jul 24, 2002 9:26 pm
Location: Angolwen
Contact:

Re: [b43] +1 Rampage duration on crit not checking Brutality

#2 Post by darkgod »

fixed
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning ;)

Post Reply