mirror of
https://github.com/Oth3r/Sit.git
synced 2025-09-20 00:13:21 +02:00
Merge branch '1.21.1' into 1.20.6
# Conflicts: # gradle.properties
This commit is contained in:
commit
a971fa9926
11 changed files with 307 additions and 87 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue