summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main/java/net/minecraft/server/ShapedRecipes.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/net/minecraft/server/ShapedRecipes.java b/src/main/java/net/minecraft/server/ShapedRecipes.java
index ec615441..83d4a176 100644
--- a/src/main/java/net/minecraft/server/ShapedRecipes.java
+++ b/src/main/java/net/minecraft/server/ShapedRecipes.java
@@ -25,9 +25,9 @@ public class ShapedRecipes implements IRecipe {
public org.bukkit.inventory.ShapedRecipe toBukkitRecipe() {
CraftItemStack result = new CraftItemStack(this.result);
CraftShapedRecipe recipe = new CraftShapedRecipe(result, this);
- switch (this.width) {
+ switch (this.height) {
case 1:
- switch (this.height) {
+ switch (this.width) {
case 1:
recipe.shape("a");
break;
@@ -40,7 +40,7 @@ public class ShapedRecipes implements IRecipe {
}
break;
case 2:
- switch (this.height) {
+ switch (this.width) {
case 1:
recipe.shape("a","b");
break;
@@ -53,7 +53,7 @@ public class ShapedRecipes implements IRecipe {
}
break;
case 3:
- switch (this.height) {
+ switch (this.width) {
case 1:
recipe.shape("a","b","c");
break;