From a0df6d1def6a84242a81dec7006ec4343424255d Mon Sep 17 00:00:00 2001 From: Otamamori917 <117782096+Otamamori917@users.noreply.github.com> Date: Fri, 26 Apr 2024 06:21:09 -0400 Subject: [PATCH] V2.2.0 --- build.gradle | 2 +- mod.hjson | 2 +- src/axthrix/content/AxthrixTechTree.java | 7 +------ src/axthrix/content/units/AxthrixUnits.java | 5 +++++ 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index e0b86cb..6e5b570 100644 --- a/build.gradle +++ b/build.gradle @@ -34,7 +34,7 @@ allprojects{ dependencies{ compileOnly "com.github.Anuken.Arc:arc-core:$mindustryVersion" compileOnly "com.github.Anuken.Mindustry:core:$mindustryVersion" - compileOnly 'com.github.MEEPofFaith:MindustryBlackHoleRenderer:v13' + compileOnly 'com.github.MEEPofFaith:MindustryBlackHoleRenderer:v15' implementation 'com.github.liplum:MultiCrafterLib:v1.7' annotationProcessor "com.github.Anuken:jabel:$jabelVersion" } diff --git a/mod.hjson b/mod.hjson index 0802e87..06ffb8a 100644 --- a/mod.hjson +++ b/mod.hjson @@ -13,7 +13,7 @@ contributors: ''' main: "axthrix.AxthrixLoader" description: "BETA sandbox only! requires blackhole render by meep of faith" -version: 2.1 +version: 2.2 "dependencies": ["black-hole-renderer"] minGameVersion: 144.2 java: true \ No newline at end of file diff --git a/src/axthrix/content/AxthrixTechTree.java b/src/axthrix/content/AxthrixTechTree.java index 98e3d75..7b9025b 100644 --- a/src/axthrix/content/AxthrixTechTree.java +++ b/src/axthrix/content/AxthrixTechTree.java @@ -6,7 +6,7 @@ import mindustry.game.EventType; import axthrix.world.teamResearch; -import static blackhole.utils.BlackHoleUtils.immuneUnits; + import static mindustry.content.TechTree.node; import static mindustry.content.TechTree.nodeRoot; @@ -40,10 +40,5 @@ public static void load() Vars.ui.research.rebuildTree(t.refTeam.techTree); } }); - //DON'T REMOVE REQUIRED FOR ANAGH TREE - immuneUnits.add( - AxthrixUnits.anagh - ); - } } diff --git a/src/axthrix/content/units/AxthrixUnits.java b/src/axthrix/content/units/AxthrixUnits.java index fbe1236..a21e7c9 100644 --- a/src/axthrix/content/units/AxthrixUnits.java +++ b/src/axthrix/content/units/AxthrixUnits.java @@ -17,6 +17,7 @@ import axthrix.world.types.unittypes.MountUnitType; import axthrix.world.types.weapontypes.WeaponHelix; import blackhole.entities.part.BlackHolePart; +import static blackhole.utils.BlackHoleUtils.immuneUnits; import mindustry.entities.abilities.*; import axthrix.world.types.abilities.*; import axthrix.world.types.bulletypes.*; @@ -2590,5 +2591,9 @@ public static void load(){ }}; }}); }}; + + immuneUnits.add( + anagh + ); } } \ No newline at end of file