cn.nukkit.dispenser.SpawnEggDispenseBehavior Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.dispenser;
import cn.nukkit.block.BlockDispenser;
import cn.nukkit.entity.Entity;
import cn.nukkit.entity.EntityLiving;
import cn.nukkit.item.Item;
import cn.nukkit.item.ItemSpawnEgg;
import cn.nukkit.math.BlockFace;
import cn.nukkit.math.Vector3;
public class SpawnEggDispenseBehavior extends DefaultDispenseBehavior {
@Override
public Item dispense(BlockDispenser block, BlockFace face, Item item) {
Vector3 pos = block.getSide(face).add(0.5, 0.7, 0.5);
Entity entity = Entity.createEntity(((ItemSpawnEgg)item).getEntityNetworkId(), block.level.getChunk(pos.getChunkX(), pos.getChunkZ()),
Entity.getDefaultNBT(pos));
this.success = entity != null;
if (this.success) {
if (item.hasCustomName() && entity instanceof EntityLiving) {
entity.setNameTag(item.getCustomName());
}
entity.spawnToAll();
return null;
}
return super.dispense(block, face, item);
}
}