mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 23:33:49 +01:00
SPIGOT-6551: CaveVinesPlant missing extends BlockData
By: md_5 <git@md-5.net>
This commit is contained in:
parent
6b0ff8582b
commit
106d3eef70
1 changed files with 3 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
|||
package org.bukkit.block.data.type;
|
||||
|
||||
import org.bukkit.block.data.BlockData;
|
||||
|
||||
/**
|
||||
* 'berries' indicates whether the block has berries.
|
||||
*/
|
||||
public interface CaveVinesPlant {
|
||||
public interface CaveVinesPlant extends BlockData {
|
||||
|
||||
/**
|
||||
* Gets the value of the 'berries' property.
|
||||
|
|
Loading…
Reference in a new issue