cn.nukkit.block.BlockFallableMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.block;
import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;
import cn.nukkit.blockproperty.BlockProperties;
import cn.nukkit.blockproperty.CommonBlockProperties;
import javax.annotation.Nonnull;
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public abstract class BlockFallableMeta extends BlockFallable {
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public BlockFallableMeta() {
// Does nothing
}
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public BlockFallableMeta(int meta) {
if (meta != 0) {
getMutableState().setDataStorageFromInt(meta, true);
}
}
@Since("1.4.0.0-PN")
@Nonnull
@PowerNukkitOnly
@Override
public BlockProperties getProperties() {
return CommonBlockProperties.LEGACY_PROPERTIES;
}
}