diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/MissileSprite.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/MissileSprite.java index 00c84afe2..e118b85a0 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/MissileSprite.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/MissileSprite.java @@ -151,7 +151,9 @@ public class MissileSprite extends ItemSprite implements Tweener.Listener { } float speed = SPEED; - if (item instanceof Dart && Dungeon.hero.belongings.weapon() instanceof Crossbow){ + if (item instanceof Dart + && (Dungeon.hero.belongings.weapon() instanceof Crossbow + || Dungeon.hero.belongings.secondWep() instanceof Crossbow)){ speed *= 3f; } else if (item instanceof SpiritBow.SpiritArrow