reduced default apiarist armor cost
This commit is contained in:
parent
46bf295d2f
commit
36965d957d
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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 =>
|
||||
|
|
Loading…
Reference in a new issue