Fix the javadocs of object-builders as the method was moved from material to block. (#892)

Signed-off-by: shedaniel <daniel@shedaniel.me>
This commit is contained in:
shedaniel 2020-07-21 02:35:49 +08:00 committed by GitHub
parent 3b4b2c130e
commit ba4afa57ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 11 deletions

View file

@ -1,5 +1,5 @@
archivesBaseName = "fabric-object-builder-api-v1" archivesBaseName = "fabric-object-builder-api-v1"
version = getSubprojectVersion(project, "1.5.5") version = getSubprojectVersion(project, "1.5.6")
dependencies { dependencies {
compile project(path: ':fabric-api-base', configuration: 'dev') compile project(path: ':fabric-api-base', configuration: 'dev')

View file

@ -244,7 +244,7 @@ public class FabricBlockSettings extends AbstractBlock.Settings {
} }
/** /**
* Make the material require tool to drop and slows down mining speed if the incorrect tool is used. * Make the block require tool to drop and slows down mining speed if the incorrect tool is used.
*/ */
@Override @Override
public FabricBlockSettings requiresTool() { public FabricBlockSettings requiresTool() {
@ -279,8 +279,8 @@ public class FabricBlockSettings extends AbstractBlock.Settings {
} }
/** /**
* Please make the material require a tool if you plan to disable drops and slow the breaking down using the * Please make the block require a tool if you plan to disable drops and slow the breaking down using the
* incorrect tool by using {@link FabricMaterialBuilder#requiresTool()}. * incorrect tool by using {@link FabricBlockSettings#requiresTool()}.
*/ */
public FabricBlockSettings breakByTool(Tag<Item> tag, int miningLevel) { public FabricBlockSettings breakByTool(Tag<Item> tag, int miningLevel) {
FabricBlockInternals.computeExtraData(this).addMiningLevel(tag, miningLevel); FabricBlockInternals.computeExtraData(this).addMiningLevel(tag, miningLevel);
@ -288,8 +288,8 @@ public class FabricBlockSettings extends AbstractBlock.Settings {
} }
/** /**
* Please make the material require a tool if you plan to disable drops and slow the breaking down using the * Please make the block require a tool if you plan to disable drops and slow the breaking down using the
* incorrect tool by using {@link FabricMaterialBuilder#requiresTool()}. * incorrect tool by using {@link FabricBlockSettings#requiresTool()}.
*/ */
public FabricBlockSettings breakByTool(Tag<Item> tag) { public FabricBlockSettings breakByTool(Tag<Item> tag) {
return this.breakByTool(tag, 0); return this.breakByTool(tag, 0);

View file

@ -1,5 +1,5 @@
archivesBaseName = "fabric-object-builders" archivesBaseName = "fabric-object-builders"
version = getSubprojectVersion(project, "0.6.0") version = getSubprojectVersion(project, "0.6.1")
dependencies { dependencies {
compile project(path: ':fabric-api-base', configuration: 'dev') compile project(path: ':fabric-api-base', configuration: 'dev')

View file

@ -77,8 +77,8 @@ public class FabricBlockSettings {
} }
/** /**
* Please make the material require a tool if you plan to disable drops and slow the breaking down using the * Please make the block require a tool if you plan to disable drops and slow the breaking down using the
* incorrect tool by using {@link net.fabricmc.fabric.api.object.builder.v1.block.FabricMaterialBuilder#requiresTool()}. * incorrect tool by using {@link net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings#requiresTool()}.
*/ */
public FabricBlockSettings breakByTool(Tag<Item> tag, int miningLevel) { public FabricBlockSettings breakByTool(Tag<Item> tag, int miningLevel) {
this.delegate.breakByTool(tag, miningLevel); this.delegate.breakByTool(tag, miningLevel);
@ -86,8 +86,8 @@ public class FabricBlockSettings {
} }
/** /**
* Please make the material require a tool if you plan to disable drops and slow the breaking down using the * Please make the block require a tool if you plan to disable drops and slow the breaking down using the
* incorrect tool by using {@link net.fabricmc.fabric.api.object.builder.v1.block.FabricMaterialBuilder#requiresTool()}. * incorrect tool by using {@link net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings#requiresTool()}.
*/ */
public FabricBlockSettings breakByTool(Tag<Item> tag) { public FabricBlockSettings breakByTool(Tag<Item> tag) {
this.delegate.breakByTool(tag); this.delegate.breakByTool(tag);