v0.9.3: further adjustments to talent icons

This commit is contained in:
Evan Debenham 2021-06-05 20:11:42 -04:00
parent a3f449815a
commit 332ab2a6fb
2 changed files with 4 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -122,8 +122,10 @@ public class SpectralBlades extends ArmorAbility {
}
};
((MissileSprite)hero.sprite.parent.recycle( MissileSprite.class )).
reset( hero.sprite, ch.pos, proto, callback );
MissileSprite m = ((MissileSprite)hero.sprite.parent.recycle( MissileSprite.class ));
m.reset( hero.sprite, ch.pos, proto, callback );
m.hardlight(0.6f, 1f, 1f);
m.alpha(0.8f);
callbacks.add( callback );
}