Skip to content

Commit

Permalink
h
Browse files Browse the repository at this point in the history
  • Loading branch information
EyeOfDarkness committed Jan 14, 2024
1 parent e0d7c6a commit e518168
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- name: Set up PATH
run: |
echo "${ANDROID_HOME}/build-tools/30.0.1" >> $GITHUB_PATH
echo "${ANDROID_HOME}/build-tools/34.0.0" >> $GITHUB_PATH
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion src/flame/special/SpecialContent.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void updateUnits(){

if(types.isEmpty()){
for(UnitType unit : Vars.content.units()){
if(unit.internal || unit.hidden || unit == FlameUnitTypes.despondency) continue;
if(unit.internal || unit.hidden) continue;

if(unit.minfo != null && unit.minfo.mod != minfo){
tmp.sort(u -> -(FlameOutSFX.inst.getUnitDps(u) + u.health));
Expand Down
1 change: 1 addition & 0 deletions src/flame/unit/empathy/EmpathyDamage.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public static void initContent(){
}

public static void exclude(Unit unit){
if(!SpecialMain.validEmpathySpawn()) return;
if(exclude.add(unit.id)){
excludeSeq.add(unit);
}
Expand Down

0 comments on commit e518168

Please sign in to comment.