From 7dc47892a4f8ac525c06cc0feea8a913d3c2859d Mon Sep 17 00:00:00 2001 From: THDigi Date: Sun, 5 Aug 2012 17:32:35 +0300 Subject: Don't rotate ShapedRecipes. Fixes BUKKIT-1334 ShapedRecipe's getShape() always returns a 90deg rotated shape of the original shape, this commit fixes it. --- src/main/java/net/minecraft/server/ShapedRecipes.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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; -- cgit v1.2.3