SPIGOT-3192: Return default value for invalid map icons

This commit is contained in:
md_5 2017-04-21 08:20:49 +10:00
parent 1c3428e534
commit 0ab698655b

11
nms-patches/MapIcon.patch Normal file
View File

@ -0,0 +1,11 @@
--- a/net/minecraft/server/MapIcon.java
+++ b/net/minecraft/server/MapIcon.java
@@ -86,7 +86,7 @@
}
public static MapIcon.Type a(byte b0) {
- return values()[b0];
+ return b0 >= 0 && b0 < values().length ? values()[b0] : MapIcon.Type.PLAYER; // CraftBukkit
}
}
}