Merge branch '1.21.1' into 1.20.6

# Conflicts:
#	gradle.properties
This commit is contained in:
Oth3r 2025-02-23 15:23:04 -06:00
commit a971fa9926
11 changed files with 307 additions and 87 deletions

View file

@ -28,6 +28,12 @@ public class CustomBlock {
this.blockStates = blockStates;
}
public CustomBlock(CustomBlock customBlock) {
this.blockIds = new ArrayList<>(customBlock.blockIds);
this.blockTags = new ArrayList<>(customBlock.blockTags);
this.blockStates = new ArrayList<>(customBlock.blockStates);
}
public ArrayList<String> getBlockIds() {
return blockIds;
}