Massive renaming update in nms. If you bypassed Bukkit, you will likely break.

Also minimized all the nms diffs and generic cleanups all around.
This commit is contained in:
Erik Broes
2011-06-27 00:25:01 +02:00
parent 9e5dba8306
commit a98c7ba2c7
126 changed files with 1329 additions and 1772 deletions

View File

@@ -8,7 +8,7 @@ public class InventoryCrafting implements IInventory {
// CraftBukkit start
public ItemStack[] getContents() {
return items;
return this.items;
}
// CraftBukkit end
@@ -42,7 +42,7 @@ public class InventoryCrafting implements IInventory {
return "Crafting";
}
public ItemStack a(int i, int j) {
public ItemStack splitStack(int i, int j) {
if (this.items[i] != null) {
ItemStack itemstack;