3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 12:30:06 +01:00

SPIGOT-1364: sendMap should update entire map

Dieser Commit ist enthalten in:
md_5 2016-07-01 11:24:11 +10:00
Ursprung 45038571f9
Commit d3507d2818

Datei anzeigen

@ -430,7 +430,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
}
}
PacketPlayOutMap packet = new PacketPlayOutMap(map.getId(), map.getScale().getValue(), true, icons, data.buffer, 0, 0, 0, 0);
PacketPlayOutMap packet = new PacketPlayOutMap(map.getId(), map.getScale().getValue(), true, icons, data.buffer, 0, 0, 128, 128);
getHandle().playerConnection.sendPacket(packet);
}