From e17c9e4e9d93e45c3a0c90d809cc611dfc960680 Mon Sep 17 00:00:00 2001 From: joshiejack Date: Tue, 25 Feb 2014 05:34:37 +0000 Subject: [PATCH] Make Alchemy flasks non-repairable setting alchemy flasks to be non-repairable, will stop items such as the ars magica repairer and my anvil from being able to repair flasks, which should be what you'd want from what I understand, since they have their own special repair method. --- .../alchemicalWizardry/common/items/potion/AlchemyFlask.java | 1 + 1 file changed, 1 insertion(+) diff --git a/1.7.2/java/WayofTime/alchemicalWizardry/common/items/potion/AlchemyFlask.java b/1.7.2/java/WayofTime/alchemicalWizardry/common/items/potion/AlchemyFlask.java index 2e625415..56fba9c8 100644 --- a/1.7.2/java/WayofTime/alchemicalWizardry/common/items/potion/AlchemyFlask.java +++ b/1.7.2/java/WayofTime/alchemicalWizardry/common/items/potion/AlchemyFlask.java @@ -42,6 +42,7 @@ public class AlchemyFlask extends Item this.setMaxDamage(8); this.setMaxStackSize(1); setCreativeTab(AlchemicalWizardry.tabBloodMagic); + setNoRepair(); // TODO Auto-generated constructor stub }