mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-06 00:49:09 +01:00
Fixed phantom connections being left behind with the Item Interface
This commit is contained in:
parent
1510927831
commit
dba6a68488
1 changed files with 29 additions and 14 deletions
|
@ -77,9 +77,9 @@ public class TileEntityItemViewer extends TileEntityInventoryBase{
|
||||||
private void queryAndSaveData(){
|
private void queryAndSaveData(){
|
||||||
if(this.connectedRelay != null){
|
if(this.connectedRelay != null){
|
||||||
Network network = ActuallyAdditionsAPI.connectionHandler.getNetworkFor(this.connectedRelay.getPos(), this.worldObj);
|
Network network = ActuallyAdditionsAPI.connectionHandler.getNetworkFor(this.connectedRelay.getPos(), this.worldObj);
|
||||||
if(network != null && (this.oldNetwork != network || this.lastNetworkChangeAmount != network.changeAmount)){
|
if(network != null){
|
||||||
this.genericInfos.clear();
|
if(this.oldNetwork != network || this.lastNetworkChangeAmount != network.changeAmount){
|
||||||
this.specificInfos.clear();
|
this.clearInfos();
|
||||||
|
|
||||||
this.connectedRelay.getItemHandlersInNetwork(network, this.genericInfos);
|
this.connectedRelay.getItemHandlersInNetwork(network, this.genericInfos);
|
||||||
if(!this.genericInfos.isEmpty()){
|
if(!this.genericInfos.isEmpty()){
|
||||||
|
@ -99,6 +99,21 @@ public class TileEntityItemViewer extends TileEntityInventoryBase{
|
||||||
this.oldNetwork = network;
|
this.oldNetwork = network;
|
||||||
this.lastNetworkChangeAmount = network.changeAmount;
|
this.lastNetworkChangeAmount = network.changeAmount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.clearInfos();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void clearInfos(){
|
||||||
|
if(!this.genericInfos.isEmpty()){
|
||||||
|
this.genericInfos.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!this.specificInfos.isEmpty()){
|
||||||
|
this.specificInfos.clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue