Fixed Entchanted Books in magic absorber
This commit is contained in:
parent
20201d069a
commit
6b556371aa
1 changed files with 2 additions and 2 deletions
|
@ -199,8 +199,8 @@ public class GT_MetaTileEntity_MagicalEnergyAbsorber extends GT_MetaTileEntity_B
|
||||||
for (int i = 0; i < tEnchantments.tagCount(); i++) {
|
for (int i = 0; i < tEnchantments.tagCount(); i++) {
|
||||||
short tID = ((NBTTagCompound) tEnchantments.getCompoundTagAt(i)).getShort("id");
|
short tID = ((NBTTagCompound) tEnchantments.getCompoundTagAt(i)).getShort("id");
|
||||||
short tLevel = ((NBTTagCompound) tEnchantments.getCompoundTagAt(i)).getShort("lvl");
|
short tLevel = ((NBTTagCompound) tEnchantments.getCompoundTagAt(i)).getShort("lvl");
|
||||||
if ((tID > -1) && (tID < Enchantment.enchantmentsBookList.length)) {
|
if ((tID > -1) && (tID < Enchantment.enchantmentsList.length)) {
|
||||||
Enchantment tEnchantment = Enchantment.enchantmentsBookList[tID];
|
Enchantment tEnchantment = Enchantment.enchantmentsList[tID];
|
||||||
if (tEnchantment != null) {
|
if (tEnchantment != null) {
|
||||||
getBaseMetaTileEntity().increaseStoredEnergyUnits(
|
getBaseMetaTileEntity().increaseStoredEnergyUnits(
|
||||||
1000000 * tLevel / (tEnchantment.getMaxLevel() * tEnchantment.getWeight()), true);
|
1000000 * tLevel / (tEnchantment.getMaxLevel() * tEnchantment.getWeight()), true);
|
||||||
|
|
Loading…
Reference in a new issue