Undid update that broke compatibility with 1.8.

This commit is contained in:
Brianna 2020-07-27 12:03:27 -05:00
parent 9a5f01800e
commit 9d6808a302
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public class Kit {
private boolean hasRoom(Player player, int itemAmount) {
int space = 0;
for (ItemStack content : player.getInventory().getStorageContents()) {
for (ItemStack content : player.getInventory().getContents()) {
if (content == null) {
space++;
}