Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 21:10:17 +01:00
Call MapInitializeEvent on newly created maps. Fixes BUKKIT-2907
Dieser Commit ist enthalten in:
Ursprung
f0325da814
Commit
22e26a5029
@ -18,8 +18,11 @@ public class ItemMapEmpty extends ItemWorldMapBase {
|
|||||||
|
|
||||||
worldmap.centerX = (int) (Math.round(entityhuman.locX / (double) i) * (long) i);
|
worldmap.centerX = (int) (Math.round(entityhuman.locX / (double) i) * (long) i);
|
||||||
worldmap.centerZ = (int) (Math.round(entityhuman.locZ / (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();
|
worldmap.c();
|
||||||
|
|
||||||
|
org.bukkit.craftbukkit.event.CraftEventFactory.callEvent(new org.bukkit.event.server.MapInitializeEvent(worldmap.mapView)); // CraftBukkit
|
||||||
|
|
||||||
--itemstack.count;
|
--itemstack.count;
|
||||||
if (itemstack.count <= 0) {
|
if (itemstack.count <= 0) {
|
||||||
return itemstack1;
|
return itemstack1;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren