Added Filter Cube recipe to '/craft' menu.

This commit is contained in:
sigonasr2 2016-12-11 14:50:24 -06:00
parent a15d7dd735
commit 975470d6fa
4 changed files with 8 additions and 2 deletions

Binary file not shown.

View File

@ -1,6 +1,6 @@
name: TwosideKeeper name: TwosideKeeper
main: sig.plugin.TwosideKeeper.TwosideKeeper main: sig.plugin.TwosideKeeper.TwosideKeeper
version: 3.9.1 version: 3.10.0
commands: commands:
money: money:
description: Tells the player the amount of money they are holding. description: Tells the player the amount of money they are holding.

View File

@ -37,6 +37,12 @@ public enum RecipeLinker {
new ItemStack(Material.DIAMOND_BLOCK),new ItemStack(Material.ENDER_CHEST),new ItemStack(Material.DIAMOND_BLOCK), new ItemStack(Material.DIAMOND_BLOCK),new ItemStack(Material.ENDER_CHEST),new ItemStack(Material.DIAMOND_BLOCK),
new ItemStack(Material.ENDER_PEARL),new ItemStack(Material.REDSTONE_BLOCK),new ItemStack(Material.ENDER_PEARL) new ItemStack(Material.ENDER_PEARL),new ItemStack(Material.REDSTONE_BLOCK),new ItemStack(Material.ENDER_PEARL)
}), }),
filtercube(RecipeCategory.CONTAINERS,ChatColor.YELLOW,"Filter Cube",new ItemStack[]{
CustomItem.FilterCube(),
new ItemStack(Material.IRON_BLOCK),new ItemStack(Material.IRON_BLOCK),new ItemStack(Material.IRON_BLOCK),
new ItemStack(Material.DIAMOND_BLOCK),new ItemStack(Material.CHEST),new ItemStack(Material.DIAMOND_BLOCK),
new ItemStack(Material.DIAMOND_BLOCK),new ItemStack(Material.HOPPER),new ItemStack(Material.DIAMOND_BLOCK)
}),
dc(RecipeCategory.CONTAINERS,ChatColor.YELLOW,"Duplicate Ender Item Cube",new ItemStack[]{ dc(RecipeCategory.CONTAINERS,ChatColor.YELLOW,"Duplicate Ender Item Cube",new ItemStack[]{
CustomItem.EnderItemCube(2), CustomItem.EnderItemCube(2),
CustomItem.EnderItemCube(),new ItemStack(Material.NETHER_STAR) CustomItem.EnderItemCube(),new ItemStack(Material.NETHER_STAR)

View File

@ -155,7 +155,7 @@ public class CustomItem {
return FilterCube; return FilterCube;
} }
private static ItemStack FilterCube() { public static ItemStack FilterCube() {
ItemStack item_FilterCube = new ItemStack(Material.HOPPER_MINECART); ItemStack item_FilterCube = new ItemStack(Material.HOPPER_MINECART);
List<String> item_FilterCube_lore = new ArrayList<String>(); List<String> item_FilterCube_lore = new ArrayList<String>();
item_FilterCube_lore.add("A storage container that holds up"); item_FilterCube_lore.add("A storage container that holds up");