diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/KindOfWeapon.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/KindOfWeapon.java index 6fc553b20..8cbb118e4 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/KindOfWeapon.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/KindOfWeapon.java @@ -159,7 +159,7 @@ abstract public class KindOfWeapon extends EquipableItem { if (hero.hasTalent(Talent.SWIFT_EQUIP)) { if (hero.buff(Talent.SwiftEquipCooldown.class) == null){ hero.spendAndNext(-hero.cooldown()); - Buff.affect(hero, Talent.SwiftEquipCooldown.class, 49f) + Buff.affect(hero, Talent.SwiftEquipCooldown.class, 29f) .secondUse = hero.pointsInTalent(Talent.SWIFT_EQUIP) == 2; GLog.i(Messages.get(this, "swift_equip")); } else if (hero.buff(Talent.SwiftEquipCooldown.class).hasSecondUse()) {