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
}

View File

@ -1426,7 +1426,11 @@ public class NetServerHandler extends NetHandler {
itemstack1 = this.player.inventory.getItemInHand();
if (itemstack != null && itemstack.id == Item.WRITTEN_BOOK.id && itemstack1.id == Item.BOOK_AND_QUILL.id) {
itemstack1.setTag(itemstack.getTag());
// CraftBukkit start
itemstack1.a("author", new NBTTagString("author", this.player.name));
itemstack1.a("title", new NBTTagString("title", itemstack.getTag().getString("title")));
itemstack1.a("pages", itemstack.getTag().getList("pages"));
// CraftBukkit end
itemstack1.id = Item.WRITTEN_BOOK.id;
}
} catch (Exception exception1) {