mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 11:06:29 +01:00
SPIGOT-3192: Return default value for invalid map icons
This commit is contained in:
parent
1c3428e534
commit
0ab698655b
11
nms-patches/MapIcon.patch
Normal file
11
nms-patches/MapIcon.patch
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user