From cb195c8f86295a6b4b1f163d54178bb87acd306a Mon Sep 17 00:00:00 2001 From: Reflex18 Date: Wed, 6 Mar 2024 19:25:48 +1000 Subject: [PATCH] Added warpward as an allowed potion for the blood pendant I noticed in botania that there is a number of pedants for potion effects but none for warp ward. However, there are potions in botania for warp ward. --- dependencies.gradle | 6 +++--- settings.gradle | 2 +- src/main/java/vazkii/botania/common/brew/ModBrews.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dependencies.gradle b/dependencies.gradle index 9d443a5d44..eb2b557ab5 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -5,12 +5,12 @@ dependencies { compile('thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev') - compileOnly('com.github.GTNewHorizons:Railcraft:9.15.5:api') {transitive=false} + compileOnly('com.github.GTNewHorizons:Railcraft:9.15.6:api') {transitive=false} compileOnly('com.github.GTNewHorizons:StorageDrawers:1.13.3-GTNH:api') {transitive=false} compileOnly('com.github.GTNewHorizons:ForgeMultipart:1.4.8:dev') {transitive=false} - compileOnly('com.github.GTNewHorizons:NotEnoughItems:2.5.19-GTNH:dev') + compileOnly('com.github.GTNewHorizons:NotEnoughItems:2.5.23-GTNH:dev') compileOnly('com.github.GTNewHorizons:BuildCraft:7.1.39:api') {transitive=false} - compile('com.github.GTNewHorizons:GTNHLib:0.2.7:dev') + compile('com.github.GTNewHorizons:GTNHLib:0.2.10:dev') compileOnly('curse.maven:cofh-lib-220333:2388748') compileOnly('curse.maven:minefactory-reloaded-66672:2366150') diff --git a/settings.gradle b/settings.gradle index 16a5b4ca7d..b11efb014f 100644 --- a/settings.gradle +++ b/settings.gradle @@ -17,7 +17,7 @@ pluginManagement { } plugins { - id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.14' + id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.16' } diff --git a/src/main/java/vazkii/botania/common/brew/ModBrews.java b/src/main/java/vazkii/botania/common/brew/ModBrews.java index b30edbfc6b..05e8e61907 100644 --- a/src/main/java/vazkii/botania/common/brew/ModBrews.java +++ b/src/main/java/vazkii/botania/common/brew/ModBrews.java @@ -74,6 +74,6 @@ public static void initTC() { } if(warpWardPotion != null) - warpWard = new BrewMod(LibBrewNames.WARP_WARD, 0xFBBDFF, 25000, new PotionEffect(warpWardPotion.id, 12000, 0)).setNotBloodPendantInfusable(); + warpWard = new BrewMod(LibBrewNames.WARP_WARD, 0xFBBDFF, 25000, new PotionEffect(warpWardPotion.id, 12000, 0)); } }