Call MapInitializeEvent on newly created maps. Fixes BUKKIT-2907

This commit is contained in:
feildmaster 2012-11-21 16:48:25 -06:00
parent f0325da814
commit 22e26a5029

View file

@ -18,8 +18,11 @@ public class ItemMapEmpty extends ItemWorldMapBase {
worldmap.centerX = (int) (Math.round(entityhuman.locX / (double) i) * (long) i);
worldmap.centerZ = (int) (Math.round(entityhuman.locZ / (double) i) * (long) i);
worldmap.map = (byte) world.worldProvider.dimension;
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;