Skip to content

Commit

Permalink
Fix pre-equip not working in crash sites
Browse files Browse the repository at this point in the history
  • Loading branch information
SupSuper committed Jun 8, 2021
1 parent 390ed68 commit f3eea81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Battlescape/BattlescapeState.cpp
Expand Up @@ -2170,7 +2170,7 @@ bool BattlescapeState::allowButtons(bool allowSaving) const
{
return ((allowSaving || _save->getSide() == FACTION_PLAYER || _save->getDebugMode())
&& (_battleGame->getPanicHandled() || _firstInit )
&& (allowSaving || !_battleGame->isBusy())
&& (allowSaving || !_battleGame->isBusy() || _firstInit)
&& (_map->getProjectile() == 0));
}

Expand Down

0 comments on commit f3eea81

Please sign in to comment.