From 8393b63344efc86b5ed18df1267107d548469113 Mon Sep 17 00:00:00 2001 From: Tobias <23401986+Keraldi@users.noreply.github.com> Date: Wed, 9 Dec 2020 16:52:16 +0100 Subject: [PATCH 1/4] Improved capacity formula ``` def keraldi2(cap, cap_aug): cap_aug = cap_aug * (0.99 ** abs(cap_aug - cap)) return round(2000 * (cap + 5) * 1.1 ** cap_aug) ``` results: ``` assignMax(keraldi2, 6) (6, 0, 22000) assignMax(keraldi2, 7) (6, 1, 24087) assignMax(keraldi2, 8) (5, 3, 26469) assignMax(keraldi2, 9) (5, 4, 29171) assignMax(keraldi2, 10) (5, 5, 32210) assignMax(keraldi2, 20) (9, 11, 78238) assignMax(keraldi2, 30) (12, 18, 170980) assignMax(keraldi2, 40) (16, 24, 346678) assignMax(keraldi2, 50) (21, 29, 666277) assignMax(keraldi2, 60) (27, 33, 1236525) assignMax(keraldi2, 70) (34, 36, 2252048) assignMax(keraldi2, 80) (40, 40, 4073333) assignMax(keraldi2, 90) (45, 45, 7289048) assignMax(keraldi2, 100) (50, 50, 12912994) ``` --- src/main/java/wayoftime/bloodmagic/altar/BloodAltar.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/wayoftime/bloodmagic/altar/BloodAltar.java b/src/main/java/wayoftime/bloodmagic/altar/BloodAltar.java index 61e8659c..f5f64b80 100644 --- a/src/main/java/wayoftime/bloodmagic/altar/BloodAltar.java +++ b/src/main/java/wayoftime/bloodmagic/altar/BloodAltar.java @@ -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); } } -} \ No newline at end of file +} From 9c1e1a7050590103ec6cbb7e5d441345cc7850bd Mon Sep 17 00:00:00 2001 From: Victorsueca Date: Wed, 30 Dec 2020 19:13:00 +0100 Subject: [PATCH 2/4] Fix non [a-z0-9/._-] character in path of location (#1732) Fixes a net.minecraft.util.ResourceLocationException that happens when the mod is loaded with Actually Additions due to the third party crop integration using an old block ID with deprecated casing. --- .../ritual/harvest/HarvestHandlerPlantable.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/wayoftime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java b/src/main/java/wayoftime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java index 444ba07f..0ea5fb82 100644 --- a/src/main/java/wayoftime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java +++ b/src/main/java/wayoftime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java @@ -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"); } } -} \ No newline at end of file +} From 2d4ea508c07a95496d0582b22de58d326d090df3 Mon Sep 17 00:00:00 2001 From: wrincewind Date: Wed, 30 Dec 2020 18:13:33 +0000 Subject: [PATCH 3/4] fixed typo - language file has ritual.notValid (#1722) --- .../java/wayoftime/bloodmagic/tile/TileMasterRitualStone.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/wayoftime/bloodmagic/tile/TileMasterRitualStone.java b/src/main/java/wayoftime/bloodmagic/tile/TileMasterRitualStone.java index dee9573e..5aa0f181 100644 --- a/src/main/java/wayoftime/bloodmagic/tile/TileMasterRitualStone.java +++ b/src/main/java/wayoftime/bloodmagic/tile/TileMasterRitualStone.java @@ -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; From e0477dede763f72194b33eae36958ece697c9790 Mon Sep 17 00:00:00 2001 From: Sydney Date: Wed, 30 Dec 2020 13:14:05 -0500 Subject: [PATCH 4/4] Remove unused URLs (#1731) This is to prevent console spam when loading the mod. --- src/main/resources/META-INF/mods.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 7e45a9f4..182a4fe5 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -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 -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