diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java index 420807386..08e131738 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java @@ -64,7 +64,7 @@ public class Combo extends Buff implements ActionIndicator.Action { public void hit() { count++; - comboTime = 3f; + comboTime = 4f; misses = 0; if (count >= 2) { @@ -80,7 +80,7 @@ public class Combo extends Buff implements ActionIndicator.Action { public void miss(){ misses++; - comboTime = 3f; + comboTime = 4f; if (misses >= 2){ detach(); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/BrokenSeal.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/BrokenSeal.java index 3ce342afb..604200018 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/BrokenSeal.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/BrokenSeal.java @@ -89,7 +89,7 @@ public class BrokenSeal extends Item { if (armor == null) detach(); else if (armor.isEquipped((Hero)target)) { if (target.SHLD < maxShield()){ - partialShield += 1/(30*Math.pow(0.9f, (maxShield() - target.SHLD))); + partialShield += 1/(30*Math.pow(0.9f, (maxShield() - target.SHLD - 1))); } } while (partialShield >= 1){