3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 21:40:08 +01:00
Paper/src/main/java/net/minecraft/server/ItemMobSpawner.java
2011-09-26 04:30:24 -04:00

34 Zeilen
1.1 KiB
Java

package net.minecraft.server;
// CraftBukkit start - the whole file!
public class ItemMobSpawner extends ItemLog { // Actually not ItemLog but 'ItemUsingMetadata' orso.
public ItemMobSpawner(int id) {
super(id, Block.MOB_SPAWNER);
}
// interact
public boolean a(ItemStack itemstack, EntityHuman entityhuman, World world, int x, int y, int z, int face) {
// super.interact (for ItemBlock this normally attempts to place it)
if (!super.a(itemstack, entityhuman, world, x, y, z, face)) return false;
// Adjust the coords for the face clicked.
if (face == 0) { y--; }
else if (face == 1) { y++; }
else if (face == 2) { z--; }
else if (face == 3) { z++; }
else if (face == 4) { x--; }
else if (face == 5) { x++; }
// Set the remembered datavalue for the spawner
TileEntity entity = world.getTileEntity(x, y, z);
if (entity instanceof TileEntityMobSpawner) {
((TileEntityMobSpawner) entity).setId(itemstack.getData());
return true;
}
return false;
}
}
// CraftBukkit end - the whole file!