Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
jeannsebold6666 committed May 30, 2024
1 parent 19d6b72 commit 5bb2042
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ClassicUO.Client/ClassicUO.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<ApplicationIcon>cuoicon.ico</ApplicationIcon>
<AssemblyName>ClassicUO</AssemblyName>
<RootNamespace>ClassicUO</RootNamespace>
Expand Down
6 changes: 3 additions & 3 deletions src/ClassicUO.Client/Game/UI/Gumps/ModernOptionsGump.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2270,12 +2270,12 @@ private void BuildDust765()
profile.OffscreenTargeting = b;
}), true, page);
content.BlankLine();
content.AddToRight(new CheckboxWithLabel("Auto Open HealthBars Gump GetEnemey", 0, profile.AutoOpenHealth, (b) =>
content.AddToRight(new CheckboxWithLabel("Set target with is out range", 0, profile.SetTargetOut, (b) =>
{
profile.AutoOpenHealth = b;
profile.SetTargetOut = b;
}), true, page);
content.BlankLine();
content.AddToRight(new CheckboxWithLabel("Auto Open HealthBars Gump GetEnemey", 0, profile.AutoOpenHealth, (b) =>
content.AddToRight(new CheckboxWithLabel("Auto Open Health bar gump Get Enemy", 0, profile.AutoOpenHealth, (b) =>
{
profile.AutoOpenHealth = b;
}), true, page);
Expand Down
4 changes: 2 additions & 2 deletions src/ClassicUO.Client/Game/UI/Gumps/OptionsGump.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6033,12 +6033,12 @@ private void BuildDust()
section7.Add(_offscreenTargeting = AddCheckBox(null, "Offscreen targeting (always on)", true, startX, startY)); //has no effect but feature list
startY += _offscreenTargeting.Height + 2;

section7.Add(_autoOpenHealth = AddCheckBox(null, "Auto Open HealthBars Gump GetEnemey", true, startX, startY)); //has no effect but feature list
section7.Add(_autoOpenHealth = AddCheckBox(null, "Auto Open Health bar gump Get Enemy", true, startX, startY)); //has no effect but feature list
startY += _autoOpenHealth.Height + 2;



section7.Add(_setTargetOut = AddCheckBox(null, "Set Target to Out Range", true, startX, startY)); //has no effect but feature list
section7.Add(_setTargetOut = AddCheckBox(null, "Set target with is out range", true, startX, startY)); //has no effect but feature list
startY += _setTargetOut.Height + 2;

section7.Add(_SpecialSetLastTargetCliloc = AddCheckBox(null, "Razor * Target * to lasttarget string", _currentProfile.SpecialSetLastTargetCliloc, startX, startY));
Expand Down

0 comments on commit 5bb2042

Please sign in to comment.