Skip to content

Commit

Permalink
more descriptive tooltip for topstat even/odd
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed Apr 30, 2023
1 parent 92e9122 commit 49b53f3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ARKBreedingStats/uiControls/StatWeighting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -322,15 +322,16 @@ private void SetState(byte state)
{
case 1:
Text = "1";
_tt.SetToolTip(this, "high level has to be odd");
_tt.SetToolTip(this, "high level has to be odd to be a top stat");
break;
case 2:
Text = "2";
_tt.SetToolTip(this, "high level has to be even");
_tt.SetToolTip(this, "high level has to be even to be a top stat");
break;
default:
_buttonState = 0;
Text = string.Empty;
_tt.SetToolTip(this, "high level can be even or odd");
break;
}
}
Expand Down

0 comments on commit 49b53f3

Please sign in to comment.