diff --git a/Classes/MushMatchMutator.uc b/Classes/MushMatchMutator.uc index 6f6a838..3769e77 100644 --- a/Classes/MushMatchMutator.uc +++ b/Classes/MushMatchMutator.uc @@ -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; @@ -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; diff --git a/buildconfig.sh b/buildconfig.sh index a38650c..a1c5585 100644 --- a/buildconfig.sh +++ b/buildconfig.sh @@ -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