Skip to content

Commit b16a53f

Browse files
Fix copter redstone not resetting to 0
1 parent bd17dd1 commit b16a53f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/kotlin/org/valkyrienskies/clockwork/content/contraptions/propeller/copter/CopterBearingBlockEntity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ class CopterBearingBlockEntity(type: BlockEntityType<*>, pos: BlockPos, state: B
327327
}
328328

329329
override fun applyPowerEffect() {
330-
if (powerOne == 0 && powerTwo == 0) return
330+
//if (powerOne == 0 && powerTwo == 0) return
331331
val (axisOne, axisTwo) = getPowerDirections()
332332
val positiveNormalOne = Direction.get(POSITIVE, axisOne).normal.toJOMLD()
333333
val positiveNormalTwo = Direction.get(POSITIVE, axisTwo).normal.toJOMLD()

0 commit comments

Comments
 (0)