Add a no args constructor for ease of access.

This commit is contained in:
Brianna 2020-03-26 16:18:14 -04:00
parent 3e4ba496cf
commit 4b440944d7

View File

@ -32,6 +32,11 @@ public class DoubleGui extends Gui {
protected int playerRows = 4;
protected Map<Player, ItemStack[]> stash = new HashMap();
public DoubleGui() {
super(GuiType.STANDARD);
allowDropItems = false;
}
public DoubleGui(GuiType type) {
super(type);
allowDropItems = false;