Skip to content

Commit

Permalink
V2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Otamamori917 committed Apr 26, 2024
1 parent ab7fb4c commit a0df6d1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion mod.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 1 addition & 6 deletions src/axthrix/content/AxthrixTechTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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
);

}
}
5 changes: 5 additions & 0 deletions src/axthrix/content/units/AxthrixUnits.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.*;
Expand Down Expand Up @@ -2590,5 +2591,9 @@ public static void load(){
}};
}});
}};

immuneUnits.add(
anagh
);
}
}

0 comments on commit a0df6d1

Please sign in to comment.