Subcontraptions for everyone!

- Allow stabilized contraptions to be generated by pulleys, gantries, pistons, and anything else that extends TranslatingContraption.
This commit is contained in:
cshcrafter 2024-02-15 01:35:09 -08:00 committed by GitHub
parent 26fc820c69
commit 6dd03a5035
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,7 +51,7 @@ public abstract class TranslatingContraption extends Contraption {
@Override
public boolean canBeStabilized(Direction facing, BlockPos localPos) {
return false;
return true;
}
}