Functional sorting

This commit is contained in:
Anuken
2020-04-23 10:25:46 -04:00
parent 2538273402
commit 989ee895e8
3 changed files with 4 additions and 2 deletions

View File

@@ -185,6 +185,8 @@ public class BlockRenderer implements Disposable{
return;
}
requests.clear();
int minx = Math.max(avgx - rangex - expandr, 0);
int miny = Math.max(avgy - rangey - expandr, 0);
int maxx = Math.min(world.width() - 1, avgx + rangex + expandr);

View File

@@ -56,7 +56,7 @@ public class PayloadConveyor extends Block{
}
}
public class MassConveyorEntity extends TileEntity{
public class PayloadConveyorEntity extends TileEntity{
public @Nullable Payload item;
public float progress, itemRotation, animation;
public @Nullable Tilec next;