Potentially fixed inventory issues. This (should) fix issue BUKKIT-860

This commit is contained in:
Nathan Adams 2012-03-01 13:35:36 +00:00
parent fb668b428b
commit a726f6de3e
2 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<packaging>jar</packaging>
<version>1.1-R5</version>
<version>1.1-R6-SNAPSHOT</version>
<name>CraftBukkit</name>
<url>http://www.bukkit.org</url>
@ -51,7 +51,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.1-R5</version>
<version>1.1-R6-SNAPSHOT</version>
<type>jar</type>
<scope>compile</scope>
</dependency>

View file

@ -18,11 +18,11 @@ public class CraftInventoryCrafting extends CraftInventory implements CraftingIn
}
public IInventory getResultInventory() {
return inventory;
return resultInventory;
}
public IInventory getMatrixInventory() {
return resultInventory;
return inventory;
}
@Override