Minor Block javadoc improvements (#2909)

* Fix typos in Block javadoc

* Add mention of AbstractBlock

* Fix grammar

* ,

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>

Co-authored-by: haykam821 <24855774+haykam821@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Juuxel 2021-12-10 18:11:57 +02:00 committed by GitHub
parent 2e99628c1f
commit 29f3c7a07e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
CLASS net/minecraft/class_2248 net/minecraft/block/Block
COMMENT A block is a voxel in a {@linkplain World world}.
COMMENT This class and its subclasses define all logics for those voxels.
COMMENT A block is a voxel in a {@linkplain World world}. {@link AbstractBlock},
COMMENT this class, and its subclasses define all logic for those voxels.
COMMENT
COMMENT <p>There is exactly one instance for every type of block. Every stone
COMMENT block for example in a world shares the same block instance. Each block
@ -16,8 +16,9 @@ CLASS net/minecraft/class_2248 net/minecraft/block/Block
COMMENT
COMMENT <p>In the world, the actual voxels are not stored as blocks, but as
COMMENT {@linkplain BlockState block states}. The possible states of the block
COMMENT is defined by {@link appendProperties}.
COMMENT are defined by {@link #appendProperties}.
COMMENT
COMMENT @see AbstractBlock
COMMENT @see BlockState
FIELD field_10638 LOGGER Lorg/apache/logging/log4j/Logger;
FIELD field_10642 translationKey Ljava/lang/String;