[SVN] Silent Blade breaks stealth
Posted: Wed May 25, 2011 1:24 am
After attacking was made a talent Silent Blade no longer works as advertised. The fix is to make T_ATTACK not break stealth and let attackTarget handle that (as it used to).
Code: Select all
diff --git a/game/modules/tome/data/talents/misc/misc.lua b/game/modules/tome/data/talents/misc/misc.lua
index 6100ac5..8e2d31e 100644
--- a/game/modules/tome/data/talents/misc/misc.lua
+++ b/game/modules/tome/data/talents/misc/misc.lua
@@ -34,6 +34,7 @@ newTalent{
name = "Attack",
type = {"base/class", 1},
no_energy = "fake",
+ no_break_stealth = true, -- stealth is broken in attackTarget
hide = true,
innate = true,
points = 1,