Skip to content

Commit c44fa2e

Browse files
committed
Fix attack/cast speed after MS change
1 parent 46db840 commit c44fa2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Modules/CalcPerform.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,8 @@ local function doActorMisc(env, actor)
422422
else
423423
effect = m_floor(10 * (1 + onslaughtEffectInc))
424424
end
425-
modDB:NewMod("Speed", "INC", effect, "Onslaught", ModFlag.Attack)
426-
modDB:NewMod("Speed", "INC", effect, "Onslaught", ModFlag.Cast)
425+
modDB:NewMod("Speed", "INC", 2 * effect, "Onslaught", ModFlag.Attack)
426+
modDB:NewMod("Speed", "INC", 2 * effect, "Onslaught", ModFlag.Cast)
427427
-- TODO: Needs to add other INC speed like Warcry Speed, or proper Skill Speed mod needs to be created
428428
modDB:NewMod("MovementSpeed", "INC", effect, "Onslaught")
429429
end

0 commit comments

Comments
 (0)