mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-04 14:04:49 +01:00
#649: CraftBell should implement Bell
This commit is contained in:
parent
bbe3d58efc
commit
2122c0b128
1 changed files with 2 additions and 1 deletions
|
@ -2,9 +2,10 @@ package org.bukkit.craftbukkit.block;
|
|||
|
||||
import net.minecraft.server.TileEntityBell;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.block.Bell;
|
||||
import org.bukkit.block.Block;
|
||||
|
||||
public class CraftBell extends CraftBlockEntityState<TileEntityBell> {
|
||||
public class CraftBell extends CraftBlockEntityState<TileEntityBell> implements Bell {
|
||||
|
||||
public CraftBell(Block block) {
|
||||
super(block, TileEntityBell.class);
|
||||
|
|
Loading…
Reference in a new issue