Fixes #517 + possibly #519

This commit is contained in:
boy0001
2015-08-08 16:40:43 +10:00
parent d8e7c9805b
commit 64063463ec
2 changed files with 13 additions and 7 deletions

View File

@ -51,6 +51,9 @@ public class PlotInventory {
}
public PlotItemStack getItem(int index) {
if (index < 0 || index >= items.length) {
return null;
}
return items[index];
}