Fixed minor copy-paste error

This commit is contained in:
Nonoriri 2013-11-17 01:17:58 -05:00
parent ac66c01140
commit 4e9bb72d6e
36 changed files with 15 additions and 11 deletions

View File

@ -2,8 +2,12 @@
<classpath> <classpath>
<classpathentry kind="src" path="src"/> <classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="lib" path="C:/Users/Alex/Dropbox/Projects/External Plugins/bukkit-1.6.4-R1.0.jar"/> <classpathentry kind="lib" path="C:/Users/Nonoriri/Desktop/MC/External Plugins/bukkit-1.6.4-R2.1-20131031.000035-1.jar">
<classpathentry kind="lib" path="C:/Users/Alex/Dropbox/Projects/External Plugins/Vault.jar"/> <attributes>
<classpathentry kind="lib" path="C:/Users/Alex/Dropbox/Projects/External Plugins/WorldEdit.jar"/> <attribute name="javadoc_location" value="http://jd.bukkit.org/rb/apidocs/"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="C:/Users/Nonoriri/Desktop/MC/External Plugins/Vault.jar"/>
<classpathentry kind="lib" path="C:/Users/Nonoriri/Desktop/MC/External Plugins/WorldEdit.jar"/>
<classpathentry kind="output" path="bin"/> <classpathentry kind="output" path="bin"/>
</classpath> </classpath>

View File

@ -320,27 +320,27 @@ public class Main extends JavaPlugin
Bukkit.addRecipe(stone); Bukkit.addRecipe(stone);
ShapedRecipe sandstone = new ShapedRecipe(new ItemStack(Material.SANDSTONE, 1)); ShapedRecipe sandstone = new ShapedRecipe(new ItemStack(Material.SANDSTONE, 1));
sandstone.shape("aa"); sandstone.shape("aa");
stone.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 1).getData()); sandstone.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 1).getData());
Bukkit.addRecipe(sandstone); Bukkit.addRecipe(sandstone);
ShapedRecipe cobblestone = new ShapedRecipe(new ItemStack(Material.COBBLESTONE, 1)); ShapedRecipe cobblestone = new ShapedRecipe(new ItemStack(Material.COBBLESTONE, 1));
cobblestone.shape("aa"); cobblestone.shape("aa");
stone.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 3).getData()); cobblestone.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 3).getData());
Bukkit.addRecipe(cobblestone); Bukkit.addRecipe(cobblestone);
ShapedRecipe bricks = new ShapedRecipe(new ItemStack(Material.BRICK, 1)); ShapedRecipe bricks = new ShapedRecipe(new ItemStack(Material.BRICK, 1));
bricks.shape("aa"); bricks.shape("aa");
stone.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 4).getData()); bricks.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 4).getData());
Bukkit.addRecipe(bricks); Bukkit.addRecipe(bricks);
ShapedRecipe stone_bricks = new ShapedRecipe(new ItemStack(Material.SMOOTH_BRICK, 1)); ShapedRecipe stone_bricks = new ShapedRecipe(new ItemStack(Material.SMOOTH_BRICK, 1));
stone_bricks.shape("aa"); stone_bricks.shape("aa");
stone.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 5).getData()); stone_bricks.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 5).getData());
Bukkit.addRecipe(stone_bricks); Bukkit.addRecipe(stone_bricks);
ShapedRecipe nether_bricks = new ShapedRecipe(new ItemStack(Material.NETHER_BRICK, 1)); ShapedRecipe nether_bricks = new ShapedRecipe(new ItemStack(Material.NETHER_BRICK, 1));
nether_bricks.shape("aa"); nether_bricks.shape("aa");
stone.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 6).getData()); nether_bricks.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 6).getData());
Bukkit.addRecipe(nether_bricks); Bukkit.addRecipe(nether_bricks);
ShapedRecipe nether_quartz = new ShapedRecipe(new ItemStack(Material.QUARTZ, 1)); ShapedRecipe nether_quartz = new ShapedRecipe(new ItemStack(Material.QUARTZ, 1));
nether_quartz.shape("aa"); nether_quartz.shape("aa");
stone.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 7).getData()); nether_quartz.setIngredient('a', new ItemStack(Material.STEP, 1, (short) 7).getData());
Bukkit.addRecipe(nether_quartz); Bukkit.addRecipe(nether_quartz);
//Add Recipes for new Block armor crafting. //Add Recipes for new Block armor crafting.
@ -515,7 +515,7 @@ public class Main extends JavaPlugin
Builder_job.addData("STONE BRICK", 0.04, 8, 0); Builder_job.addData("STONE BRICK", 0.04, 8, 0);
Builder_job.addData("GLASS", 0.04, 8, 0); Builder_job.addData("GLASS", 0.04, 8, 0);
Builder_job.addData("QUARTZ SLAB", 0.05, 9, 0); Builder_job.addData("QUARTZ SLAB", 0.05, 9, 0);
Builder_job.addData("nether_bricks SLAB", 0.05, 9, 0); Builder_job.addData("BRICKS SLAB", 0.05, 9, 0);
Builder_job.addData("GLOWSTONE", 0.05, 10, 0); Builder_job.addData("GLOWSTONE", 0.05, 10, 0);
Builder_job.addData("HARDENED CLAY", 0.05, 10, 0); Builder_job.addData("HARDENED CLAY", 0.05, 10, 0);
Builder_job.addData("STAINED CLAY", 0.05, 10, 0); Builder_job.addData("STAINED CLAY", 0.05, 10, 0);
@ -545,7 +545,7 @@ public class Main extends JavaPlugin
Digger_job.addData("SANDSTONE", 0.02, 6, 1); Digger_job.addData("SANDSTONE", 0.02, 6, 1);
Digger_job.addData("SMOOTH SANDSTONE", 0.02, 6, 1); Digger_job.addData("SMOOTH SANDSTONE", 0.02, 6, 1);
Digger_job.addData("CHISELED SANDSTONE", 0.025, 7, 1); Digger_job.addData("CHISELED SANDSTONE", 0.025, 7, 1);
Digger_job.addData("nether_bricks", 0.04, 8, 1); Digger_job.addData("BRICKS", 0.04, 8, 1);
Digger_job.addData("GLASS", 0.015, 3, 2); Digger_job.addData("GLASS", 0.015, 3, 2);
Digger_job.addData("BRICK", 0.04, 8, 2); Digger_job.addData("BRICK", 0.04, 8, 2);
Digger_job.addData("HARDENED CLAY", 0.04, 8, 2); Digger_job.addData("HARDENED CLAY", 0.04, 8, 2);