Added sorter cross (#1566)

This commit is contained in:
Anuken
2020-03-26 17:39:23 -04:00
parent 152a987c3a
commit 0573160b2f
13 changed files with 635 additions and 614 deletions

View File

@@ -69,11 +69,15 @@ public class Sorter extends Block{
public void draw(){
super.draw();
if(sortItem == null) return;
if(sortItem == null){
Draw.rect("cross", x, y);
}else{
Draw.color(sortItem.color);
Draw.rect("center", x, y);
Draw.color();
}
Draw.color(sortItem.color);
Draw.rect("center", x, y);
Draw.color();
}
@Override