mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-21 03:10:54 -04:00
Make villager profession builder create method public [1.15] (#649)
* Make method public * bump module version * Bump main version
This commit is contained in:
parent
5ff93ffd61
commit
e7a4edb35e
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 = "1.15.2"
|
||||
static def yarnVersion = "+build.1"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
archivesBaseName = "fabric-object-builder-api-v1"
|
||||
version = getSubprojectVersion(project, "1.2.0")
|
||||
version = getSubprojectVersion(project, "1.2.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