3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-18 05:50:04 +01:00
Paper/src/main/java/net/minecraft/server/ItemMobSpawner.java

45 Zeilen
1.1 KiB
Java

2011-09-26 09:07:06 +02:00
package net.minecraft.server;
public class ItemMobSpawner extends ItemLog {
public ItemMobSpawner(int i) {
super(i, Block.MOB_SPAWNER);
}
public boolean a(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
if(!super.a(itemstack, entityhuman, world, i, j, k, l)) return false;
System.out.println("Placed the spawner, checking it's entity");
if (l == 0) {
--j;
}
if (l == 1) {
++j;
}
if (l == 2) {
--k;
}
if (l == 3) {
++k;
}
if (l == 4) {
--i;
}
if (l == 5) {
++i;
}
TileEntity entity = world.getTileEntity(i, j, k);
System.out.println(entity);
if (entity instanceof TileEntityMobSpawner) {
System.out.println("Got a valid spawner, attempt to set its type");
((TileEntityMobSpawner)entity).setId(itemstack.getData());
return true;
}
else return false;
}
}