mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-13 11:18:23 +01:00
Fixed NPE in ItemStack. Thanks jascotty2!
By: EvilSeph <evilseph@gmail.com>
This commit is contained in:
parent
0f21027498
commit
5fc8f4f576
1 changed files with 3 additions and 2 deletions
|
@ -122,8 +122,9 @@ public class ItemStack implements ConfigurationSerializable {
|
|||
* @return MaterialData for this item
|
||||
*/
|
||||
public MaterialData getData() {
|
||||
if (Material.getMaterial(getTypeId()).getData() != null) {
|
||||
data = Material.getMaterial(getTypeId()).getNewData((byte) this.durability);
|
||||
Material mat = Material.getMaterial(getTypeId());
|
||||
if (mat != null && mat.getData() != null) {
|
||||
data = mat.getNewData((byte) this.durability);
|
||||
}
|
||||
|
||||
return data;
|
||||
|
|
Loading…
Add table
Reference in a new issue