mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 12:51:09 -05:00
Add smithing enum to RecipeType
This commit is contained in:
parent
3b20202d35
commit
c5444288a2
2 changed files with 3 additions and 1 deletions
|
@ -1106,6 +1106,7 @@ public class MagicValues {
|
|||
register(RecipeType.SMOKING, "minecraft:smoking");
|
||||
register(RecipeType.CAMPFIRE_COOKING, "minecraft:campfire_cooking");
|
||||
register(RecipeType.STONECUTTING, "minecraft:stonecutting");
|
||||
register(RecipeType.SMITHING, "minecraft:smithing");
|
||||
|
||||
register(CommandType.ROOT, 0);
|
||||
register(CommandType.LITERAL, 1);
|
||||
|
|
|
@ -21,5 +21,6 @@ public enum RecipeType {
|
|||
BLASTING,
|
||||
SMOKING,
|
||||
CAMPFIRE_COOKING,
|
||||
STONECUTTING;
|
||||
STONECUTTING,
|
||||
SMITHING
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue