diff --git a/paper-api/src/main/java/org/bukkit/map/MapCursor.java b/paper-api/src/main/java/org/bukkit/map/MapCursor.java index 83354b2a38..b90fd819a7 100644 --- a/paper-api/src/main/java/org/bukkit/map/MapCursor.java +++ b/paper-api/src/main/java/org/bukkit/map/MapCursor.java @@ -222,7 +222,7 @@ public final class MapCursor { /** * Represents the standard types of map cursors. More may be made * 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 + * index in the file './assets/minecraft/textures/map/map_icons.png' from minecraft.jar or from a * resource pack. */ public enum Type { @@ -252,7 +252,15 @@ public final class MapCursor { BANNER_GREEN(23), BANNER_RED(24), BANNER_BLACK(25), - RED_X(26); + RED_X(26), + DESERT_VILLAGE(27), + PLAINS_VILLAGE(28), + SAVANNA_VILLAGE(29), + SNOWY_VILLAGE(30), + TAIGA_VILLAGE(31), + JUNGLE_TEMPLE(32), + SWAMP_HUT(33), + ; private byte value;