Skip to content

Commit

Permalink
Update UIChosenReveal.uc
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackDog86 committed Aug 10, 2023
1 parent ecb1253 commit a8f49ab
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ simulated function OnInit()
if( ChosenStrengths[i].AbilityRevealEvent == '' || ChosenUnitState.RevealedChosenTraits.Find(ChosenStrengths[i].DataName) != INDEX_NONE )
{
/// HL-Docs: ref:Bugfixes; issue:1096
SetStrengthData(i, ChosenStrengths[i].IconImage, ChosenStrengths[i].LocFriendlyName, ChosenStrengths[i].GetMyLongDescription);
SetStrengthData(i, ChosenStrengths[i].IconImage, ChosenStrengths[i].LocFriendlyName, ChosenStrengths[i].GetMyLongDescription());
}
else
{
Expand All @@ -67,7 +67,7 @@ simulated function OnInit()
if( ChosenWeaknesses[i].AbilityRevealEvent == '' || ChosenUnitState.RevealedChosenTraits.Find(ChosenWeaknesses[i].DataName) != INDEX_NONE )
{
/// HL-Docs: ref:Bugfixes; issue:1096
SetWeaknessData(i, ChosenWeaknesses[i].IconImage, ChosenWeaknesses[i].LocFriendlyName, ChosenWeaknesses[i].GetMyLongDescription, ChosenUnitState.bIgnoreWeaknesses);
SetWeaknessData(i, ChosenWeaknesses[i].IconImage, ChosenWeaknesses[i].LocFriendlyName, ChosenWeaknesses[i].GetMyLongDescription(), ChosenUnitState.bIgnoreWeaknesses);
}
else
{
Expand Down Expand Up @@ -224,4 +224,4 @@ DefaultProperties
bConsumeMouseEvents = true
bShowDuringCinematic = true
UnknownChosenTraitIcon = "img:///UILibrary_PerkIcons.UIPerk_unknown"
}
}

0 comments on commit a8f49ab

Please sign in to comment.