Made books less powerful, though you should still read them!

This commit is contained in:
EvilSeph
2012-10-27 20:44:11 -04:00
parent bd6c824c11
commit df7f86d028
2 changed files with 15 additions and 1 deletions

View File

@@ -329,4 +329,14 @@ public final class ItemStack {
public boolean hasEnchantments() {
return this.tag != null && this.tag.hasKey("ench");
}
// CraftBukkit start - temporary method for book fix
public void a(String s, NBTBase nbtbase) {
if (this.tag == null) {
this.setTag(new NBTTagCompound());
}
this.tag.set(s, nbtbase);
}
// CraftBukkit end
}