- bugfix: Mary & John cannot be escorted if you have 16 mercs in your team

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@644 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Wanne
2006-12-03 21:09:49 +00:00
parent 75f70a13e3
commit af63c20214
2 changed files with 3 additions and 1 deletions
BIN
View File
Binary file not shown.
+3 -1
View File
@@ -4359,7 +4359,9 @@ BOOLEAN PlayerTeamHasTwoSpotsLeft( )
}
}
if ( uiCount <= (UINT32) (gTacticalStatus.Team[ gbPlayerNum ].bLastID - 2) - 2 )
// WANNE
//if ( uiCount <= (UINT32) (gTacticalStatus.Team[ gbPlayerNum ].bLastID - 2) - 2 )
if ( uiCount <= (18 - 2) )
{
return( TRUE );
}