copy constructors

This commit is contained in:
Oth3r 2025-02-11 14:51:06 -06:00
commit b46e10e835
3 changed files with 12 additions and 9 deletions

View file

@ -22,4 +22,9 @@ public class SittingBlock extends CustomBlock {
super(blockIds, blockTags, blockStates);
this.sittingHeight = sittingHeight;
}
public SittingBlock(SittingBlock sittingBlock) {
super(sittingBlock);
this.sittingHeight = sittingBlock.sittingHeight;
}
}