Skip to content

Commit

Permalink
Fix reference to TargetHealth
Browse files Browse the repository at this point in the history
  • Loading branch information
wallabra committed Dec 2, 2023
1 parent 3218e4f commit 87f793f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions Classes/MushMatchMutator.uc
Original file line number Diff line number Diff line change
Expand Up @@ -841,8 +841,7 @@ simulated function bool HUD_DrawSpecialIdentifyInfo(Canvas Drawer, PlayerReplica
BaseHUD.DrawTwoColorID(Drawer,
"Immune",
Int(100 * OtherPRL.ImmuneLevel) $"%",
Drawer.ClipY - (256 - Linefeed) * BaseHUD.Scale
);
Drawer.ClipY - (256 - Linefeed) * BaseHUD.Scale);
Linefeed += 24;
Drawer.DrawColor = BaseHUD.GreenColor;
Expand All @@ -858,8 +857,8 @@ simulated function bool HUD_DrawSpecialIdentifyInfo(Canvas Drawer, PlayerReplica
BaseHUD.DrawTwoColorID(Drawer,
"Health",
Health,
Drawer.ClipY - (256 - Linefeed) * BaseHUD.Scale));
String(TargetHealth),
Drawer.ClipY - (256 - Linefeed) * BaseHUD.Scale);
Linefeed += 24;

Drawer.DrawColor = BaseHUD.GreenColor;
Expand Down
4 changes: 2 additions & 2 deletions buildconfig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
export name="Mush Match"
export package=MushMatch
export version=1.3.4
export build=20231202
export debug=1
export build=20231203
export debug=0
export makeint=1
export incl_readme=1

Expand Down

0 comments on commit 87f793f

Please sign in to comment.