mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 11:40:40 +00:00
Added New 1.8 Meats to Cook
Added Mutton and Rabbit to the Cook list of Food
This commit is contained in:
parent
33285f4a43
commit
bdd1e41611
1 changed files with 6 additions and 0 deletions
|
@ -113,6 +113,12 @@ public class Cook {
|
|||
case POTATO_ITEM:
|
||||
cooked = new ItemStack(Material.BAKED_POTATO, 1);
|
||||
break;
|
||||
case MUTTON:
|
||||
cooked = new ItemStack(Material.COOKED_MUTTON);
|
||||
break;
|
||||
case RABBIT:
|
||||
cooked = new ItemStack(Material.COOKED_RABBIT);
|
||||
break;
|
||||
default:
|
||||
break; //Shouldn't happen
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue