mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 00:07:56 +01:00
SPIGOT-4496: Undeprecate MapView.getId and make int
By: md_5 <git@md-5.net>
This commit is contained in:
parent
511827f499
commit
b5f51a06d1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user