summaryrefslogtreecommitdiffstats
path: root/src/main
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2017-01-20 23:08:49 -0800
committerPokechu22 <Pokechu022@gmail.com>2017-01-20 23:08:49 -0800
commit6d587044c2851621522bc5608d901ca8233a57be (patch)
tree1fe2a1a84c3d9bcffccd4a02f4be3078435ae3b8 /src/main
parent4bef447a073792a0858dc49e33593acb1c1948f5 (diff)
downloadbukkit-6d587044c2851621522bc5608d901ca8233a57be.tar
bukkit-6d587044c2851621522bc5608d901ca8233a57be.tar.gz
bukkit-6d587044c2851621522bc5608d901ca8233a57be.tar.lz
bukkit-6d587044c2851621522bc5608d901ca8233a57be.tar.xz
bukkit-6d587044c2851621522bc5608d901ca8233a57be.zip
Add new map icons to MapCursor.Type
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/org/bukkit/map/MapCursor.java11
1 files changed, 8 insertions, 3 deletions
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;