2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/ItemWorldMap.java
+++ b/net/minecraft/server/ItemWorldMap.java
2018-07-15 02:00:00 +02:00
@@ -6,6 +6,11 @@
2018-12-25 22:00:00 +01:00
import com.google.common.collect.Multisets;
2016-05-10 13:47:39 +02:00
import javax.annotation.Nullable;
2014-11-25 22:32:16 +01:00
+// CraftBukkit start
+import org.bukkit.Bukkit;
+import org.bukkit.event.server.MapInitializeEvent;
+// CraftBukkit end
+
public class ItemWorldMap extends ItemWorldMapBase {
2018-07-15 02:00:00 +02:00
public ItemWorldMap(Item.Info item_info) {
@@ -15,7 +20,7 @@
2018-10-22 21:00:00 +02:00
public static ItemStack createFilledMapView(World world, int i, int j, byte b0, boolean flag, boolean flag1) {
2018-07-15 02:00:00 +02:00
ItemStack itemstack = new ItemStack(Items.FILLED_MAP);
2018-08-26 04:00:00 +02:00
- a(itemstack, world, i, j, b0, flag, flag1, world.worldProvider.getDimensionManager());
2018-07-15 02:00:00 +02:00
+ a(itemstack, world, i, j, b0, flag, flag1, ((WorldServer) world).dimension); // CraftBukkit - fixes Bukkit multiworld maps
return itemstack;
2014-11-25 22:32:16 +01:00
}
2019-04-23 04:00:00 +02:00
@@ -29,7 +34,7 @@
WorldMap worldmap = a(itemstack, world);
2016-11-17 02:41:03 +01:00
2018-07-15 02:00:00 +02:00
if (worldmap == null && !world.isClientSide) {
2018-08-26 04:00:00 +02:00
- worldmap = a(itemstack, world, world.getWorldData().b(), world.getWorldData().d(), 3, false, false, world.worldProvider.getDimensionManager());
2018-07-15 02:00:00 +02:00
+ worldmap = a(itemstack, world, world.getWorldData().b(), world.getWorldData().d(), 3, false, false, ((WorldServer) world).dimension); // CraftBukkit - fixes Bukkit multiworld maps
}
return worldmap;
2019-04-23 04:00:00 +02:00
@@ -38,7 +43,7 @@
2018-07-15 02:00:00 +02:00
public static int e(ItemStack itemstack) {
NBTTagCompound nbttagcompound = itemstack.getTag();
- return nbttagcompound != null && nbttagcompound.hasKeyOfType("map", 99) ? nbttagcompound.getInt("map") : 0;
+ return nbttagcompound != null && nbttagcompound.hasKeyOfType("map", 99) ? nbttagcompound.getInt("map") : -1; // CraftBukkit - make new maps for no tag
2016-11-17 02:41:03 +01:00
}
2018-08-26 04:00:00 +02:00
private static WorldMap a(ItemStack itemstack, World world, int i, int j, int k, boolean flag, boolean flag1, DimensionManager dimensionmanager) {
2019-04-23 04:00:00 +02:00
@@ -48,6 +53,11 @@
2018-08-26 04:00:00 +02:00
worldmap.a(i, j, k, flag, flag1, dimensionmanager);
2019-04-23 04:00:00 +02:00
world.a(worldmap);
2018-08-26 04:00:00 +02:00
itemstack.getOrCreateTag().setInt("map", l);
2015-02-26 23:41:06 +01:00
+
2018-07-15 02:00:00 +02:00
+ // CraftBukkit start
+ MapInitializeEvent event = new MapInitializeEvent(worldmap.mapView);
+ Bukkit.getServer().getPluginManager().callEvent(event);
+ // CraftBukkit end
return worldmap;
}
2019-04-23 04:00:00 +02:00
@@ -56,7 +66,8 @@
2014-11-25 22:32:16 +01:00
}
public void a(World world, Entity entity, WorldMap worldmap) {
2018-08-26 04:00:00 +02:00
- if (world.worldProvider.getDimensionManager() == worldmap.map && entity instanceof EntityHuman) {
2014-11-25 22:32:16 +01:00
+ // CraftBukkit - world.worldProvider -> ((WorldServer) world)
+ if (((WorldServer) world).dimension == worldmap.map && entity instanceof EntityHuman) {
int i = 1 << worldmap.scale;
int j = worldmap.centerX;
int k = worldmap.centerZ;
2019-04-23 04:00:00 +02:00
@@ -208,7 +219,8 @@
2018-07-15 02:00:00 +02:00
WorldMap worldmap = getSavedMap(itemstack, world);
2016-02-29 22:32:46 +01:00
2018-07-15 02:00:00 +02:00
if (worldmap != null) {
2018-08-26 04:00:00 +02:00
- if (world.worldProvider.getDimensionManager() == worldmap.map) {
2018-07-15 02:00:00 +02:00
+ // CraftBukkit - world.worldProvider -> ((WorldServer) world)
+ if (((WorldServer) world).dimension == worldmap.map) {
int i = 1 << worldmap.scale;
int j = worldmap.centerX;
int k = worldmap.centerZ;