From 6d587044c2851621522bc5608d901ca8233a57be Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Fri, 20 Jan 2017 23:08:49 -0800 Subject: Add new map icons to MapCursor.Type --- src/main/java/org/bukkit/map/MapCursor.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/main') diff --git a/src/main/java/org/bukkit/map/MapCursor.java b/src/main/java/org/bukkit/map/MapCursor.java index 52317497..a79dc412 100644 --- a/src/main/java/org/bukkit/map/MapCursor.java +++ b/src/main/java/org/bukkit/map/MapCursor.java @@ -147,16 +147,21 @@ public final class MapCursor { /** * Represents the standard types of map cursors. More may be made - * available by texture packs - the value is used by the client as an + * available by resource packs - the value is used by the client as an * index in the file './misc/mapicons.png' from minecraft.jar or from a - * texture pack. + * resource pack. */ public enum Type { WHITE_POINTER(0), GREEN_POINTER(1), RED_POINTER(2), BLUE_POINTER(3), - WHITE_CROSS(4); + WHITE_CROSS(4), + RED_MARKER(5), + WHITE_CIRCLE(6), + SMALL_WHITE_CIRCLE(7), + MANSION(8), + TEMPLE(9); private byte value; -- cgit v1.2.3