v0.9.0: fixed champion VFX appearing on top of spinners
This commit is contained in:
parent
f2e56172d8
commit
e45d05e027
|
@ -61,7 +61,12 @@ public class SpinnerSprite extends MobSprite {
|
||||||
@Override
|
@Override
|
||||||
public void link(Char ch) {
|
public void link(Char ch) {
|
||||||
super.link(ch);
|
super.link(ch);
|
||||||
if (parent != null) parent.sendToBack(this);
|
if (parent != null) {
|
||||||
|
parent.sendToBack(this);
|
||||||
|
if (aura != null){
|
||||||
|
parent.sendToBack(aura);
|
||||||
|
}
|
||||||
|
}
|
||||||
renderShadow = false;
|
renderShadow = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user