Skip to content

Commit

Permalink
Merge pull request #230 from jsebold666/hotfix/nameplates
Browse files Browse the repository at this point in the history
fix weird lines
  • Loading branch information
jsebold666 authored Aug 16, 2024
2 parents 805810c + 3c29bbe commit 34ef782
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ClassicUO.Client/ClassicUO.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<ApplicationIcon>cuoicon.ico</ApplicationIcon>
<AssemblyName>ClassicUO</AssemblyName>
<RootNamespace>ClassicUO</RootNamespace>
<AssemblyVersion>3.23.0</AssemblyVersion>
<FileVersion>3.23.0</FileVersion>
<AssemblyVersion>3.23.1</AssemblyVersion>
<FileVersion>3.23.1</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand Down
2 changes: 1 addition & 1 deletion src/ClassicUO.Client/Game/UI/Gumps/NameOverheadGump.cs
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ private void DrawResourceBar(UltimaBatcher2D batcher, Mobile m, int x, int y, in
(
SolidColorTextureCache.GetTexture(Color.White),
new Vector2(x + 1, y + 1),
new Rectangle(x, y, Math.Min((int)((Width - 1) * data.Item2), Width - 1), height - 1),
new Rectangle(x, y, Math.Min((int)((Width - 1) * data.Item2), Width - 1), height),
data.Item1
);
nY = y + height;
Expand Down
3 changes: 3 additions & 0 deletions src/ClassicUO.Client/Game/UI/Gumps/VersionHistory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ namespace ClassicUO.Game.UI.Gumps
internal class VersionHistory : Gump
{
private static string[] updateTexts = {
"/c[white][3.23.1]/cd\n" +
"- Fixed Weird lines if show Nameplate",

"/c[white][3.23.0]/cd\n" +
"- Nameplate healthbar poison and invul/paralyzed colors from Elderwyn\n" +
"- Target indiciator option from original client from Elderwyn\n" +
Expand Down

0 comments on commit 34ef782

Please sign in to comment.