diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java index 211577192..c23ed2502 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Combo.java @@ -140,7 +140,7 @@ public class Combo extends Buff implements ActionIndicator.Action { public Image getIcon() { Image icon; if (((Hero)target).belongings.weapon != null){ - icon = new ItemSprite(Dungeon.hero.belongings.weapon); + icon = new ItemSprite(Dungeon.hero.belongings.weapon.image, null); } else { icon = new ItemSprite(new Item(){ {image = ItemSpriteSheet.WEAPON; }}); }