This commit is contained in:
Anuken
2019-09-08 23:33:21 -04:00
3 changed files with 6 additions and 2 deletions

View File

@@ -189,6 +189,11 @@ public class Maps{
createNewPreview(map, e -> {
maps.remove(map);
try{
map.file.delete();
}catch(Throwable ignored){
}
error[0] = e;
});

View File

@@ -61,7 +61,7 @@ public class Router extends Block{
int counter = tile.rotation();
for(int i = 0; i < proximity.size; i++){
Tile other = proximity.get((i + counter) % proximity.size);
if(tile == from) continue;
if(other == from) continue;
if(set) tile.rotation((byte)((tile.rotation() + 1) % proximity.size));
if(other.block().acceptItem(item, other, Edges.getFacingEdge(tile, other))){
return other;