mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-08 21:14:41 -04:00
Merge remote-tracking branch 'origin/1.15' into 1.15
This commit is contained in:
commit
dd84212848
2 changed files with 6 additions and 1 deletions
fabric-object-builders-v0
|
@ -1,5 +1,5 @@
|
|||
archivesBaseName = "fabric-object-builders"
|
||||
version = getSubprojectVersion(project, "0.1.2")
|
||||
version = getSubprojectVersion(project, "0.1.3")
|
||||
|
||||
dependencies {
|
||||
compile project(path: ':fabric-api-base', configuration: 'dev')
|
||||
|
|
|
@ -165,6 +165,11 @@ public class FabricBlockSettings {
|
|||
return this;
|
||||
}
|
||||
|
||||
public FabricBlockSettings nonOpaque() {
|
||||
delegate.nonOpaque();
|
||||
return this;
|
||||
}
|
||||
|
||||
public FabricBlockSettings sounds(BlockSoundGroup group) {
|
||||
BlockSettingsExtensions.sounds(delegate, group);
|
||||
return this;
|
||||
|
|
Loading…
Add table
Reference in a new issue