Skip to content

Commit

Permalink
remove MA mod, dont check morale consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
SurFlurer committed Jan 12, 2025
1 parent 33d6f66 commit 432f649
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/cnk-multi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ jobs:
del '${{ github.workspace }}\gfx\Ultica_iso\' -Recurse -Force
del '${{ github.workspace }}\gfx\PenAndPaper\' -Recurse -Force
del '${{ github.workspace }}\gfx\ChibiUltica\' -Recurse -Force
- name: remove_mods(win)
if: runner.os == 'Windows'
run: |
del '${{ github.workspace }}\data\mods\MA\' -Recurse -Force
- name: udp (Linux)
if: runner.os != 'Windows'
run: |
Expand Down
2 changes: 1 addition & 1 deletion src/morale.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ bool player_morale::consistent_with( const player_morale &morale ) const
} );

if( iter == rhs.points.end() || lhp.get_net_bonus() != iter->get_net_bonus() ) {
debugmsg( "Morale \"%s\" is inconsistent.", lhp.get_name() );
//debugmsg( "Morale \"%s\" is inconsistent.", lhp.get_name() );
return false;
}
}
Expand Down

0 comments on commit 432f649

Please sign in to comment.