diff --git a/CHANGELOG.md b/CHANGELOG.md index d8a3d7a5..afef43f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Haste - Cooldown reduced to 1T (was 2T) - Duration increased from 2/3/4T -> 3/4/5T + - HasteStrike damage multiplier changed from 30% -> 60% - Sleep - Cooldown reduced to 2T (was 3T) @@ -50,6 +51,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Hybrid - Cooldown reduced to 1T (was 3T) - Duration increased from 2/3/4T -> 3/4/5T + - HybridBlast damage multiplier changed from 25% -> 50% - Silence - Cooldown reduced to 2T (was 3T) diff --git a/client/src/components/vbox.component.jsx b/client/src/components/vbox.component.jsx index 1727850d..c2c1a51a 100644 --- a/client/src/components/vbox.component.jsx +++ b/client/src/components/vbox.component.jsx @@ -404,12 +404,9 @@ class Vbox extends preact.Component { return true; } - const inventoryHover = vbox.bound.length > 1 || vboxSelected[0] ? false : e => hoverInfo(e, 'inventory'); - return (
e.stopPropagation()} style={vboxSelecting || (itemUnequip.length) ? { cursor: 'pointer' } : null}>
diff --git a/server/src/skill.rs b/server/src/skill.rs index 340b7185..0b37d3e2 100644 --- a/server/src/skill.rs +++ b/server/src/skill.rs @@ -830,9 +830,9 @@ impl Skill { Skill::RestrictPlusPlus => 100, // Buff base - Skill::HybridBlast => 25, + Skill::HybridBlast => 50, - Skill::HasteStrike => 30, + Skill::HasteStrike => 60, Skill::Intercept=> 80, Skill::InterceptPlus => 110,