Item bridge fixes

This commit is contained in:
Anuken
2019-11-21 20:50:15 -05:00
parent 31c294e972
commit 18b6c37a89

View File

@ -175,7 +175,7 @@ public class ItemBridge extends Block{
while(it.hasNext){
int i = it.next();
Tile other = world.tile(i);
if(!linkValid(tile, other, false)){
if(!linkValid(tile, other, false) || other.<ItemBridgeEntity>entity().link != tile.pos()){
it.remove();
}
}