HOBBIT_LUCK bug

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
relict
Posts: 1
Joined: Wed May 26, 2010 3:15 am

HOBBIT_LUCK bug

#1 Post by relict »

in tome\data\talents\misc\misc.lua action and info definition not equal:

Code: Select all

-- Hobbit's power, temporary crit bonus
newTalent{
	short_name = "HOBBIT_LUCK",
	name = "Luck of the Little Folk",
	type = {"base/race", 1},
	cooldown = 50,
	action = function(self, t)
		self:setEffect(self.EFF_HOBBIT_LUCK, 5, {
			physical=20 + self:getCun() / 2,
			spell=20 + self:getCun() / 2,
		})
		return true
	end,
	info = function(self)
		return ([[Call upon the luck and cunning of the Little Folk to increase your physical and spell critical strike change by %d%% for 5 turns.
		The bonus will increase with the Constitution stat]]):format(10 + self:getCon() / 5, 10 + self:getCon() / 5)
	end,
} 

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

Re: HOBBIT_LUCK bug

#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