v0.9.0: fixed champion VFX appearing on top of spinners

This commit is contained in:
Evan Debenham 2020-09-30 18:29:51 -04:00
parent f2e56172d8
commit e45d05e027

View File

@ -61,7 +61,12 @@ public class SpinnerSprite extends MobSprite {
@Override
public void link(Char ch) {
super.link(ch);
if (parent != null) parent.sendToBack(this);
if (parent != null) {
parent.sendToBack(this);
if (aura != null){
parent.sendToBack(aura);
}
}
renderShadow = false;
}