Merge branch '1.16.3' of https://github.com/WayofTime/BloodMagic into 1.16.3
This commit is contained in:
commit
510ec5cce5
|
@ -453,7 +453,9 @@ public class BloodAltar// implements IFluidHandler
|
|||
this.efficiencyMultiplier = (float) Math.pow(0.85, upgrade.getLevel(BloodRuneType.EFFICIENCY));
|
||||
this.sacrificeEfficiencyMultiplier = (float) (0.10 * upgrade.getLevel(BloodRuneType.SACRIFICE));
|
||||
this.selfSacrificeEfficiencyMultiplier = (float) (0.10 * upgrade.getLevel(BloodRuneType.SELF_SACRIFICE));
|
||||
this.capacityMultiplier = (float) ((1 + 0.20 * upgrade.getLevel(BloodRuneType.CAPACITY)) * Math.pow(1.075, upgrade.getLevel(BloodRuneType.AUGMENTED_CAPACITY)));
|
||||
int cap = upgrade.getLevel(BloodRuneType.CAPACITY);
|
||||
int cap_aug = upgrade.getLevel(BloodRuneType.AUGMENTED_CAPACITY);
|
||||
this.capacityMultiplier = (float) ((1 + 0.20 * cap) * Math.pow(1.1, cap_aug * Math.pow(0.99, Math.abs(cap_aug - cap))));
|
||||
this.dislocationMultiplier = (float) (Math.pow(1.2, upgrade.getLevel(BloodRuneType.DISPLACEMENT)));
|
||||
this.orbCapacityMultiplier = (float) (1 + 0.02 * upgrade.getLevel(BloodRuneType.ORB));
|
||||
this.chargingFrequency = Math.max(20 - accelerationUpgrades, 1);
|
||||
|
@ -801,4 +803,4 @@ public class BloodAltar// implements IFluidHandler
|
|||
return altar.drain(maxDrain, action == FluidAction.EXECUTE);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,9 +42,9 @@ public class HarvestHandlerPlantable implements IHarvestHandler
|
|||
HarvestRegistry.registerStandardCrop(Blocks.BEETROOTS, 3);
|
||||
HarvestRegistry.registerStandardCrop(Blocks.NETHER_WART, 3);
|
||||
|
||||
addThirdPartyCrop("actuallyadditions", "blockFlax", 7);
|
||||
addThirdPartyCrop("actuallyadditions", "blockCanola", 7);
|
||||
addThirdPartyCrop("actuallyadditions", "blockRice", 7);
|
||||
addThirdPartyCrop("actuallyadditions", "flax_block", 7);
|
||||
addThirdPartyCrop("actuallyadditions", "canola_block", 7);
|
||||
addThirdPartyCrop("actuallyadditions", "rice_block", 7);
|
||||
|
||||
addThirdPartyCrop("extrautils2", "redorchid", 6);
|
||||
addThirdPartyCrop("extrautils2", "enderlily", 7);
|
||||
|
@ -149,4 +149,4 @@ public class HarvestHandlerPlantable implements IHarvestHandler
|
|||
BMLog.DEFAULT.error("HarvestCraft integration cancelled; crop name lookup broke");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -234,7 +234,7 @@ public class TileMasterRitualStone extends TileTicking implements IMasterRitualS
|
|||
} else
|
||||
{
|
||||
if (activator != null)
|
||||
activator.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.ritual.notvalid"), true);
|
||||
activator.sendStatusMessage(new TranslationTextComponent("chat.bloodmagic.ritual.notValid"), true);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
|
@ -20,10 +20,6 @@ modId="bloodmagic" #mandatory
|
|||
version="${file.jarVersion}" #mandatory
|
||||
# A display name for the mod
|
||||
displayName="Blood Magic" #mandatory
|
||||
# A URL to query for updates for this mod. See the JSON update specification <here>
|
||||
updateJSONURL="http://myurl.me/" #optional
|
||||
# A URL for the "homepage" for this mod, displayed in the mod UI
|
||||
displayURL="http://example.com/" #optional
|
||||
# A file name (in the root of the mod JAR) containing a logo for display
|
||||
logoFile="examplemod.png" #optional
|
||||
# A text field displayed in the mod UI
|
||||
|
|
Loading…
Reference in a new issue