mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-28 16:06:48 +01:00
Adjustable repeater, Pulse repeater, Powered latch and toggle latch can now power comparators from the side, like vanilla repeaters already can
This commit is contained in:
parent
1f4b8d3303
commit
976d53c9e4
1 changed files with 6 additions and 1 deletions
|
@ -2,6 +2,7 @@ package com.simibubi.create.content.logistics.block.diodes;
|
|||
|
||||
import com.simibubi.create.content.contraptions.wrench.IWrenchable;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.RedstoneDiodeBlock;
|
||||
|
||||
public abstract class AbstractDiodeBlock extends RedstoneDiodeBlock implements IWrenchable {
|
||||
|
@ -9,5 +10,9 @@ public abstract class AbstractDiodeBlock extends RedstoneDiodeBlock implements I
|
|||
public AbstractDiodeBlock(Properties builder) {
|
||||
super(builder);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean canProvidePower(BlockState state) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue