updated soldier tooltips

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@629 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Wanne
2006-11-12 16:24:53 +00:00
parent c0385017de
commit b5601c78d9
3 changed files with 18 additions and 18 deletions
+3 -3
View File
@@ -96,8 +96,8 @@ void SoldierTooltip( SOLDIERTYPE* pSoldier )
}
else
{
// beyond visual range, do not display tooltip if player has not chosen debug details
if ( ubTooltipDetailLevel < DL_Debug )
// beyond visual range, do not display tooltip if player has not chosen full or debug details
if ( ubTooltipDetailLevel < DL_Full )
return;
}
} // fMercIsUsingScope is false
@@ -105,7 +105,7 @@ void SoldierTooltip( SOLDIERTYPE* pSoldier )
// WANNE: Check if enemy soldier is in line of sight but only if player has not choosen debug details
if ( ubTooltipDetailLevel < DL_Debug)
if ( ubTooltipDetailLevel < DL_Full)
{
// Get the current selected merc
SOLDIERTYPE* pMerc = MercPtrs[ gusSelectedSoldier ];