mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 12:02:36 +01:00
SPIGOT-2822: Droppers are droppers
By: md_5 <git@md-5.net>
This commit is contained in:
parent
1eee4ff9cb
commit
90d646054a
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ public class CraftMetaBlockState extends CraftMetaItem implements BlockStateMeta
|
||||||
return new CraftDispenser(material, (TileEntityDispenser) te);
|
return new CraftDispenser(material, (TileEntityDispenser) te);
|
||||||
case DROPPER:
|
case DROPPER:
|
||||||
if (te == null) {
|
if (te == null) {
|
||||||
te = new TileEntityDispenser();
|
te = new TileEntityDropper();
|
||||||
}
|
}
|
||||||
return new CraftDropper(material, (TileEntityDropper) te);
|
return new CraftDropper(material, (TileEntityDropper) te);
|
||||||
case END_GATEWAY:
|
case END_GATEWAY:
|
||||||
|
|
Loading…
Reference in a new issue