mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-08 19:12:14 +01:00
Merge pull request #448 from YukkuriC/fix-link-update
Fix link update #447
This commit is contained in:
commit
ac8879a008
1 changed files with 6 additions and 0 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Reference in a new issue