From 7137829e0d029c4076dee343a66180633b2f67e2 Mon Sep 17 00:00:00 2001 From: md_5 Date: Fri, 23 Nov 2018 11:50:32 +1100 Subject: SPIGOT-4496: Undeprecate MapView.getId and make int --- src/main/java/org/bukkit/map/MapView.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/bukkit/map/MapView.java b/src/main/java/org/bukkit/map/MapView.java index 18a9936f..e152d076 100644 --- a/src/main/java/org/bukkit/map/MapView.java +++ b/src/main/java/org/bukkit/map/MapView.java @@ -2,6 +2,7 @@ package org.bukkit.map; import java.util.List; import org.bukkit.World; +import org.bukkit.inventory.meta.MapMeta; /** * Represents a map item. @@ -56,14 +57,11 @@ public interface MapView { } /** - * Get the ID of this map item. Corresponds to the damage value of a map - * in an inventory. + * Get the ID of this map item for use with {@link MapMeta}. * * @return The ID of the map. - * @deprecated Magic value */ - @Deprecated - public short getId(); + public int getId(); /** * Check whether this map is virtual. A map is virtual if its lowermost -- cgit v1.2.3