mirror of
https://github.com/SimplexDevelopment/Uncraftables.git
synced 2025-07-01 08:46:41 +00:00
ZOMBIE->SKELETON
fixed an issue where zombie horse spawn eggs were crafted instead of skeleton horse spawn eggs.
This commit is contained in:
@ -913,8 +913,8 @@ public class Craftable {
|
||||
}
|
||||
|
||||
private void sHorseEgg() {
|
||||
ShapelessRecipe recipe = util.shapeless(Material.ZOMBIE_HORSE_SPAWN_EGG, "s_horse_egg_recipe");
|
||||
recipe.addIngredient(2, Material.SKELETON_SPAWN_EGG);
|
||||
ShapelessRecipe recipe = util.shapeless(Material.SKELETON_HORSE_SPAWN_EGG, "s_horse_egg_recipe");
|
||||
recipe.addIngredient(1, Material.SKELETON_SPAWN_EGG);
|
||||
recipe.addIngredient(1, Material.HORSE_SPAWN_EGG);
|
||||
plugin.server.addRecipe(recipe);
|
||||
}
|
||||
|
Reference in New Issue
Block a user