mirror of
https://github.com/FabricMC/fabric.git
synced 2025-07-28 15:09:35 -04:00
Make the create method public on villager profession builder (#647)
* Make the create method public * Bump module ver * Bump main version
This commit is contained in:
parent
4a01746c06
commit
c6ab3e1b2d
3 changed files with 3 additions and 3 deletions
build.gradle
fabric-object-builder-api-v1
build.gradle
src/main/java/net/fabricmc/fabric/api/object/builder/v1/villager
|
@ -12,7 +12,7 @@ plugins {
|
|||
def ENV = System.getenv()
|
||||
|
||||
class Globals {
|
||||
static def baseVersion = "0.11.0"
|
||||
static def baseVersion = "0.11.1"
|
||||
static def mcVersion = "20w22a"
|
||||
static def yarnVersion = "+build.1"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
archivesBaseName = "fabric-object-builder-api-v1"
|
||||
version = getSubprojectVersion(project, "1.5.0")
|
||||
version = getSubprojectVersion(project, "1.5.1")
|
||||
|
||||
dependencies {
|
||||
compile project(path: ':fabric-api-base', configuration: 'dev')
|
||||
|
|
|
@ -56,7 +56,7 @@ public final class VillagerProfessionBuilder {
|
|||
* Creates a builder instance to allow for creation of a {@link VillagerProfession}.
|
||||
* @return A new builder.
|
||||
*/
|
||||
static VillagerProfessionBuilder create() {
|
||||
public static VillagerProfessionBuilder create() {
|
||||
return new VillagerProfessionBuilder();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue