net.minecraft.server.ItemMapEmpty Maven / Gradle / Ivy
package net.minecraft.server;
public class ItemMapEmpty extends ItemWorldMapBase {
protected ItemMapEmpty() {
this.a(CreativeModeTab.f);
}
public ItemStack a(ItemStack itemstack, World world, EntityHuman entityhuman) {
World worldMain = world.getServer().getServer().worlds.get(0); // CraftBukkit - store reference to primary world
ItemStack itemstack1 = new ItemStack(Items.FILLED_MAP, 1, worldMain.b("map")); // CraftBukkit - use primary world for maps
String s = "map_" + itemstack1.getData();
WorldMap worldmap = new WorldMap(s);
worldMain.a(s, worldmap); // CraftBukkit
worldmap.scale = 0;
worldmap.a(entityhuman.locX, entityhuman.locZ, worldmap.scale);
worldmap.map = (byte) ((WorldServer) world).dimension; // CraftBukkit - use bukkit dimension
worldmap.c();
org.bukkit.craftbukkit.event.CraftEventFactory.callEvent(new org.bukkit.event.server.MapInitializeEvent(worldmap.mapView)); // CraftBukkit
--itemstack.count;
if (itemstack.count <= 0) {
return itemstack1;
} else {
if (!entityhuman.inventory.pickup(itemstack1.cloneItemStack())) {
entityhuman.drop(itemstack1, false);
}
entityhuman.b(StatisticList.USE_ITEM_COUNT[Item.getId(this)]);
return itemstack;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy