Replaced static default page with variable

This commit is contained in:
bluefireoly
2020-10-25 16:02:47 +01:00
parent cf8a4b3adf
commit e77f633d40
2 changed files with 4 additions and 5 deletions

View File

@@ -61,7 +61,7 @@ class GUIBuilder<T : ForInventory>(
}
internal fun build() = guiCreator.createInstance(
GUIData(type, title, guiSlots, transitionTo, transitionFrom, onClickElement)
GUIData(type, title, guiSlots, defaultPage, transitionTo, transitionFrom, onClickElement)
)
}