Add smithing enum to RecipeType

This commit is contained in:
DoctorMacc 2020-06-20 22:21:43 -04:00
parent 3b20202d35
commit c5444288a2
2 changed files with 3 additions and 1 deletions

View file

@ -1106,6 +1106,7 @@ public class MagicValues {
register(RecipeType.SMOKING, "minecraft:smoking"); register(RecipeType.SMOKING, "minecraft:smoking");
register(RecipeType.CAMPFIRE_COOKING, "minecraft:campfire_cooking"); register(RecipeType.CAMPFIRE_COOKING, "minecraft:campfire_cooking");
register(RecipeType.STONECUTTING, "minecraft:stonecutting"); register(RecipeType.STONECUTTING, "minecraft:stonecutting");
register(RecipeType.SMITHING, "minecraft:smithing");
register(CommandType.ROOT, 0); register(CommandType.ROOT, 0);
register(CommandType.LITERAL, 1); register(CommandType.LITERAL, 1);

View file

@ -21,5 +21,6 @@ public enum RecipeType {
BLASTING, BLASTING,
SMOKING, SMOKING,
CAMPFIRE_COOKING, CAMPFIRE_COOKING,
STONECUTTING; STONECUTTING,
SMITHING
} }