mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 04:56:50 +01:00
Potentially fixed inventory issues. This (should) fix issue BUKKIT-860
This commit is contained in:
parent
fb668b428b
commit
a726f6de3e
2 changed files with 4 additions and 4 deletions
4
pom.xml
4
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue