Skip to content

Commit

Permalink
Fix Cover Transfers Between Non-Tickable and Tickable Pipes (#2619)
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegerLimit authored Oct 21, 2024
1 parent 63518f9 commit 067d32f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void transferDataFrom(IPipeTile<PipeType, NodeDataType> tileEntity) {
if (tileEntity instanceof SyncedTileEntityBase pipeBase) {
addPacketsFrom(pipeBase);
}
coverableImplementation.transferDataTo(tileEntity.getCoverableImplementation());
tileEntity.getCoverableImplementation().transferDataTo(coverableImplementation);
setFrameMaterial(tileEntity.getFrameMaterial());
}

Expand Down

0 comments on commit 067d32f

Please sign in to comment.