Cleanup 2

This commit is contained in:
Anuken 2025-02-08 21:28:02 -05:00
parent 5bb0951422
commit a77f64f2d0

View File

@ -130,12 +130,6 @@ public class LandingPad extends Block{
public @Nullable Item arriving;
public float liquidRemoved;
@Override
public void drawSelect(){
super.drawSelect();
drawItemSelection(config);
}
public void handleLanding(){
if(config == null) return;
@ -348,6 +342,8 @@ public class LandingPad extends Block{
@Override
public void drawSelect(){
if(config != null){
drawItemSelection(config);
float dx = x - size * tilesize/2f, dy = y + size * tilesize/2f, s = iconSmall / 4f;
Draw.mixcol(Color.darkGray, 1f);
Draw.rect(config.fullIcon, dx, dy - 1, s, s);