mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-13 17:28:52 -04:00
keep frequency owner
This commit is contained in:
parent
2d3d95fadb
commit
c7ec8b971c
@ -74,7 +74,12 @@ public final class DriverFrequencyOwner extends DriverSidedTileEntity {
|
|||||||
throw new IllegalArgumentException("invalid frequency");
|
throw new IllegalArgumentException("invalid frequency");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tileEntity.setFreq(new Frequency(EnumColour.fromWoolMeta(left), EnumColour.fromWoolMeta(middle), EnumColour.fromWoolMeta(right)));
|
tileEntity.setFreq(
|
||||||
|
new Frequency(
|
||||||
|
EnumColour.fromWoolMeta(left),
|
||||||
|
EnumColour.fromWoolMeta(middle),
|
||||||
|
EnumColour.fromWoolMeta(right),
|
||||||
|
tileEntity.frequency.owner));
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user