fix one-to-one loading order problem
This commit is contained in:
parent
bb21a5f96d
commit
25fd5a5aa2
1 changed files with 6 additions and 0 deletions
|
@ -110,6 +110,12 @@ public class RedstoneLinkNetworkHandler {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fix one-to-one loading order problem
|
||||||
|
if(actor.isListening()){
|
||||||
|
actor.newPosition = true;
|
||||||
|
actor.updateReceiver(power);
|
||||||
|
}
|
||||||
|
|
||||||
for (Iterator<LinkBehaviour> iterator = network.iterator(); iterator.hasNext();) {
|
for (Iterator<LinkBehaviour> iterator = network.iterator(); iterator.hasNext();) {
|
||||||
LinkBehaviour other = iterator.next();
|
LinkBehaviour other = iterator.next();
|
||||||
if (other.tileEntity.isRemoved()) {
|
if (other.tileEntity.isRemoved()) {
|
||||||
|
|
Loading…
Reference in a new issue