Storage GUI
GUI that does not clear it's items on close/open, any external non GuiItem added to it will stay. (it does not persist on server restart)

To create a persistent GUI all you need to do is:
StorageGui gui = Gui.storage()
.title(Component.text("GUI Title!"))
.rows(6)
.create();
Differently to the normal GUI, the
addItem
method takes an ItemStack
instead. Any GuiItem
added will have actions applied to it, the persistent items are simple ItemStacks that have nothing associated to it.Last modified 1yr ago