mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 02:35:49 +01:00
SPIGOT-5468: Beehive TileEntity was not loaded for BlockStateMeta
This commit is contained in:
parent
37f32da8f8
commit
918061b75c
1 changed files with 4 additions and 0 deletions
|
@ -287,6 +287,10 @@ public class CraftMetaBlockState extends CraftMetaItem implements BlockStateMeta
|
|||
case BLACK_SHULKER_BOX:
|
||||
blockEntityTag.setString("id", "shulker_box");
|
||||
break;
|
||||
case BEE_NEST:
|
||||
case BEEHIVE:
|
||||
blockEntityTag.setString("id", "beehive");
|
||||
break;
|
||||
}
|
||||
}
|
||||
TileEntity te = (blockEntityTag == null) ? null : TileEntity.create(blockEntityTag);
|
||||
|
|
Loading…
Reference in a new issue