mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-15 23:25:37 +01:00
SPIGOT-4296: Ensure recipe group set in craft translation
This commit is contained in:
parent
89492315d1
commit
903c0e30c1
@ -18,7 +18,9 @@ public class CraftFurnaceRecipe extends FurnaceRecipe implements CraftRecipe {
|
||||
if (recipe instanceof CraftFurnaceRecipe) {
|
||||
return (CraftFurnaceRecipe) recipe;
|
||||
}
|
||||
return new CraftFurnaceRecipe(recipe.getKey(), recipe.getResult(), recipe.getInput(), recipe.getExperience(), recipe.getCookingTime());
|
||||
CraftFurnaceRecipe ret = new CraftFurnaceRecipe(recipe.getKey(), recipe.getResult(), recipe.getInput(), recipe.getExperience(), recipe.getCookingTime());
|
||||
ret.setGroup(recipe.getGroup());
|
||||
return ret;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -31,6 +31,7 @@ public class CraftShapedRecipe extends ShapedRecipe implements CraftRecipe {
|
||||
return (CraftShapedRecipe) recipe;
|
||||
}
|
||||
CraftShapedRecipe ret = new CraftShapedRecipe(recipe.getKey(), recipe.getResult());
|
||||
ret.setGroup(recipe.getGroup());
|
||||
String[] shape = recipe.getShape();
|
||||
ret.shape(shape);
|
||||
Map<Character, ItemStack> ingredientMap = recipe.getIngredientMap();
|
||||
|
@ -31,6 +31,7 @@ public class CraftShapelessRecipe extends ShapelessRecipe implements CraftRecipe
|
||||
return (CraftShapelessRecipe) recipe;
|
||||
}
|
||||
CraftShapelessRecipe ret = new CraftShapelessRecipe(recipe.getKey(), recipe.getResult());
|
||||
ret.setGroup(recipe.getGroup());
|
||||
for (ItemStack ingred : recipe.getIngredientList()) {
|
||||
ret.addIngredient(ingred.getType(), ingred.getDurability());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user