2021-10-23 20:17:04 +02:00
|
|
|
package de.ellpeck.actuallyadditions.mod.util;
|
|
|
|
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.crafting.ActuallyRecipes;
|
|
|
|
import net.minecraft.item.crafting.RecipeManager;
|
|
|
|
import net.minecraft.resources.DataPackRegistries;
|
|
|
|
import net.minecraft.resources.IResourceManager;
|
2021-12-30 18:30:01 +01:00
|
|
|
import net.minecraft.resources.IResourceManagerReloadListener;
|
2021-10-23 20:17:04 +02:00
|
|
|
|
2021-12-30 18:30:01 +01:00
|
|
|
@SuppressWarnings("deprecation")
|
|
|
|
public class ResourceReloader implements IResourceManagerReloadListener {
|
2021-10-23 20:17:04 +02:00
|
|
|
private final DataPackRegistries data;
|
|
|
|
public ResourceReloader(DataPackRegistries dataPackRegistries) {
|
|
|
|
data = dataPackRegistries;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-12-30 18:30:01 +01:00
|
|
|
public void onResourceManagerReload(IResourceManager pResourceManager) {
|
2021-10-23 20:17:04 +02:00
|
|
|
RecipeManager recipeManager = data.getRecipeManager();
|
|
|
|
ActuallyAdditionsAPI.EMPOWERER_RECIPES.clear();
|
|
|
|
ActuallyAdditionsAPI.EMPOWERER_RECIPES.addAll(recipeManager.getAllRecipesFor(ActuallyRecipes.Types.EMPOWERING));
|
2021-12-19 18:27:43 +01:00
|
|
|
|
|
|
|
ActuallyAdditionsAPI.SOLID_FUEL_RECIPES.clear();
|
|
|
|
ActuallyAdditionsAPI.SOLID_FUEL_RECIPES.addAll(recipeManager.getAllRecipesFor(ActuallyRecipes.Types.SOLID_FUEL));
|
2021-10-23 20:17:04 +02:00
|
|
|
}
|
|
|
|
}
|