Skip to content

Commit

Permalink
bug: Fixed Rope Pulley bug, issue #719
Browse files Browse the repository at this point in the history
  • Loading branch information
rbasamoyai committed Dec 30, 2024
1 parent edc2c25 commit cd66055
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ and freedom tastes of reality..."* \
- Fixed Quick-Firing Breech side lever not actually ejecting the contents
- Fixed Quick-Firing Breech accepting input from the sides
- Fixed some waterloggable blocks not becoming waterlogged when placed in water
- Fixed Rope Pulley integration making it unmovable in some cases (issue #719)

## [5.7.2] - 2024-12-18

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public abstract class ContraptionMixin {
Direction offsetVal = offset.get();
Direction originalForcedDir = ((CanLoadBigCannon) this.createbigcannons$self).createbigcannons$getOriginalForcedDirection(level);
if (offsetVal != originalForcedDir && originalForcedDir != forcedDirection)
offset.set(offsetVal.getOpposite());
offset.set(originalForcedDir == null ? null : offsetVal.getOpposite());
return false;
}

Expand Down

0 comments on commit cd66055

Please sign in to comment.