8000 Fix: Stopped Characters Resigning While Campaign is In Transit (Again) by IllianiBird · Pull Request #6947 · MegaMek/mekhq · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix: Stopped Characters Resigning While Campaign is In Transit (Again) #6947

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MekHQ/src/mekhq/campaign/Campaign.java
Original file line number Diff line number Diff line change
Expand Up @@ -9177,7 +9177,7 @@ public boolean checkOverDueLoans() {
* "Employee Turnover", 1 if user selected "Advance Day Regardless", 2 if user selected "Cancel Advance Day"
*/
public int checkTurnoverPrompt() {
if (location.isInTransit()) {
if (!location.isOnPlanet()) {
return -1;
}

Expand Down
Loading
0