mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-13 11:18:23 +01:00
SPIGOT-231 and SPIGOT-229. Fix itemframe behaviour.
Confirmed fix for itemframes not showing up. Based on the code in CraftPainting. Besids this fix we now pass null itemstacks directly to the EntityItemFrame to allow the removal of items in ItemFrames. By: FearThe1337 <admin@fearthe1337.com>
This commit is contained in:
parent
2313c026d7
commit
63a21cd261
1 changed files with 23 additions and 5 deletions
|
@ -1,6 +1,9 @@
|
|||
package org.bukkit.craftbukkit.entity;
|
||||
|
||||
import net.minecraft.server.BlockPosition;
|
||||
import net.minecraft.server.EntityItemFrame;
|
||||
import net.minecraft.server.EnumDirection;
|
||||
import net.minecraft.server.ItemStack;
|
||||
import net.minecraft.server.WorldServer;
|
||||
|
||||
import org.apache.commons.lang.Validate;
|
||||
|
@ -23,16 +26,31 @@ public class CraftItemFrame extends CraftHanging implements ItemFrame {
|
|||
return false;
|
||||
}
|
||||
|
||||
WorldServer world = ((CraftWorld) this.getWorld()).getHandle();
|
||||
world.getTracker().untrackEntity(this.getHandle());
|
||||
world.getTracker().track(this.getHandle());
|
||||
update();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private void update() {
|
||||
EntityItemFrame old = this.getHandle();
|
||||
|
||||
WorldServer world = ((CraftWorld) getWorld()).getHandle();
|
||||
BlockPosition position = old.getBlockPosition();
|
||||
EnumDirection direction = old.getDirection();
|
||||
ItemStack item = old.getItem() != null ? old.getItem().cloneItemStack() : null;
|
||||
|
||||
old.die();
|
||||
|
||||
EntityItemFrame frame = new EntityItemFrame(world,position,direction);
|
||||
frame.setItem(item);
|
||||
world.addEntity(frame);
|
||||
this.entity = frame;
|
||||
}
|
||||
|
||||
|
||||
public void setItem(org.bukkit.inventory.ItemStack item) {
|
||||
if (item == null || item.getTypeId() == 0) {
|
||||
getHandle().getDataWatcher().add(2, 5);
|
||||
getHandle().getDataWatcher().update(2);
|
||||
getHandle().setItem(null);
|
||||
} else {
|
||||
getHandle().setItem(CraftItemStack.asNMSCopy(item));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue