mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-07 23:52:11 -07:00
Added negative id check to Material.getMaterial(int). Fixes BUKKIT-3414
Negative id values would try to access the array out of bounds and throw an java.lang.ArrayIndexOutOfBoundsException. By: MikeMatrix <m.braun92@gmail.com>
This commit is contained in:
@@ -528,7 +528,7 @@ public enum Material {
|
||||
* @return Material if found, or null
|
||||
*/
|
||||
public static Material getMaterial(final int id) {
|
||||
if (byId.length > id) {
|
||||
if (byId.length > id && id >= 0) {
|
||||
return byId[id];
|
||||
} else {
|
||||
return null;
|
||||
|
Reference in New Issue
Block a user