Skip to content

Commit

Permalink
Fix bug where the AI could raise money or perform fire sale even with…
Browse files Browse the repository at this point in the history
… multiplayer base nodes active
  • Loading branch information
Rampastring committed Jan 17, 2025
1 parent 6fe9e52 commit 49b5c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensions/house/houseext_hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ int HouseClassExt::_Expert_AI()
}
}

if (Session.Type != GAME_NORMAL || spawner_hack_mpnodes) {
if (Session.Type != GAME_NORMAL && !spawner_hack_mpnodes) {

/**
* Records the urgency of all actions possible.
Expand Down

0 comments on commit 49b5c37

Please sign in to comment.