Added Pumps 'half-double' style
This commit is contained in:
@@ -153,12 +153,12 @@ void ScreenSelectMode::UpdateSelectableChoices()
|
||||
// if its joint premium and inclusive of double consider double and versus as needing another coin
|
||||
// if its joint premium and non-inclusive of double consider double as appearing only when one player is available.
|
||||
// if its joint premium, everythings available for play
|
||||
if(
|
||||
(PREFSMAN->m_bJointPremium && INCLUDE_DOUBLE_IN_JP == 1 && ((GAMESTATE->GetNumSidesJoined() == 1 && mc.numSidesJoinedToPlay == 1) || (GAMESTATE->GetNumSidesJoined() == 2 && mc.numSidesJoinedToPlay == 2))) ||
|
||||
(PREFSMAN->m_bJointPremium && INCLUDE_DOUBLE_IN_JP == 0 &&
|
||||
(((modename.substr(0, 6) == "DOUBLE" || modename.substr(0, 13) == "ARCADE-DOUBLE") && GAMESTATE->GetNumSidesJoined() != 2 ) || GAMESTATE->GetNumSidesJoined() == 1 && mc.numSidesJoinedToPlay == 1) ||
|
||||
((modename.substr(0, 6) != "DOUBLE" && modename.substr(0, 13) != "ARCADE-DOUBLE") && GAMESTATE->GetNumSidesJoined() == 2 && mc.numSidesJoinedToPlay == 2)) ||
|
||||
(!PREFSMAN->m_bJointPremium)
|
||||
if( (PREFSMAN->m_bJointPremium && INCLUDE_DOUBLE_IN_JP == 1 && (GAMESTATE->GetNumSidesJoined() == mc.numSidesJoinedToPlay) ) ||
|
||||
(PREFSMAN->m_bJointPremium && INCLUDE_DOUBLE_IN_JP == 0 &&
|
||||
modename.substr(0, 6) == "DOUBLE" || modename.substr(0, 13) == "ARCADE-DOUBLE" ||
|
||||
modename.substr(0, 10) == "HALFDOUBLE" || modename.substr(0, 17) == "ARCADE-HALFDOUBLE" ||
|
||||
(GAMESTATE->GetNumSidesJoined() == mc.numSidesJoinedToPlay)) ||
|
||||
(!PREFSMAN->m_bJointPremium)
|
||||
)
|
||||
{
|
||||
m_iNumChoices++;
|
||||
|
||||
Reference in New Issue
Block a user