reduced default apiarist armor cost

This commit is contained in:
MachineMuse 2013-06-15 04:39:39 -06:00
parent 46bf295d2f
commit 36965d957d
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ public class ApiaristArmorModule extends PowerModuleBase {
ItemStack stack = ModCompatability.getForestryItem("craftingMaterial", 6);
stack.setItemDamage(3);
addInstallCost(stack);
addBaseProperty(APIARIST_ARMOR_ENERGY_CONSUMPTION, 1000, "J");
addBaseProperty(APIARIST_ARMOR_ENERGY_CONSUMPTION, 10, "J");
}
@Override

View file

@ -30,7 +30,7 @@ object RichInputStream {
* Reads a compressed NBTTagCompound from the InputStream
*/
def readNBTTagCompound = {
val nbtSize = in.readShort
val nbtSize: Short = in.readShort
nbtSize match {
case -1 => null
case s =>