diff options
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/forestry/bees')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/forestry/bees/items/MB_ItemFrame.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/forestry/bees/items/MB_ItemFrame.java b/src/Java/gtPlusPlus/xmod/forestry/bees/items/MB_ItemFrame.java index f57caff45b..65b6977b8a 100644 --- a/src/Java/gtPlusPlus/xmod/forestry/bees/items/MB_ItemFrame.java +++ b/src/Java/gtPlusPlus/xmod/forestry/bees/items/MB_ItemFrame.java @@ -91,8 +91,12 @@ public class MB_ItemFrame extends Item implements IHiveFrame } @Override - public boolean isBookEnchantable(final ItemStack itemstack1, final ItemStack itemstack2) - { + public boolean isBookEnchantable(final ItemStack itemstack1, final ItemStack itemstack2) { + return false; + } + + @Override + public boolean isRepairable() { return false; } |