mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-20 05:14:15 +00:00
Fixed NPE in ItemStack. Thanks jascotty2!
This commit is contained in:
parent
b1815cc6c6
commit
30bb875342
1 changed files with 3 additions and 2 deletions
|
@ -122,8 +122,9 @@ public class ItemStack implements ConfigurationSerializable {
|
||||||
* @return MaterialData for this item
|
* @return MaterialData for this item
|
||||||
*/
|
*/
|
||||||
public MaterialData getData() {
|
public MaterialData getData() {
|
||||||
if (Material.getMaterial(getTypeId()).getData() != null) {
|
Material mat = Material.getMaterial(getTypeId());
|
||||||
data = Material.getMaterial(getTypeId()).getNewData((byte) this.durability);
|
if (mat != null && mat.getData() != null) {
|
||||||
|
data = mat.getNewData((byte) this.durability);
|
||||||
}
|
}
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
|
|
Loading…
Add table
Reference in a new issue