Merge pull request #448 from YukkuriC/fix-link-update

Fix link update #447
This commit is contained in:
simibubi 2020-10-20 12:43:39 +02:00 committed by GitHub
commit ac8879a008
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -110,6 +110,12 @@ public class RedstoneLinkNetworkHandler {
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();) {
LinkBehaviour other = iterator.next();
if (other.tileEntity.isRemoved()) {