mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 09:41:29 +01:00
Added a setArmorContents method to PlayerInventory.
It handles error checking. Null item stacks and air item stacks are both converted to clear slot calls to prevent crashing the client. By: Raphfrk <raphfrk@gmail.com>
This commit is contained in:
parent
4ae1ef6d1d
commit
421600527f
@ -71,4 +71,18 @@ public class CraftInventoryPlayer extends CraftInventory implements PlayerInvent
|
|||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setArmorContents(ItemStack[] items) {
|
||||||
|
int cnt = getSize();
|
||||||
|
if (items == null) {
|
||||||
|
items = new ItemStack[4];
|
||||||
|
}
|
||||||
|
for (ItemStack item : items) {
|
||||||
|
if (item == null || item.getTypeId() == 0) {
|
||||||
|
clear(cnt++);
|
||||||
|
} else {
|
||||||
|
setItem(cnt++, item);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user