diff options
Diffstat (limited to 'src/main/java/gregtech/common/covers/GT_Cover_RedstoneTransmitterInternal.java')
-rw-r--r-- | src/main/java/gregtech/common/covers/GT_Cover_RedstoneTransmitterInternal.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/covers/GT_Cover_RedstoneTransmitterInternal.java b/src/main/java/gregtech/common/covers/GT_Cover_RedstoneTransmitterInternal.java index f4b7f5fa80..968ad3f815 100644 --- a/src/main/java/gregtech/common/covers/GT_Cover_RedstoneTransmitterInternal.java +++ b/src/main/java/gregtech/common/covers/GT_Cover_RedstoneTransmitterInternal.java @@ -27,8 +27,9 @@ public class GT_Cover_RedstoneTransmitterInternal extends GT_Cover_RedstoneWirel @Override public int doCoverThings(byte aSide, byte aInputRedstone, int aCoverID, int aCoverVariable, ICoverable aTileEntity, long aTimer) { - GregTech_API.sWirelessRedstone - .put(Integer.valueOf(aCoverVariable), Byte.valueOf(aTileEntity.getOutputRedstoneSignal(aSide))); + GregTech_API.sWirelessRedstone.put( + Integer.valueOf(aCoverVariable), + Byte.valueOf(aTileEntity.getOutputRedstoneSignal(aSide))); return aCoverVariable; } |