use of com.almuradev.almura.feature.store.client.gui.StoreManagementScreen in project Almura by AlmuraDev.
the class ClientStoreManager method handleStoreRegistry.
public void handleStoreRegistry(@Nullable final Set<Store> stores) {
this.putStores(stores);
final GuiScreen currentScreen = Minecraft.getMinecraft().currentScreen;
if (currentScreen instanceof StoreManagementScreen) {
((StoreManagementScreen) currentScreen).refresh();
}
}
Aggregations