Fix a mistake in ItemFrame

thanks @awzaw
This commit is contained in:
Dylan K. Taylor 2016-12-22 13:47:33 +00:00
parent f4065dd411
commit 669af6f7b3

View File

@ -53,9 +53,9 @@ class ItemFrame extends Flowable{
if(!(($tile = $this->level->getTile($this)) instanceof TileItemFrame)){ if(!(($tile = $this->level->getTile($this)) instanceof TileItemFrame)){
$nbt = new CompoundTag("", [ $nbt = new CompoundTag("", [
new StringTag("id", Tile::ITEM_FRAME), new StringTag("id", Tile::ITEM_FRAME),
new IntTag("x", $block->x), new IntTag("x", $this->x),
new IntTag("y", $block->y), new IntTag("y", $this->y),
new IntTag("z", $block->z), new IntTag("z", $this->z),
new FloatTag("ItemDropChance", 1.0), new FloatTag("ItemDropChance", 1.0),
new ByteTag("ItemRotation", 0) new ByteTag("ItemRotation", 0)
]); ]);