summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/InventoryCrafting.java
diff options
context:
space:
mode:
authorDinnerbone <dinnerbone@dinnerbone.com>2011-02-23 02:37:56 +0000
committerDinnerbone <dinnerbone@dinnerbone.com>2011-02-23 02:37:56 +0000
commitf759e0b60d3a575d31921c930e436af321b0e7e8 (patch)
tree4b1eb7ac01670854c686b1f6faa2f97ff337f7d7 /src/main/java/net/minecraft/server/InventoryCrafting.java
parenta124bfdab59cc9a9d8369425027e61eccd1d62fb (diff)
downloadcraftbukkit-f759e0b60d3a575d31921c930e436af321b0e7e8.tar
craftbukkit-f759e0b60d3a575d31921c930e436af321b0e7e8.tar.gz
craftbukkit-f759e0b60d3a575d31921c930e436af321b0e7e8.tar.lz
craftbukkit-f759e0b60d3a575d31921c930e436af321b0e7e8.tar.xz
craftbukkit-f759e0b60d3a575d31921c930e436af321b0e7e8.zip
Update to Minecraft 1.3 beta
Diffstat (limited to 'src/main/java/net/minecraft/server/InventoryCrafting.java')
-rw-r--r--src/main/java/net/minecraft/server/InventoryCrafting.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/main/java/net/minecraft/server/InventoryCrafting.java b/src/main/java/net/minecraft/server/InventoryCrafting.java
index 31a58c49..67dd7ffc 100644
--- a/src/main/java/net/minecraft/server/InventoryCrafting.java
+++ b/src/main/java/net/minecraft/server/InventoryCrafting.java
@@ -20,29 +20,29 @@ public class InventoryCrafting implements IInventory {
this.b = i;
}
- public int h_() {
+ public int m_() {
return this.a.length;
}
- public ItemStack a(int i) {
- return i >= this.h_() ? null : this.a[i];
+ public ItemStack c_(int i) {
+ return i >= this.m_() ? null : this.a[i];
}
- public ItemStack a(int i, int j) {
+ public ItemStack b(int i, int j) {
if (i >= 0 && i < this.b) {
int k = i + j * this.b;
- return this.a(k);
+ return this.c_(k);
} else {
return null;
}
}
- public String b() {
+ public String c() {
return "Crafting";
}
- public ItemStack b(int i, int j) {
+ public ItemStack a(int i, int j) {
if (this.a[i] != null) {
ItemStack itemstack;
@@ -70,11 +70,11 @@ public class InventoryCrafting implements IInventory {
this.c.a((IInventory) this);
}
- public int c() {
+ public int n_() {
return 64;
}
- public void d() {}
+ public void h() {}
public boolean a_(EntityHuman entityhuman) {
return true;